Package welcome.client

Source Code of welcome.client.Welcome

package welcome.client;

import welcome.client.ui.ContentContainer;
import welcome.client.ui.menu.Menu;

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

/**
* Entry point classes define <code>onModuleLoad()</code>.
*/
public class Welcome implements EntryPoint {
  /**
   * The message displayed to the user when the server cannot be reached or
   * returns an error.
   */
//  private static final String SERVER_ERROR = "An error occurred while "
//      + "attempting to contact the server. Please check your network "
//      + "connection and try again.";
//
//  /**
//   * Create a remote service proxy to talk to the server-side Greeting service.
//   */
//  private final GreetingServiceAsync greetingService = GWT
//      .create(GreetingService.class);


 
  /**
   * This is the entry point method.
   */
  public void onModuleLoad() {
   
    String e ="";
 
    ContentContainer.setRoot("content");
   
    RootPanel.get("menu").add(new Menu());

  }
}
TOP

Related Classes of welcome.client.Welcome

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.