View Javadoc

1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.myfaces.config.impl.digester.elements;
20  
21  import java.io.Serializable;
22  import java.util.ArrayList;
23  import java.util.List;
24  import java.util.Iterator;
25  
26  
27  /**
28   * @author <a href="mailto:oliver@rossmueller.com">Oliver Rossmueller</a>
29   */
30  public class ListEntriesImpl extends org.apache.myfaces.config.element.ListEntries implements Serializable
31  {
32  
33      private String valueClass;
34      private List<org.apache.myfaces.config.element.ListEntry> entries
35              = new ArrayList<org.apache.myfaces.config.element.ListEntry>();
36  
37  
38      public String getValueClass()
39      {
40          return valueClass;
41      }
42  
43  
44      public void setValueClass(String valueClass)
45      {
46          this.valueClass = valueClass;
47      }
48  
49  
50  
51      public void addEntry(org.apache.myfaces.config.element.ListEntry entry)
52      {
53          entries.add(entry);
54      }
55  
56  
57      public Iterator<org.apache.myfaces.config.element.ListEntry> getListEntries()
58      {
59          return entries.iterator();
60      }
61  
62  
63      public static class Entry extends org.apache.myfaces.config.element.ListEntry
64      {
65          private boolean nullValue;
66          private String value;
67  
68  
69          public boolean isNullValue()
70          {
71              return nullValue;
72          }
73  
74  
75          public void setNullValue()
76          {
77              this.nullValue = true;
78          }
79  
80  
81          public String getValue()
82          {
83              return value;
84          }
85  
86  
87          public void setValue(String value)
88          {
89              this.value = value;
90          }
91      }
92  }