Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@96173 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-05-28 10:58:57 +00:00
parent 60f4a8989e
commit c4ab199b2a
1 changed files with 5 additions and 5 deletions

View File

@ -13,7 +13,7 @@ public class DefNewColumn implements Serializable {
private static final long serialVersionUID = 7467523779864189492L; private static final long serialVersionUID = 7467523779864189492L;
protected int id; //Only for grid or combo protected String id; //Only for grid or combo
protected ColumnTypeCode columnType; protected ColumnTypeCode columnType;
protected String defaultValue; protected String defaultValue;
protected String label; protected String label;
@ -23,8 +23,8 @@ public class DefNewColumn implements Serializable {
} }
public DefNewColumn(int id, ColumnTypeCode columnType, public DefNewColumn(String id, String label,
String defaultValue, String label,String localeName) { ColumnTypeCode columnType, String localeName,String defaultValue) {
this.columnType=columnType; this.columnType=columnType;
this.defaultValue=defaultValue; this.defaultValue=defaultValue;
this.label=label; this.label=label;
@ -55,11 +55,11 @@ public class DefNewColumn implements Serializable {
this.defaultValue = defaultValue; this.defaultValue = defaultValue;
} }
public int getId() { public String getId() {
return id; return id;
} }
public void setId(int id) { public void setId(String id) {
this.id = id; this.id = id;
} }