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

29 lines
921 B
Java

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