statistical-algorithms-impo.../src/main/java/org/gcube/portlets/user/statisticalalgorithmsimporter/client/tools/input/InputTypeMessages.java

29 lines
678 B
Java

package org.gcube.portlets.user.statisticalalgorithmsimporter.client.tools.input;
import org.gcube.portlets.user.statisticalalgorithmsimporter.shared.input.InputType;
import com.google.gwt.i18n.client.Messages;
/**
*
* @author giancarlo
* email: <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
*
*/
public interface InputTypeMessages extends Messages {
@DefaultMessage("")
@AlternateMessage({ "STRING", "String",
"NUMBER", "Number",
"ENUMERATED", "Enumerated",
"CONSTANT", "Constant",
"RANDOM", "Random",
"FILE", "File",
"MAP", "Map",
"BOOLEAN", "Boolean",
"IMAGES", "Images" })
String inputType(@Select InputType inputType);
}