You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
362 B
Java

package org.gcube.portlets.user.questions.client;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.RootPanel;
/**
* Entry point classes define <code>onModuleLoad()</code>.
*/
public class Questions implements EntryPoint {
public void onModuleLoad() {
RootPanel.get("questionsManagersDiv").add(new GroupsPanel());
}
}