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.BodyContent;
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.internal.taglib.declaration.HasBinding;
29 import org.apache.myfaces.tobago.internal.taglib.declaration.HasId;
30
31
32
33
34
35
36 @Tag(name = "selectItems", bodyContent = BodyContent.EMPTY)
37 @UIComponentTag(
38 uiComponent = "org.apache.myfaces.tobago.component.UISelectItems",
39 uiComponentBaseClass = "javax.faces.component.UISelectItems",
40 uiComponentFacesClass = "javax.faces.component.UISelectItems",
41 isComponentAlreadyDefined = false,
42 allowedChildComponenents = "NONE")
43 public interface SelectItemsTagDeclaration extends HasId, HasBinding {
44
45
46
47
48
49 @TagAttribute
50 @UIComponentTagAttribute(
51 type = "javax.faces.model.SelectItem[]",
52 expression = DynamicExpression.VALUE_EXPRESSION_REQUIRED)
53 void setValue(String value);
54
55 }