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.IsGridLayoutComponent;
32
33 import javax.faces.component.UIOutput;
34
35
36
37
38 @Tag(name = "treeLabel")
39 @UIComponentTag(
40 uiComponent = "org.apache.myfaces.tobago.component.UITreeLabel",
41 uiComponentBaseClass = "org.apache.myfaces.tobago.internal.component.AbstractUILabel",
42 uiComponentFacesClass = "javax.faces.component.UIOutput",
43 componentFamily = UIOutput.COMPONENT_FAMILY,
44 rendererType = RendererTypes.TREE_LABEL,
45 allowedChildComponenents = "NONE"
46 )
47 public interface TreeLabelTagDeclaration
48 extends HasIdBindingAndRendered, HasTip, HasMarkup, HasCurrentMarkup, IsGridLayoutComponent {
49
50
51
52
53 @TagAttribute
54 @UIComponentTagAttribute()
55 void setValue(String value);
56 }