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
32 import javax.faces.component.UIGraphic;
33
34
35
36
37 @Tag(name = "treeIndent")
38 @UIComponentTag(
39 uiComponent = "org.apache.myfaces.tobago.component.UITreeIndent",
40 uiComponentBaseClass = "org.apache.myfaces.tobago.internal.component.AbstractUITreeIndent",
41 uiComponentFacesClass = "javax.faces.component.UIGraphic",
42 componentFamily = UIGraphic.COMPONENT_FAMILY,
43 rendererType = RendererTypes.TREE_INDENT,
44 allowedChildComponenents = "NONE")
45 public interface TreeIndentTagDeclaration
46 extends HasIdBindingAndRendered, HasTip, HasMarkup, HasCurrentMarkup {
47
48
49
50
51 @TagAttribute
52 @UIComponentTagAttribute(type = "boolean", defaultValue = "true")
53 void setShowJunctions(String showJunctions);
54 }