Minor updated

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-gwt-service@86376 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2013-11-29 18:43:13 +00:00
parent d2b1f0ccc4
commit 97952d1741
1 changed files with 13 additions and 1 deletions

View File

@ -16,6 +16,7 @@ public class ColumnData implements Serializable {
protected String name;
protected String typeName;
protected String typeCode;
protected String label;
protected TRId trId;
public String getName() {
@ -58,10 +59,21 @@ public class ColumnData implements Serializable {
this.id = id;
}
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
@Override
public String toString() {
return "ColumnData [id=" + id + ", name=" + name + ", typeName="
+ typeName + ", typeCode=" + typeCode + ", trId=" + trId + "]";
+ typeName + ", typeCode=" + typeCode + ", label=" + label
+ ", trId=" + trId + "]";
}
}