Package com.google.code.apis.rest.client

Source Code of com.google.code.apis.rest.client.RestDescribeEntryPoint

/*
* RestDescribeEntryPoint.java
*
* Created on 22 June 2008, 18:51
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/

package com.google.code.apis.rest.client;

import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.Button;
import com.google.gwt.user.client.ui.ClickListener;
import com.google.gwt.user.client.ui.Label;
import com.google.gwt.user.client.ui.RootPanel;
import com.google.gwt.user.client.ui.Widget;

/**
*
* @author Louis
*/
public class RestDescribeEntryPoint implements EntryPoint {

    /** Creates a new instance of RestDescribeEntryPoint */
    public RestDescribeEntryPoint() {
    }

    /**
        The entry point method, called automatically by loading a module
        that declares an implementing class as an entry-point
    */
    public void onModuleLoad() {
        final Label label = new Label("Hello, GWT!!!");
        final Button button = new Button("Click me!");
       
        button.addClickListener(new ClickListener(){
            public void onClick(Widget w) {
                label.setVisible(!label.isVisible());
            }
        });
       
        RootPanel.get().add(button);
        RootPanel.get().add(label);
    }

}
TOP

Related Classes of com.google.code.apis.rest.client.RestDescribeEntryPoint

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.