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.TagAttribute;
21 import org.apache.myfaces.tobago.apt.annotation.UIComponentTagAttribute;
22
23
24
25
26
27
28
29
30
31 @Deprecated
32 public interface IsGridLayoutComponentWithDeprecatedDimension {
33
34
35
36
37 @UIComponentTagAttribute(type = "java.lang.Integer", defaultValue = "1")
38 void setColumnSpan(String columnSpan);
39
40
41
42
43 @UIComponentTagAttribute(type = "java.lang.Integer", defaultValue = "1")
44 void setRowSpan(String rowSpan);
45
46
47
48
49
50
51 @TagAttribute
52 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
53 defaultCode = "((org.apache.myfaces.tobago.renderkit.LayoutComponentRenderer)\n"
54 + " getRenderer(getFacesContext())).getWidth(getFacesContext(), this)")
55 void setWidth(String width);
56
57
58
59
60
61
62 @TagAttribute
63 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
64 defaultCode = "((org.apache.myfaces.tobago.renderkit.LayoutComponentRenderer)\n"
65 + " getRenderer(getFacesContext())).getHeight(getFacesContext(), this)")
66 void setHeight(String height);
67
68
69
70
71 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
72 defaultCode = "((org.apache.myfaces.tobago.renderkit.LayoutComponentRenderer)\n"
73 + " getRenderer(getFacesContext())).getMinimumWidth(getFacesContext(), this)")
74 void setMinimumWidth(String minimumWidth);
75
76
77
78
79 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
80 defaultCode = "((org.apache.myfaces.tobago.renderkit.LayoutComponentRenderer)\n"
81 + "getRenderer(getFacesContext())).getMinimumHeight(getFacesContext(), this)")
82 void setMinimumHeight(String minimumHeight);
83
84
85
86
87 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
88 defaultCode = "((org.apache.myfaces.tobago.renderkit.LayoutComponentRenderer)\n"
89 + "getRenderer(getFacesContext())).getPreferredWidth(getFacesContext(), this)")
90 void setPreferredWidth(String preferredWidth);
91
92
93
94
95 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
96 defaultCode = "((org.apache.myfaces.tobago.renderkit.LayoutComponentRenderer)\n"
97 + "getRenderer(getFacesContext())).getPreferredHeight(getFacesContext(), this)")
98 void setPreferredHeight(String preferredHeight);
99
100
101
102
103 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
104 defaultCode = "((org.apache.myfaces.tobago.renderkit.LayoutComponentRenderer)\n"
105 + "getRenderer(getFacesContext())).getMaximumWidth(getFacesContext(), this)")
106 void setMaximumWidth(String maximumWidth);
107
108
109
110
111 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
112 defaultCode = "((org.apache.myfaces.tobago.renderkit.LayoutComponentRenderer)\n"
113 + "getRenderer(getFacesContext())).getMaximumHeight(getFacesContext(), this)")
114 void setMaximumHeight(String maximumHeight);
115
116
117
118
119
120
121 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
122 void setLeft(String left);
123
124
125
126
127
128
129 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
130 void setTop(String top);
131
132
133
134
135
136
137 @UIComponentTagAttribute(type = "java.lang.Integer")
138 void setHorizontalIndex(String horizontalIndex);
139
140
141
142
143
144
145 @UIComponentTagAttribute(type = "java.lang.Integer")
146 void setVerticalIndex(String verticalIndex);
147
148
149
150
151
152
153 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Display")
154 void setDisplay(String display);
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, \"leftOffset\")")
165 void setLeftOffset(String leftOffset);
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, \"rightOffset\")")
176 void setRightOffset(String rightOffset);
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, \"topOffset\")")
187 void setTopOffset(String topOffset);
188
189
190
191
192
193
194
195 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
196 defaultCode = "org.apache.myfaces.tobago.config.ThemeConfig.getMeasure("
197 + "getFacesContext(), this, \"bottomOffset\")")
198 void setBottomOffset(String bottomOffset);
199
200 }