Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -5,13 +5,11 @@
5 5 import com.google.gwt.user.client.ui.*;
6 6 import com.google.gwt.widgetideas.client.*;
7 7
8 - public abstract class ResizableWidgetAdaptor implements ResizableWidget
9 - {
8 + public abstract class ResizableWidgetAdaptor implements ResizableWidget {
10 9 private final Widget mAttachWidget;
11 10 private final Element mElement;
12 11
13 - public ResizableWidgetAdaptor( Widget pAttachWidget, Element pElement )
14 - {
12 + public ResizableWidgetAdaptor( Widget pAttachWidget, Element pElement ) {
15 13 mAttachWidget = pAttachWidget;
16 14 mElement = pElement;
17 15 }
  @@ -23,14 +21,12 @@
23 21 public abstract void onResize( int pWidth, int pHeight );
24 22
25 23 @Override
26 - public boolean isAttached()
27 - {
24 + public boolean isAttached() {
28 25 return mAttachWidget.isAttached();
29 26 }
30 27
31 28 @Override
32 - public Element getElement()
33 - {
29 + public Element getElement() {
34 30 return mElement;
35 31 }
36 32 }