Minor Updated

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-widget-common-event@92268 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-02-25 14:05:02 +00:00
parent 7b98df694d
commit c88e9855ad
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
package org.gcube.portlets.user.td.widgetcommonevent.shared.tr;
public enum TableType {
GENERIC("Generic"),
CODELIST("Codelist"),
DATASET("Dataset");
/**
* @param text
*/
private TableType(final String id) {
this.id = id;
}
private final String id;
@Override
public String toString() {
return id;
}
}