statistical-algorithms-impo.../src/main/java/org/gcube/portlets/user/statisticalalgorithmsimporter/client/dminfo/ServiceInfoDataProperties.java

26 lines
712 B
Java
Executable File

package org.gcube.portlets.user.statisticalalgorithmsimporter.client.dminfo;
import org.gcube.portlets.user.statisticalalgorithmsimporter.shared.dminfo.ServiceInfoData;
import com.google.gwt.editor.client.Editor.Path;
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 ServiceInfoDataProperties extends PropertyAccess<ServiceInfoData> {
@Path("key")
ModelKeyProvider<ServiceInfoData> id();
ValueProvider<ServiceInfoData, String> key();
ValueProvider<ServiceInfoData, String> value();
ValueProvider<ServiceInfoData, String> category();
}