social-profile/src/main/java/org/gcube/portlets/user/socialprofile/client/SocialProfile.java

20 lines
491 B
Java

package org.gcube.portlets.user.socialprofile.client;
import org.gcube.portlets.user.socialprofile.client.ui.DisplayProfile;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.RootPanel;
/**
* Entry point classes define <code>onModuleLoad()</code>.
*/
public class SocialProfile implements EntryPoint {
/**
* This is the entry point method.
*/
public void onModuleLoad() {
RootPanel.get("SocialProfileDiv").add(new DisplayProfile());
}
}