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 { ModelKeyProvider id(); ValueProvider name(); ValueProvider description(); ValueProvider dataType(); ValueProvider defaultValue(); ValueProvider ioType(); ValueProvider sourceSelection(); }