Package de.circleofcontacts.client

Source Code of de.circleofcontacts.client.CircleOfContacts

package de.circleofcontacts.client;

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

import de.circleofcontacts.client.widgets.WindowWidget;

/**
* Entry point classes define <code>onModuleLoad()</code>.
*/
public class CircleOfContacts implements EntryPoint {
 
  private static final ContactsServiceAsync contactsService =
    GWT.create(ContactsService.class);
 
  /**
   * This is the entry point method.
   */
  public void onModuleLoad() {
    RootPanel.get("cocContainer").add(new WindowWidget());
  }

  public static ContactsServiceAsync getContactsService() {
    return contactsService;
  }

}
TOP

Related Classes of de.circleofcontacts.client.CircleOfContacts

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.