Subversion Repository Public Repository

litesoft

Diff Revisions 626 vs 948 for /trunk/GWT_Sandbox/FormEngine/src/com/temp/client/foundation/widget/OurSimplePanel.java

Diff revisions: vs.
  @@ -1,20 +1,19 @@
1 1 package com.temp.client.foundation.widget;
2 2
3 - import com.google.gwt.user.client.ui.SimplePanel;
4 - import com.google.gwt.user.client.ui.Widget;
3 + import com.google.gwt.user.client.ui.*;
5 4
6 5 public class OurSimplePanel extends SimplePanel {
7 - public OurSimplePanel(Widget widget) {
8 - super(widget);
6 + public OurSimplePanel( Widget widget ) {
7 + super( widget );
9 8 }
10 9
11 - public OurSimplePanel style(String className) {
12 - addStyleName(className);
10 + public OurSimplePanel style( String className ) {
11 + addStyleName( className );
13 12 return this;
14 13 }
15 14
16 - public OurSimplePanel width(String width) {
17 - setWidth(width);
15 + public OurSimplePanel width( String width ) {
16 + setWidth( width );
18 17 return this;
19 18 }
20 19 }