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.view.facelets.tag.ui;
20  
21  import java.beans.Introspector;
22  import java.beans.PropertyDescriptor;
23  import java.util.HashSet;
24  import java.util.Map;
25  import java.util.Set;
26  
27  import javax.faces.component.UIComponent;
28  import javax.faces.view.facelets.ComponentConfig;
29  import javax.faces.view.facelets.ComponentHandler;
30  import javax.faces.view.facelets.FaceletContext;
31  import javax.faces.view.facelets.MetaRuleset;
32  import javax.faces.view.facelets.Metadata;
33  import javax.faces.view.facelets.TagAttribute;
34  
35  /**
36   * Facelet alternative to c:forEach or h:dataTable
37   *
38   */
39  public class RepeatHandler extends ComponentHandler
40  {
41      
42      public RepeatHandler(ComponentConfig config)
43      {
44          super(config);
45      }
46  
47      @Override
48      protected MetaRuleset createMetaRuleset(Class type)
49      {
50          MetaRuleset meta = super.createMetaRuleset(type);
51  
52          if (!UILibrary.NAMESPACE.equals(this.tag.getNamespace()) &&
53              !UILibrary.ALIAS_NAMESPACE.equals(this.tag.getNamespace()))
54          {
55              meta.add(new TagMetaData(type));
56          }
57  
58          meta.alias("class", "styleClass");
59  
60          return meta;
61      }
62  
63      private class TagMetaData extends Metadata
64      {
65          private final String[] _attrs;
66  
67          public TagMetaData(Class<?> type)
68          {
69              Set<String> names = new HashSet<String>();
70              for (TagAttribute attribute : tag.getAttributes().getAll())
71              {
72                  if ("class".equals(attribute.getLocalName()))
73                  {
74                      names.add("styleClass");
75                  }
76                  else
77                  {
78                      names.add(attribute.getLocalName());
79                  }
80              }
81              
82              try
83              {
84                  for (PropertyDescriptor descriptor : Introspector.getBeanInfo(type).getPropertyDescriptors())
85                  {
86                      if (descriptor.getWriteMethod() != null)
87                      {
88                          names.remove(descriptor.getName());
89                      }
90                  }
91              }
92              catch (Exception e)
93              {
94                  // do nothing
95              }
96              
97              _attrs = names.toArray(new String[names.size()]);
98          }
99  
100         @Override
101         public void applyMetadata(FaceletContext ctx, Object instance)
102         {
103             UIComponent component = (UIComponent) instance;
104             Map<String, Object> attrs = component.getAttributes();
105             attrs.put("alias.element", tag.getQName());
106             if (_attrs.length > 0)
107             {
108                 attrs.put("alias.attributes", _attrs);
109             }
110         }
111     }
112 }