Fixed resource path
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-sdmx-export-widget@84486 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
8d8fc6fc8a
commit
45b6c67009
|
@ -11,7 +11,9 @@ import com.sencha.gxt.data.shared.ModelKeyProvider;
|
|||
import com.sencha.gxt.data.shared.PropertyAccess;
|
||||
|
||||
/**
|
||||
* @author "Federico De Faveri defaveri@isti.cnr.it"
|
||||
*
|
||||
* @author "Giancarlo Panichi"
|
||||
* <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
|
||||
*
|
||||
*/
|
||||
public interface CodelistProperties extends PropertyAccess<Codelist> {
|
||||
|
|
|
@ -11,7 +11,9 @@ import com.sencha.gxt.data.shared.ModelKeyProvider;
|
|||
import com.sencha.gxt.data.shared.PropertyAccess;
|
||||
|
||||
/**
|
||||
* @author "Federico De Faveri defaveri@isti.cnr.it"
|
||||
*
|
||||
* @author "Giancarlo Panichi"
|
||||
* <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
|
||||
*
|
||||
*/
|
||||
public interface DatasetProperties extends PropertyAccess<Dataset> {
|
||||
|
|
|
@ -1,21 +1,18 @@
|
|||
package org.gcube.portlets.user.sdmxexportwizardtd.client;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
import org.gcube.portlets.user.sdmxexportwizardtd.client.general.WizardWindow;
|
||||
import org.gcube.portlets.user.sdmxexportwizardtd.client.rpc.SDMXExportWizardServiceAsync;
|
||||
import org.gcube.portlets.user.sdmxexportwizardtd.shared.Agencies;
|
||||
import org.gcube.portlets.user.sdmxexportwizardtd.shared.SDMXExportSession;
|
||||
|
||||
import com.allen_sauer.gwt.log.client.Log;
|
||||
import com.google.gwt.user.client.rpc.AsyncCallback;
|
||||
import com.sencha.gxt.data.shared.loader.ListLoadResultBean;
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Entry point classes define <code>onModuleLoad()</code>.
|
||||
*
|
||||
* @author "Giancarlo Panichi"
|
||||
* <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
|
||||
*
|
||||
* Entry point classes define <code>onModuleLoad()</code>.
|
||||
*
|
||||
*/
|
||||
public class SDMXExportWizardTD extends WizardWindow {
|
||||
|
||||
|
|
|
@ -5,6 +5,12 @@ package org.gcube.portlets.user.sdmxexportwizardtd.client;
|
|||
import com.allen_sauer.gwt.log.client.Log;
|
||||
import com.google.gwt.core.client.EntryPoint;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author "Giancarlo Panichi"
|
||||
* <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
|
||||
*
|
||||
*/
|
||||
public class SDMXExportWizardTDEntry implements EntryPoint {
|
||||
|
||||
@Override
|
||||
|
|
|
@ -8,17 +8,14 @@ import org.gcube.portlets.user.sdmxexportwizardtd.client.progress.ImportProgress
|
|||
import org.gcube.portlets.user.sdmxexportwizardtd.client.progress.OperationProgressListener;
|
||||
import org.gcube.portlets.user.sdmxexportwizardtd.client.progress.OperationProgressUpdater;
|
||||
import org.gcube.portlets.user.sdmxexportwizardtd.client.rpc.SDMXExportWizardServiceAsync;
|
||||
import org.gcube.portlets.user.sdmxexportwizardtd.client.source.SDMXRegistrySource;
|
||||
import org.gcube.portlets.user.sdmxexportwizardtd.shared.SDMXExportSession;
|
||||
import org.gcube.portlets.user.td.gxtservice.shared.TRId;
|
||||
|
||||
|
||||
import com.allen_sauer.gwt.log.client.Log;
|
||||
import com.google.gwt.user.client.Command;
|
||||
import com.google.gwt.user.client.rpc.AsyncCallback;
|
||||
import com.google.gwt.user.client.ui.FlexTable;
|
||||
import com.google.gwt.user.client.ui.FlexTable.FlexCellFormatter;
|
||||
import com.google.gwt.user.client.ui.HasVerticalAlignment;
|
||||
import com.sencha.gxt.core.client.util.Margins;
|
||||
import com.sencha.gxt.widget.core.client.FramedPanel;
|
||||
import com.sencha.gxt.widget.core.client.ProgressBar;
|
||||
|
|
|
@ -4,13 +4,18 @@ package org.gcube.portlets.user.sdmxexportwizardtd.client.dataresource;
|
|||
import com.google.gwt.core.client.GWT;
|
||||
import com.google.gwt.resources.client.ClientBundle;
|
||||
import com.google.gwt.resources.client.ImageResource;
|
||||
import com.google.gwt.resources.client.ClientBundle.Source;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author "Giancarlo Panichi"
|
||||
* <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
|
||||
*
|
||||
*/
|
||||
public interface ResourceBundle extends ClientBundle {
|
||||
|
||||
public static final ResourceBundle IMPL=GWT.create(ResourceBundle.class);
|
||||
|
||||
@Source("org/gcube/portlets/user/sdmxexportwizardtd/client/dataresource/resources/SDMXExportWizardTD.css")
|
||||
@Source("resources/SDMXExportWizardTD.css")
|
||||
SDMXExportCSS sdmxExportCss();
|
||||
|
||||
@Source("resources/arrow-refresh.png")
|
||||
|
|
|
@ -6,7 +6,9 @@ package org.gcube.portlets.user.sdmxexportwizardtd.client.dataresource;
|
|||
import com.google.gwt.resources.client.CssResource;
|
||||
|
||||
/**
|
||||
* @author Federico De Faveri defaveri@isti.cnr.it
|
||||
*
|
||||
* @author "Giancarlo Panichi"
|
||||
* <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
|
||||
*
|
||||
*/
|
||||
public interface SDMXExportCSS extends CssResource {
|
||||
|
|
Before Width: | Height: | Size: 984 B After Width: | Height: | Size: 984 B |
Before Width: | Height: | Size: 572 B After Width: | Height: | Size: 572 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Loading…
Reference in New Issue