Subversion Repository Public Repository

litesoft

Diff Revisions 2 vs 23 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/nonpublic/GwtRenderableRect.java

Diff revisions: vs.
  @@ -120,56 +120,66 @@
120 120
121 121 public static class NullGwtRenderableRect extends NullRenderableRect implements GwtRenderableRect
122 122 {
123 -
123 + @Override
124 124 public void onAttach()
125 125 {
126 126 throw whatThe( "onAttach" );
127 127 }
128 128
129 + @Override
129 130 public void onDetach()
130 131 {
131 132 throw whatThe( "onDetach" );
132 133 }
133 134
135 + @Override
134 136 public void setVisible( boolean pVisible )
135 137 {
136 138 throw whatThe( "setVisible", Boolean.toString( pVisible ) );
137 139 }
138 140
141 + @Override
139 142 public int getOffsetWidth()
140 143 {
141 144 return 0;
142 145 }
143 146
147 + @Override
144 148 public void setWidth( String pWidth )
145 149 {
146 150 throw whatThe( "setWidth", pWidth );
147 151 }
148 152
153 + @Override
149 154 public void LLsetWidgetWidth( int pWidth )
150 155 {
151 156 throw whatThe( "LLsetWidgetWidth", pWidth );
152 157 }
153 158
159 + @Override
154 160 public void clearWidth()
155 161 {
156 162 }
157 163
164 + @Override
158 165 public int getOffsetHeight()
159 166 {
160 167 return 0;
161 168 }
162 169
170 + @Override
163 171 public void setHeight( String pHeight )
164 172 {
165 173 throw whatThe( "setHeight", pHeight );
166 174 }
167 175
176 + @Override
168 177 public void LLsetWidgetHeight( int pHeight )
169 178 {
170 179 throw whatThe( "LLsetWidgetHeight", pHeight );
171 180 }
172 181
182 + @Override
173 183 public void clearHeight()
174 184 {
175 185 }