Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-widget-common-event@114087 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2015-04-15 16:57:03 +00:00
parent 9e7a3bd5fc
commit 87576d035b
1 changed files with 25 additions and 0 deletions

View File

@ -30,6 +30,31 @@ public class ColumnMockUp implements Serializable {
}
/**
* Generic simple column with only ColumnDataType set
*
*
* @param id
* @param columnId
* @param columnDataType
* @param label
*/
public ColumnMockUp(String id, String columnId,
ColumnDataType columnDataType, String label) {
super();
this.id = id;
this.columnId = columnId;
this.columnType = null;
this.columnDataType = columnDataType;
this.defaultValue = null;
this.label = label;
this.localeName = null;
this.hasExpression = false;
this.expression = null;
this.timeDimensionType = null;
this.codelistColumnReference = null;
}
/**
* ColumnMockUp