Subversion Repository Public Repository

litesoft

Diff Revisions 150 vs 151 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/datatables/TemporaryResizableWidgetAdaptor.java

Diff revisions: vs.
  @@ -7,25 +7,25 @@
7 7
8 8 public abstract class TemporaryResizableWidgetAdaptor extends ResizableWidgetAdaptor
9 9 {
10 - public TemporaryResizableWidgetAdaptor(Widget pAttachWidget, Element pElement)
10 + public TemporaryResizableWidgetAdaptor( Widget pAttachWidget, Element pElement )
11 11 {
12 - super(pAttachWidget, pElement);
12 + super( pAttachWidget, pElement );
13 13 }
14 14
15 15 @Override
16 - public void onResize(int pWidth, int pHeight)
16 + public void onResize( int pWidth, int pHeight )
17 17 {
18 18 // defer removal to avoid CME
19 - DeferredCommand.addCommand(new Command()
19 + DeferredCommand.addCommand( new Command()
20 20 {
21 21 @Override
22 22 public void execute()
23 23 {
24 - ResizableWidgetCollection.get().remove(TemporaryResizableWidgetAdaptor.this);
24 + ResizableWidgetCollection.get().remove( TemporaryResizableWidgetAdaptor.this );
25 25 }
26 - });
27 - onSizeInitialized(pWidth, pHeight);
26 + } );
27 + onSizeInitialized( pWidth, pHeight );
28 28 }
29 29
30 - protected abstract void onSizeInitialized(int pWidth, int pHeight);
30 + protected abstract void onSizeInitialized( int pWidth, int pHeight );
31 31 }