1 package org.apache.myfaces.tobago.taglib.decl;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 import org.apache.myfaces.tobago.apt.annotation.UIComponentTagAttribute;
21
22 public interface IsGridLayoutComponent {
23
24
25
26
27 @UIComponentTagAttribute(type = "java.lang.Integer", defaultValue = "1")
28 void setColumnSpan(String columnSpan);
29
30
31
32
33 @UIComponentTagAttribute(type = "java.lang.Integer", defaultValue = "1")
34 void setRowSpan(String rowSpan);
35
36
37
38
39
40
41 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
42 defaultCode = "((org.apache.myfaces.tobago.renderkit.LayoutComponentRenderer)\n"
43 + " getRenderer(getFacesContext())).getWidth(getFacesContext(), this)")
44 void setWidth(String width);
45
46
47
48
49
50
51 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
52 defaultCode = "((org.apache.myfaces.tobago.renderkit.LayoutComponentRenderer)\n"
53 + " getRenderer(getFacesContext())).getHeight(getFacesContext(), this)")
54 void setHeight(String height);
55
56
57
58
59 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
60 defaultCode = "((org.apache.myfaces.tobago.renderkit.LayoutComponentRenderer)\n"
61 + " getRenderer(getFacesContext())).getMinimumWidth(getFacesContext(), this)")
62 void setMinimumWidth(String minimumWidth);
63
64
65
66
67 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
68 defaultCode = "((org.apache.myfaces.tobago.renderkit.LayoutComponentRenderer)\n"
69 + "getRenderer(getFacesContext())).getMinimumHeight(getFacesContext(), this)")
70 void setMinimumHeight(String minimumHeight);
71
72
73
74
75 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
76 defaultCode = "((org.apache.myfaces.tobago.renderkit.LayoutComponentRenderer)\n"
77 + "getRenderer(getFacesContext())).getPreferredWidth(getFacesContext(), this)")
78 void setPreferredWidth(String preferredWidth);
79
80
81
82
83 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
84 defaultCode = "((org.apache.myfaces.tobago.renderkit.LayoutComponentRenderer)\n"
85 + "getRenderer(getFacesContext())).getPreferredHeight(getFacesContext(), this)")
86 void setPreferredHeight(String preferredHeight);
87
88
89
90
91 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
92 defaultCode = "((org.apache.myfaces.tobago.renderkit.LayoutComponentRenderer)\n"
93 + "getRenderer(getFacesContext())).getMaximumWidth(getFacesContext(), this)")
94 void setMaximumWidth(String maximumWidth);
95
96
97
98
99 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
100 defaultCode = "((org.apache.myfaces.tobago.renderkit.LayoutComponentRenderer)\n"
101 + "getRenderer(getFacesContext())).getMaximumHeight(getFacesContext(), this)")
102 void setMaximumHeight(String maximumHeight);
103
104
105
106
107
108
109 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
110 void setLeft(String left);
111
112
113
114
115
116
117 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
118 void setTop(String top);
119
120
121
122
123
124
125 @UIComponentTagAttribute(type = "java.lang.Integer")
126 void setHorizontalIndex(String horizontalIndex);
127
128
129
130
131
132
133 @UIComponentTagAttribute(type = "java.lang.Integer")
134 void setVerticalIndex(String verticalIndex);
135
136
137
138
139
140
141 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Display")
142 void setDisplay(String display);
143
144
145
146
147
148
149
150 @UIComponentTagAttribute(
151 type = "org.apache.myfaces.tobago.layout.Measure",
152 defaultCode = "org.apache.myfaces.tobago.config.ThemeConfig.getMeasure("
153 + "getFacesContext(), this, \"leftOffset\")")
154 void setLeftOffset(String leftOffset);
155
156
157
158
159
160
161
162 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
163 defaultCode = "org.apache.myfaces.tobago.config.ThemeConfig.getMeasure("
164 + "getFacesContext(), this, \"rightOffset\")")
165 void setRightOffset(String rightOffset);
166
167
168
169
170
171
172
173 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
174 defaultCode = "org.apache.myfaces.tobago.config.ThemeConfig.getMeasure("
175 + "getFacesContext(), this, \"topOffset\")")
176 void setTopOffset(String topOffset);
177
178
179
180
181
182
183
184 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
185 defaultCode = "org.apache.myfaces.tobago.config.ThemeConfig.getMeasure("
186 + "getFacesContext(), this, \"bottomOffset\")")
187 void setBottomOffset(String bottomOffset);
188
189 }