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.component.RendererTypes;
29 import org.apache.myfaces.tobago.internal.taglib.declaration.HasCurrentMarkup;
30 import org.apache.myfaces.tobago.internal.taglib.declaration.HasIdBindingAndRendered;
31 import org.apache.myfaces.tobago.internal.taglib.declaration.HasMarkup;
32 import org.apache.myfaces.tobago.internal.taglib.declaration.IsGridLayoutComponent;
33
34 import javax.faces.component.UIOutput;
35
36
37
38
39 @Tag(name = "calendar", bodyContent = BodyContent.EMPTY)
40 @UIComponentTag(
41 uiComponent = "org.apache.myfaces.tobago.component.UICalendar",
42 uiComponentBaseClass = "javax.faces.component.UIOutput",
43 uiComponentFacesClass = "javax.faces.component.UIOutput",
44 interfaces = "org.apache.myfaces.tobago.layout.LayoutComponent",
45 componentFamily = UIOutput.COMPONENT_FAMILY,
46 rendererType = RendererTypes.CALENDAR)
47 public interface CalendarTagDeclaration
48 extends HasIdBindingAndRendered, IsGridLayoutComponent, HasMarkup, HasCurrentMarkup {
49
50
51
52
53 @TagAttribute
54 @UIComponentTagAttribute(
55 type = {"java.util.Calendar", "java.util.Date"},
56 expression = DynamicExpression.VALUE_EXPRESSION_REQUIRED)
57 void setValue(String value);
58 }