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.Tag;
24 import org.apache.myfaces.tobago.apt.annotation.TagAttribute;
25 import org.apache.myfaces.tobago.apt.annotation.UIComponentTag;
26 import org.apache.myfaces.tobago.apt.annotation.UIComponentTagAttribute;
27 import org.apache.myfaces.tobago.component.RendererTypes;
28 import org.apache.myfaces.tobago.internal.taglib.declaration.HasConverter;
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.HasTip;
33 import org.apache.myfaces.tobago.internal.taglib.declaration.HasValue;
34 import org.apache.myfaces.tobago.internal.taglib.declaration.IsDeprecatedInline;
35 import org.apache.myfaces.tobago.internal.taglib.declaration.IsGridLayoutComponent;
36
37 import javax.faces.component.UIOutput;
38
39
40
41
42 @Tag(name = "out")
43 @BodyContentDescription(anyTagOf = "f:converter|f:convertNumber|f:convertDateTime|...")
44 @UIComponentTag(
45 uiComponent = "org.apache.myfaces.tobago.component.UIOut",
46 uiComponentBaseClass = "org.apache.myfaces.tobago.internal.component.AbstractUIOut",
47 uiComponentFacesClass = "javax.faces.component.UIOutput",
48 componentFamily = UIOutput.COMPONENT_FAMILY,
49 rendererType = RendererTypes.OUT,
50 allowedChildComponenents = "NONE")
51
52 public interface OutTagDeclaration
53 extends HasIdBindingAndRendered, HasConverter, IsDeprecatedInline, HasTip, HasValue, IsGridLayoutComponent,
54 HasMarkup, HasCurrentMarkup {
55
56
57
58
59
60 @TagAttribute
61 @UIComponentTagAttribute(type = "boolean", defaultValue = "true")
62 void setEscape(String escape);
63
64
65
66
67
68
69
70 @UIComponentTagAttribute(type = "boolean", defaultValue = "true")
71 void setCreateSpan(String createSpan);
72 }