Minor update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-mainbox-widget@101297 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-10-31 14:45:53 +00:00 committed by Giancarlo Panichi
parent dff4815463
commit 3c8fe16c2a
6 changed files with 35 additions and 2 deletions

View File

@ -14,6 +14,12 @@ import com.google.web.bindery.event.shared.EventBus;
import com.google.web.bindery.event.shared.SimpleEventBus;
import com.sencha.gxt.widget.core.client.container.Viewport;
/**
*
* @author giancarlo
* email: <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
*
*/
public class MainBoxEntry implements EntryPoint {
protected static final String JSP_TAG_ID = "tdp";

View File

@ -14,8 +14,14 @@ import com.allen_sauer.gwt.log.client.Log;
import com.google.web.bindery.event.shared.EventBus;
import com.sencha.gxt.widget.core.client.ContentPanel;
/**
*
* @author giancarlo
* email: <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
*
*/
public class MainBoxPanel extends ContentPanel {
protected EventBus eventBus;
protected MainBox mainBox;
protected MainBoxPanelState state;

View File

@ -1,5 +1,11 @@
package org.gcube.portlets.user.td.mainboxwidget.client;
/**
*
* @author giancarlo
* email: <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
*
*/
public enum MainBoxPanelState {
CLOSED,
OPENED;

View File

@ -1,5 +1,11 @@
package org.gcube.portlets.user.td.mainboxwidget.client.utils;
/**
*
* @author giancarlo
* email: <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
*
*/
public class Constants {
public static final String TDX_DATASOURCE_FACTORY_ID = "TDXDataSourceFactory";

View File

@ -8,6 +8,12 @@ import com.google.web.bindery.event.shared.EventBus;
import com.sencha.gxt.widget.core.client.FramedPanel;
import com.sencha.gxt.widget.core.client.container.MarginData;
/**
*
* @author giancarlo
* email: <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
*
*/
public class WelcomePanel extends FramedPanel {
protected EventBus eventBus;

View File

@ -17,7 +17,10 @@ import com.google.gwt.user.server.rpc.RemoteServiceServlet;
/**
* The server side implementation of the RPC service.
*
* @author giancarlo
* email: <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
*
*/
@SuppressWarnings("serial")
public class TabularDataServiceImpl extends RemoteServiceServlet implements TabularDataService {