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

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

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

import com.google.code.apis.rest.client.GUI.GuiFactory;
import com.google.gwt.core.client.EntryPoint;

/**
* Entry point classes define <code>onModuleLoad()</code>.
*
*/
public class RestDescribe implements EntryPoint {
  private static RestDescribe singleton;

  /**
   * Gets the singleton RestDescribe instance.
   */
  public static RestDescribe get() {
    return singleton;
  }

  /**
   * This is the entry point method.
   */
  public void onModuleLoad() {
    new GuiFactory();
  }
}
TOP

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

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.