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.Facet;
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.Facets;
29 import org.apache.myfaces.tobago.component.RendererTypes;
30 import org.apache.myfaces.tobago.internal.taglib.declaration.HasBinding;
31 import org.apache.myfaces.tobago.internal.taglib.declaration.HasConverter;
32 import org.apache.myfaces.tobago.internal.taglib.declaration.HasId;
33 import org.apache.myfaces.tobago.internal.taglib.declaration.HasLabelAndAccessKey;
34 import org.apache.myfaces.tobago.internal.taglib.declaration.HasTip;
35 import org.apache.myfaces.tobago.internal.taglib.declaration.IsDeprecatedInline;
36 import org.apache.myfaces.tobago.internal.taglib.declaration.IsDisabled;
37 import org.apache.myfaces.tobago.internal.taglib.declaration.IsReadonly;
38 import org.apache.myfaces.tobago.internal.taglib.declaration.IsRendered;
39
40 import javax.faces.component.UISelectOne;
41
42
43
44
45 @Tag(name = "selectOneChoice")
46 @BodyContentDescription(anyTagOf = "(<f:selectItems>|<f:selectItem>|<tc:selectItem>)+ <f:facet>* ")
47 @UIComponentTag(
48 uiComponent = "org.apache.myfaces.tobago.component.UISelectOneChoice",
49 uiComponentBaseClass = "org.apache.myfaces.tobago.internal.component.AbstractUISelectOneChoice",
50 uiComponentFacesClass = "javax.faces.component.UISelectOne",
51 componentFamily = UISelectOne.COMPONENT_FAMILY,
52 rendererType = RendererTypes.SELECT_ONE_CHOICE,
53 allowedChildComponenents = {
54 "javax.faces.SelectItem",
55 "javax.faces.SelectItems"
56 },
57 facets = {
58 @Facet(name= Facets.CLICK,
59 description =
60 "This facet can contain a UICommand that is invoked in case of a click event from the component",
61 allowedChildComponenents = "org.apache.myfaces.tobago.Command"),
62 @Facet(name=Facets.CHANGE,
63 description =
64 "This facet can contain a UICommand that is invoked in case of a change event from the component",
65 allowedChildComponenents = "org.apache.myfaces.tobago.Command")
66 })
67 public interface SelectOneChoiceTagDeclaration
68 extends SelectOneTagDeclaration, HasId, IsDisabled,
69 IsReadonly, IsDeprecatedInline, HasLabelAndAccessKey,
70 IsRendered, HasConverter, HasBinding, HasTip {
71
72
73
74
75
76
77 @TagAttribute()
78 @UIComponentTagAttribute(type = "boolean", defaultValue = "false")
79 void setRequired(String required);
80 }