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:
parent
d2b1f0ccc4
commit
97952d1741
|
@ -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 + "]";
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue