statistical-algorithms-impo.../src/main/java/org/gcube/portlets/user/statisticalalgorithmsimporter/client/properties/SelectedRowsVariablesProper...

36 lines
1.1 KiB
Java

package org.gcube.portlets.user.statisticalalgorithmsimporter.client.properties;
import org.gcube.portlets.user.statisticalalgorithmsimporter.shared.input.IOType;
import org.gcube.portlets.user.statisticalalgorithmsimporter.shared.input.SelectedRowsVariables;
import org.gcube.portlets.user.statisticalalgorithmsimporter.shared.input.DataType;
import com.sencha.gxt.core.client.ValueProvider;
import com.sencha.gxt.data.shared.ModelKeyProvider;
import com.sencha.gxt.data.shared.PropertyAccess;
/**
*
* @author giancarlo email: <a
* href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
*
*/
public interface SelectedRowsVariablesProperties extends
PropertyAccess<SelectedRowsVariables> {
ModelKeyProvider<SelectedRowsVariables> id();
ValueProvider<SelectedRowsVariables, String> name();
ValueProvider<SelectedRowsVariables, String> description();
ValueProvider<SelectedRowsVariables, DataType> dataType();
ValueProvider<SelectedRowsVariables, String> defaultValue();
ValueProvider<SelectedRowsVariables, IOType> ioType();
ValueProvider<SelectedRowsVariables, String> sourceSelection();
}