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 javax.faces.component;
20  
21  import java.util.Iterator;
22  import java.util.List;
23  import java.util.Map;
24  import java.util.NoSuchElementException;
25  
26  /**
27   * @author Manfred Geiler (latest modification by $Author: bommel $)
28   * @version $Revision: 1187700 $ $Date: 2011-10-22 07:19:37 -0500 (Sat, 22 Oct 2011) $
29   */
30  class _FacetsAndChildrenIterator implements Iterator<UIComponent>
31  {
32      private Iterator<UIComponent> _facetsIterator;
33      private Iterator<UIComponent> _childrenIterator;
34  
35      _FacetsAndChildrenIterator(Map<String, UIComponent> facetMap, List<UIComponent> childrenList)
36      {
37          _facetsIterator = facetMap != null ? facetMap.values().iterator() : null;
38          _childrenIterator = childrenList != null ? childrenList.iterator() : null;
39      }
40  
41      public boolean hasNext()
42      {
43          boolean hasNext = (_facetsIterator != null && _facetsIterator.hasNext())
44                  || (_childrenIterator != null && _childrenIterator.hasNext());
45          if (!hasNext)
46          {
47              _facetsIterator = null;
48              _childrenIterator = null;
49          }
50          
51          return hasNext;
52      }
53  
54      public UIComponent next()
55      {
56          if (_facetsIterator != null && _facetsIterator.hasNext())
57          {
58              return _facetsIterator.next();
59          }
60          else if (_childrenIterator != null && _childrenIterator.hasNext())
61          {
62              return _childrenIterator.next();
63          }
64          else
65          {
66              throw new NoSuchElementException();
67          }
68      }
69  
70      public void remove()
71      {
72          throw new UnsupportedOperationException(this.getClass().getName() + " UnsupportedOperationException");
73      }
74  }