Feeds:
Posts
Comments

Archive for March, 2008

Setup First Application
The Java FileĀ 
package com.mycompany.client;
import com.google.gwt.user.client.Window;

import com.google.gwt.core.client.EntryPoint;

import com.google.gwt.user.client.ui.Button;

import com.google.gwt.user.client.ui.CheckBox;

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;
/**

* Entry point classes define <code>onModuleLoad()</code>.

*/
public class MyApplication implements EntryPoint {
 
/**

* This is the entry point method.

*/
public void onModuleLoad() {
final Button moredetails = new Button(“Details”);
final Button button = new Button(“Register me”);
final Label label = new Label();
final CheckBox cb = new CheckBox(“I [...]

Read Full Post »