1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package org.apache.myfaces.tobago.facelets;
21
22 import org.apache.myfaces.tobago.component.Attributes;
23 import org.apache.myfaces.tobago.component.SupportsRenderedPartially;
24 import org.apache.myfaces.tobago.util.ComponentUtils;
25
26 import javax.el.ValueExpression;
27 import javax.faces.component.UIComponent;
28 import javax.faces.view.facelets.FaceletContext;
29 import javax.faces.view.facelets.MetaRule;
30 import javax.faces.view.facelets.Metadata;
31 import javax.faces.view.facelets.MetadataTarget;
32 import javax.faces.view.facelets.TagAttribute;
33
34 public class SupportsRenderedPartiallyRule extends MetaRule {
35
36 public static final SupportsRenderedPartiallyRule INSTANCE = new SupportsRenderedPartiallyRule();
37
38 public Metadata applyRule(String name, TagAttribute attribute, MetadataTarget metadataTarget) {
39 if (metadataTarget.isTargetInstanceOf(SupportsRenderedPartially.class)) {
40 if (Attributes.RENDERED_PARTIALLY.equals(name)) {
41 return new SupportsRenderedPartiallyMapper(attribute);
42 }
43 }
44 return null;
45 }
46
47 static final class SupportsRenderedPartiallyMapper extends Metadata {
48
49 private final TagAttribute attribute;
50
51 public SupportsRenderedPartiallyMapper(TagAttribute attribute) {
52 this.attribute = attribute;
53 }
54
55 public void applyMetadata(FaceletContext ctx, Object instance) {
56 if (attribute.isLiteral()) {
57 String[] components = ComponentUtils.splitList(attribute.getValue());
58 ((SupportsRenderedPartially) instance).setRenderedPartially(components);
59 } else {
60 ValueExpression expression = attribute.getValueExpression(ctx, Object.class);
61 ((UIComponent) instance).setValueExpression(Attributes.RENDERED_PARTIALLY, expression);
62 }
63 }
64 }
65 }