package org.gcube.portlets.user.questions.client; import com.google.gwt.core.client.EntryPoint; import com.google.gwt.core.client.GWT; /** * Entry point classes define onModuleLoad(). */ public class Questions implements EntryPoint { /** * Create a remote service proxy to talk to the server-side Greeting service. */ private final QuestionsServiceAsync greetingService = GWT.create(QuestionsService.class); public void onModuleLoad() { } }