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.Tag;
24 import org.apache.myfaces.tobago.apt.annotation.UIComponentTag;
25 import org.apache.myfaces.tobago.component.RendererTypes;
26 import org.apache.myfaces.tobago.internal.taglib.declaration.HasIdBindingAndRendered;
27 import org.apache.myfaces.tobago.internal.taglib.declaration.HasValue;
28 import org.apache.myfaces.tobago.internal.taglib.declaration.HasVar;
29
30 import javax.faces.component.UIInput;
31
32
33
34
35
36
37
38 @Deprecated
39 @Tag(name = "treeData")
40 @BodyContentDescription(anyTagOf = "<tc:treeNode>")
41 @UIComponentTag(
42 uiComponent = "org.apache.myfaces.tobago.component.UITreeData",
43 uiComponentBaseClass = "org.apache.myfaces.tobago.internal.component.AbstractUITreeData",
44 uiComponentFacesClass = "javax.faces.component.UIInput",
45 componentFamily = UIInput.COMPONENT_FAMILY,
46 rendererType = RendererTypes.TREE_DATA,
47 allowedChildComponenents = "org.apache.myfaces.tobago.TreeNode")
48 public interface TreeDataTagDeclaration extends
49 HasIdBindingAndRendered, HasValue, HasVar {
50 }