Package net.cloudcodex.client

Source Code of net.cloudcodex.client.CloudCodex

package net.cloudcodex.client;

import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.core.client.GWT;
import com.google.gwt.user.client.ui.IsWidget;
import com.google.gwt.user.client.ui.RootLayoutPanel;
import com.mvp4g.client.Mvp4gModule;

/**
* Entry point classes define <code>onModuleLoad()</code>.
*/
public class CloudCodex implements EntryPoint {
  /**
   * This is the entry point method.
   */
  public void onModuleLoad() {
    Mvp4gModule module = (Mvp4gModule) GWT.create(Mvp4gModule.class);
    module.createAndStartModule();
    RootLayoutPanel.get().add((IsWidget) module.getStartView());
  }
}
TOP

Related Classes of net.cloudcodex.client.CloudCodex

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.