Subversion Repository Public Repository

litesoft

Diff Revisions 947 vs 948 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/nonpublic/ISizeableWidget.java

Diff revisions: vs.
  @@ -6,34 +6,27 @@
6 6 /**
7 7 * The class implementing this interface MUST extend GWT's Widget
8 8 */
9 - public interface ISizeableWidget extends SizeManaged
10 - {
9 + public interface ISizeableWidget extends SizeManaged {
11 10 ISizeableDimensionHelper getWidthHelper();
12 11
13 12 ISizeableDimensionHelper getHeightHelper();
14 13
15 - public static final ISizeableWidget NULL = new ISizeableWidget()
16 - {
17 - public void setWidth( String width )
18 - {
14 + public static final ISizeableWidget NULL = new ISizeableWidget() {
15 + public void setWidth( String width ) {
19 16 }
20 17
21 - public void setHeight( String height )
22 - {
18 + public void setHeight( String height ) {
23 19 }
24 20
25 - public ISizeableDimensionHelper getWidthHelper()
26 - {
21 + public ISizeableDimensionHelper getWidthHelper() {
27 22 return ISizeableDimensionHelper.NULL;
28 23 }
29 24
30 - public ISizeableDimensionHelper getHeightHelper()
31 - {
25 + public ISizeableDimensionHelper getHeightHelper() {
32 26 return ISizeableDimensionHelper.NULL;
33 27 }
34 28
35 - public void relayout()
36 - {
29 + public void relayout() {
37 30 }
38 31 };
39 32 }