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.internal.taglib.component;
21
22 import org.apache.myfaces.tobago.apt.annotation.Tag;
23 import org.apache.myfaces.tobago.apt.annotation.TagAttribute;
24 import org.apache.myfaces.tobago.apt.annotation.UIComponentTag;
25 import org.apache.myfaces.tobago.apt.annotation.UIComponentTagAttribute;
26 import org.apache.myfaces.tobago.component.RendererTypes;
27 import org.apache.myfaces.tobago.internal.taglib.declaration.HasCurrentMarkup;
28 import org.apache.myfaces.tobago.internal.taglib.declaration.HasIdBindingAndRendered;
29 import org.apache.myfaces.tobago.internal.taglib.declaration.HasMarkup;
30 import org.apache.myfaces.tobago.internal.taglib.declaration.HasTip;
31 import org.apache.myfaces.tobago.internal.taglib.declaration.IsDisabled;
32 import org.apache.myfaces.tobago.internal.taglib.declaration.IsGridLayoutComponent;
33
34 import javax.faces.component.UIGraphic;
35
36
37
38
39 @Tag(name = "treeIcon")
40 @UIComponentTag(
41 uiComponent = "org.apache.myfaces.tobago.component.UITreeIcon",
42 uiComponentBaseClass = "org.apache.myfaces.tobago.internal.component.AbstractUIImage",
43 uiComponentFacesClass = "javax.faces.component.UIGraphic",
44 componentFamily = UIGraphic.COMPONENT_FAMILY,
45 rendererType = RendererTypes.TREE_ICON,
46 allowedChildComponenents = "NONE")
47 public interface TreeIconTagDeclaration
48 extends HasIdBindingAndRendered, HasTip, IsDisabled, HasMarkup, HasCurrentMarkup, IsGridLayoutComponent {
49
50
51
52
53 @TagAttribute
54 @UIComponentTagAttribute
55 void setValue(String value);
56 }