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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package org.litesoft.sampleapplication.sampleApplication.client;

import com.google.gwt.core.client.*;
import com.google.gwt.event.dom.client.*;
import com.google.gwt.user.client.ui.*;

public class SampleApplication implements EntryPoint
{
    public void onModuleLoad()
    {
        Button button = new Button( "Click me" );
        Label fieldLabel = new Label( "Name:" );
        Label errorLabel = new Label( "Error" );
        HTML stateLabel = new HTML( " " );
        TextBox field = new TextBox();

        button.addClickHandler( new ClickHandler()
        {
            public void onClick( ClickEvent event )
            {
                System.out.println( "Clicked!" );
            }
        } );

        VerticalPanel zVPanel = new VerticalPanel();
        zVPanel.add( field );
        zVPanel.add( errorLabel );

        HorizontalPanel zHPanel = new HorizontalPanel();
        zHPanel.add( fieldLabel );
        zHPanel.add( new HTML( "  " ) );
        zHPanel.add( zVPanel );
        zHPanel.add( new HTML( " " ) );
        zHPanel.add( stateLabel );

        zVPanel = new VerticalPanel();
        zVPanel.add( new HTML( " " ) );
        zVPanel.add( zHPanel );
        zVPanel.add( new HTML( " " ) );
        zVPanel.add( button );

        RootPanel zRootPanel = RootPanel.get( "centeredWidget" );
        zRootPanel.add( zVPanel );
    }
}

Commits for litesoft/trunk/GWT_Sandbox/FormEngine/src/org/litesoft/sampleapplication/sampleApplication/client/SampleApplication.java

Diff revisions: vs.
Revision Author Commited Message
589 GeorgeS picture GeorgeS Wed 18 Jan, 2012 19:16:02 +0000

Unchecked & FE