Subversion Repository Public Repository

litesoft

Diff Revisions 949 vs 950 for /trunk/Java/GWT/Client/src/org/litesoft/GWT/client/widgets/SingleWidgetContainer.java

Diff revisions: vs.
  @@ -1,29 +1,29 @@
1 - // This Source Code is in the Public Domain per: http://unlicense.org
2 - package org.litesoft.GWT.client.widgets;
3 -
4 - import org.litesoft.GWT.client.*;
5 -
6 - import com.google.gwt.user.client.ui.*;
7 -
8 - public interface SingleWidgetContainer extends HasWidgets,
9 - SingleWidgetPanel {
10 - /**
11 - * Sets this Container's widget. Any existing child widget will be removed.
12 - *
13 - * @param pWidget
14 - */
15 - @Override
16 - public void setWidget( Widget pWidget );
17 -
18 - public Widget getWidget();
19 -
20 - void relayout();
21 -
22 - // From Widget
23 -
24 - /**
25 - * Removes this widget from its parent widget. If it has no parent, this
26 - * method does nothing.
27 - */
28 - public void removeFromParent();
29 - }
1 + // This Source Code is in the Public Domain per: http://unlicense.org
2 + package org.litesoft.GWT.client.widgets;
3 +
4 + import org.litesoft.GWT.client.*;
5 +
6 + import com.google.gwt.user.client.ui.*;
7 +
8 + public interface SingleWidgetContainer extends HasWidgets,
9 + SingleWidgetPanel {
10 + /**
11 + * Sets this Container's widget. Any existing child widget will be removed.
12 + *
13 + * @param pWidget
14 + */
15 + @Override
16 + public void setWidget( Widget pWidget );
17 +
18 + public Widget getWidget();
19 +
20 + void relayout();
21 +
22 + // From Widget
23 +
24 + /**
25 + * Removes this widget from its parent widget. If it has no parent, this
26 + * method does nothing.
27 + */
28 + public void removeFromParent();
29 + }