Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -28,6 +28,7 @@
28 28 {
29 29 }
30 30
31 + @Override
31 32 protected Element getStyleElement()
32 33 {
33 34 return getHelper().getStyleElement();
  @@ -58,6 +59,7 @@
58 59 return true;
59 60 }
60 61
62 + @Override
61 63 public ISizeableDimensionHelper getWidthHelper()
62 64 {
63 65 return getHelper().getWidthHelper();
  @@ -79,11 +81,13 @@
79 81 return true;
80 82 }
81 83
84 + @Override
82 85 public ISizeableDimensionHelper getHeightHelper()
83 86 {
84 87 return getHelper().getHeightHelper();
85 88 }
86 89
90 + @Override
87 91 public void relayout()
88 92 {
89 93 Widget parent = getParent();
  @@ -127,6 +131,7 @@
127 131 {
128 132 mRelayoutDelayedProcess = new EscalatingProcess( new DelayedProcess()
129 133 {
134 + @Override
130 135 public boolean process()
131 136 {
132 137 return relayoutFromHereDown();
  @@ -171,6 +176,7 @@
171 176 *
172 177 * @param width the object's new width, in CSS units (e.g. "10px", "1em")
173 178 */
179 + @Override
174 180 public void setWidth( String width )
175 181 {
176 182 setDimensionFromWidget( getWidthHelper(), width );
  @@ -182,6 +188,7 @@
182 188 *
183 189 * @param height the object's new height, in CSS units (e.g. "10px", "1em")
184 190 */
191 + @Override
185 192 public void setHeight( String height )
186 193 {
187 194 setDimensionFromWidget( getHeightHelper(), height );
  @@ -217,6 +224,7 @@
217 224 * @see #addStyleName(String)
218 225 * @see #removeStyleName(String)
219 226 */
227 + @Override
220 228 public final void setStyleName( String style )
221 229 {
222 230 throw new UnsupportedOperationException( "Must use addStyleName" );
  @@ -253,6 +261,7 @@
253 261 // DOM.sinkEvents( element, DOM.getEventsSunk( element ) & (~eventBitsToRemove) );
254 262 // }
255 263
264 + @Override
256 265 public String toString()
257 266 {
258 267 String name = UtilsCommon.justClassName( getClass().getName() );