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.BodyContentDescription;
23 import org.apache.myfaces.tobago.apt.annotation.DynamicExpression;
24 import org.apache.myfaces.tobago.apt.annotation.Tag;
25 import org.apache.myfaces.tobago.apt.annotation.TagAttribute;
26 import org.apache.myfaces.tobago.apt.annotation.UIComponentTag;
27 import org.apache.myfaces.tobago.apt.annotation.UIComponentTagAttribute;
28 import org.apache.myfaces.tobago.component.RendererTypes;
29 import org.apache.myfaces.tobago.internal.taglib.declaration.HasCurrentMarkup;
30 import org.apache.myfaces.tobago.internal.taglib.declaration.HasIdBindingAndRendered;
31 import org.apache.myfaces.tobago.internal.taglib.declaration.HasMarkup;
32 import org.apache.myfaces.tobago.internal.taglib.declaration.HasValue;
33 import org.apache.myfaces.tobago.internal.taglib.declaration.HasVar;
34 import org.apache.myfaces.tobago.internal.taglib.declaration.IsGridLayoutComponent;
35 import org.apache.myfaces.tobago.internal.taglib.declaration.IsRequired;
36
37 import javax.faces.component.UIData;
38
39
40
41
42 @Tag(name = "treeListbox")
43 @BodyContentDescription(anyTagOf = "<tc:treeNode>|<tc:treeData>")
44 @UIComponentTag(
45 uiComponent = "org.apache.myfaces.tobago.component.UITreeListbox",
46 uiComponentBaseClass = "org.apache.myfaces.tobago.internal.component.AbstractUITreeListbox",
47 uiComponentFacesClass = "javax.faces.component.UIData",
48 componentFamily = UIData.COMPONENT_FAMILY,
49 rendererType = RendererTypes.TREE_LISTBOX,
50 allowedChildComponenents = {
51 "org.apache.myfaces.tobago.TreeNode",
52 "org.apache.myfaces.tobago.TreeData"
53 })
54 public interface TreeListboxTagDeclaration
55 extends HasIdBindingAndRendered, HasValue, HasVar, IsGridLayoutComponent, HasMarkup, HasCurrentMarkup,
56 IsRequired {
57
58
59
60
61
62
63
64
65
66
67
68
69 @TagAttribute
70 @UIComponentTagAttribute(
71 defaultValue = "single",
72 allowedValues = {"single", "multiLeafOnly", "singleLeafOnly"})
73 void setSelectable(String selectable);
74
75
76
77
78
79 @TagAttribute
80 @UIComponentTagAttribute(
81 type = "org.apache.myfaces.tobago.model.TreeState",
82 expression = DynamicExpression.VALUE_EXPRESSION_REQUIRED,
83 generate = false)
84 void setState(String state);
85 }