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.UIComponentTag;
23 import org.apache.myfaces.tobago.internal.taglib.declaration.AbstractCommandTagDeclaration;
24 import org.apache.myfaces.tobago.internal.taglib.declaration.HasIdBindingAndRendered;
25 import org.apache.myfaces.tobago.internal.taglib.declaration.HasValue;
26
27 @UIComponentTag(
28 uiComponent = "org.apache.myfaces.tobago.component.UISelectBooleanCommand",
29 uiComponentBaseClass = "org.apache.myfaces.tobago.internal.component.AbstractUICommandBase",
30 uiComponentFacesClass = "javax.faces.component.UICommand")
31 public interface SelectBooleanCommandTagDeclaration
32 extends AbstractCommandTagDeclaration, HasIdBindingAndRendered, HasValue {
33 }