Application.java :  » GWT » gwt-maven » $ » Java Open Source

Java Open Source » GWT » gwt maven 
gwt maven »   » Application.java
package ${package}.client;

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


/**
 * Entry point classes define <code>onModuleLoad()</code>.
 */
public class Application implements EntryPoint {

  /**
   * This is the entry point method.
   */
  public void onModuleLoad() { 
     RootPanel.get().add(new Label ("GWT-Maven Archetype Project - ${groupId}.${artifactId}"));
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.