You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
712 B
Java

/**
*
*/
package org.gcube.portlets.user.td.excelexportwidget.client.properties;
import org.gcube.portlets.user.td.gwtservice.shared.tr.type.Codelist;
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 CodelistProperties extends PropertyAccess<Codelist> {
@Path("id")
ModelKeyProvider<Codelist> key();
ValueProvider<Codelist, String> name();
ValueProvider<Codelist, String> agencyId();
ValueProvider<Codelist, String> version();
ValueProvider<Codelist, String> description();
}