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

36 lines
1.0 KiB
Java
Executable File

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.InputOutputVariables;
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 Panichi
*
*
*/
public interface InputOutputVariablesProperties extends
PropertyAccess<InputOutputVariables> {
ModelKeyProvider<InputOutputVariables> id();
ValueProvider<InputOutputVariables, String> name();
ValueProvider<InputOutputVariables, String> description();
ValueProvider<InputOutputVariables, DataType> dataType();
ValueProvider<InputOutputVariables, String> defaultValue();
ValueProvider<InputOutputVariables, IOType> ioType();
ValueProvider<InputOutputVariables, String> sourceSelection();
}