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