Subversion Repository Public Repository

litesoft

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

Diff revisions: vs.
  @@ -7,6 +7,7 @@
7 7 {
8 8 private Widget mWidget;
9 9
10 + @Override
10 11 public Element getElement()
11 12 {
12 13 if ( mWidget == null )
  @@ -16,6 +17,7 @@
16 17 return super.getElement();
17 18 }
18 19
20 + @Override
19 21 public Widget[] getCompositedWidgets()
20 22 {
21 23 return new Widget[]{mWidget};
  @@ -48,6 +50,7 @@
48 50 initialize();
49 51 }
50 52
53 + @Override
51 54 protected void onAttach()
52 55 {
53 56 super.onAttach();
  @@ -56,6 +59,7 @@
56 59 BackDoorToWidget.onAttach( mWidget ); // Call onAttach() on behalf of the contained widget.
57 60 }
58 61
62 + @Override
59 63 protected void onDetach()
60 64 {
61 65 super.onDetach();