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.declaration;
21
22 import org.apache.myfaces.tobago.apt.annotation.UIComponentTagAttribute;
23
24
25
26
27 @Deprecated
28 public interface IsGridLayoutComponentBase {
29
30
31
32
33
34
35 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
36 defaultCode = "getWidth()")
37 void setCurrentWidth(String currentWidth);
38
39
40
41
42
43
44 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
45 defaultCode = "getHeight()")
46 void setCurrentHeight(String currentHeight);
47
48
49
50
51 @UIComponentTagAttribute(type = "java.lang.Integer", defaultValue = "1")
52 void setColumnSpan(String columnSpan);
53
54
55
56
57 @UIComponentTagAttribute(type = "java.lang.Integer", defaultValue = "1")
58 void setRowSpan(String rowSpan);
59
60
61
62
63 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
64 defaultCode = "((LayoutComponentRenderer)"
65 + "getRenderer(getFacesContext())).getMinimumWidth(getFacesContext(), this)")
66 void setMinimumWidth(String minimumWidth);
67
68
69
70
71 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
72 defaultCode = "((LayoutComponentRenderer) "
73 + "getRenderer(getFacesContext())).getMinimumHeight(getFacesContext(), this)")
74 void setMinimumHeight(String minimumHeight);
75
76
77
78
79 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
80 defaultCode = "((LayoutComponentRenderer) "
81 + "getRenderer(getFacesContext())).getPreferredWidth(getFacesContext(), this)")
82 void setPreferredWidth(String preferredWidth);
83
84
85
86
87 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
88 defaultCode = "((LayoutComponentRenderer) "
89 + "getRenderer(getFacesContext())).getPreferredHeight(getFacesContext(), this)")
90 void setPreferredHeight(String preferredHeight);
91
92
93
94
95 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
96 defaultCode = "((LayoutComponentRenderer) "
97 + "getRenderer(getFacesContext())).getMaximumWidth(getFacesContext(), this)")
98 void setMaximumWidth(String maximumWidth);
99
100
101
102
103 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
104 defaultCode = "((LayoutComponentRenderer) "
105 + "getRenderer(getFacesContext())).getMaximumHeight(getFacesContext(), this)")
106 void setMaximumHeight(String maximumHeight);
107
108
109
110
111 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
112 defaultCode = "((LayoutComponentRenderer) "
113 + "getRenderer(getFacesContext())).getMarginLeft(getFacesContext(), this)")
114 void setMarginLeft(String marginLeft);
115
116
117
118
119 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
120 defaultCode = "((LayoutComponentRenderer) "
121 + "getRenderer(getFacesContext())).getMarginRight(getFacesContext(), this)")
122 void setMarginRight(String marginRight);
123
124
125
126
127 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
128 defaultCode = "((LayoutComponentRenderer) "
129 + "getRenderer(getFacesContext())).getMarginTop(getFacesContext(), this)")
130 void setMarginTop(String marginTop);
131
132
133
134
135 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure",
136 defaultCode = "((LayoutComponentRenderer) "
137 + "getRenderer(getFacesContext())).getMarginBottom(getFacesContext(), this)")
138 void setMarginBottom(String marginBottom);
139
140
141
142
143
144
145 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
146 void setLeft(String left);
147
148
149
150
151
152
153 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Measure")
154 void setTop(String top);
155
156
157
158
159
160
161 @UIComponentTagAttribute(type = "java.lang.Integer")
162 void setHorizontalIndex(String horizontalIndex);
163
164
165
166
167
168
169 @UIComponentTagAttribute(type = "java.lang.Integer")
170 void setVerticalIndex(String verticalIndex);
171
172
173
174
175
176
177 @UIComponentTagAttribute(type = "org.apache.myfaces.tobago.layout.Display")
178 void setDisplay(String display);
179
180 }