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

29 lines
806 B
Java
Executable File

package org.gcube.portlets.user.statisticalalgorithmsimporter.client.properties;
import org.gcube.portlets.user.statisticalalgorithmsimporter.shared.input.GlobalVariables;
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 GlobalVariablesProperties extends
PropertyAccess<GlobalVariables> {
ModelKeyProvider<GlobalVariables> id();
ValueProvider<GlobalVariables, String> name();
ValueProvider<GlobalVariables, String> description();
ValueProvider<GlobalVariables, DataType> dataType();
ValueProvider<GlobalVariables, String> defaultValue();
}