Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.litesoft.sandbox.csapp.client.widgets;

import com.google.gwt.core.client.*;
import com.google.gwt.uibinder.client.*;
import com.google.gwt.user.client.ui.*;

public class MyPanel extends Composite implements IsWidget
{

    private static MyPanelUIBinder uiBinder = GWT.create( MyPanelUIBinder.class );

    interface MyPanelUIBinder extends UiBinder<Widget, MyPanel>
    {
    }

    public MyPanel()
    {
        initWidget( uiBinder.createAndBindUi( this ) );
    }
}

Commits for litesoft/trunk/GWT_Sandbox/CS_IDEA/src/org/litesoft/sandbox/csapp/client/widgets/MyPanel.java

Diff revisions: vs.
Revision Author Commited Message
470 GeorgeS picture GeorgeS Mon 29 Aug, 2011 04:25:43 +0000