Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-widget-common-event@95643 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-05-13 15:34:03 +00:00
parent 89f06afa3d
commit 98ce257e7b
1 changed files with 14 additions and 17 deletions

View File

@ -5,34 +5,35 @@ import java.io.Serializable;
/**
* Cell basic information
*
* @author "Giancarlo Panichi"
* <a href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
*
* @author "Giancarlo Panichi" <a
* href="mailto:g.panichi@isti.cnr.it">g.panichi@isti.cnr.it</a>
*
*/
public class CellData implements Serializable {
private static final long serialVersionUID = -8622096647178437477L;
protected String value;
protected String columnName;
protected String columnId;
protected String columnLabel;
protected String rowId;
protected int viewRowIndex;
protected int viewColumnIndex;
protected String value; // row value
protected String columnName; // column name
protected String columnId; // column local id
protected String columnLabel; // column label
protected String rowId; // row id value for service
protected int viewRowIndex; // Row show on grid
protected int viewColumnIndex; // Column show on grid
public CellData() {
}
public CellData(String value, String columnName, String columnId,
String columnLabel, String rowId, int viewRowIndex, int viewColumnIndex) {
String columnLabel, String rowId, int viewRowIndex,
int viewColumnIndex) {
this.value = value;
this.columnName = columnName;
this.columnId = columnId;
this.columnLabel = columnLabel;
this.rowId = rowId;
this.viewRowIndex=viewRowIndex;
this.viewColumnIndex=viewColumnIndex;
this.viewRowIndex = viewRowIndex;
this.viewColumnIndex = viewColumnIndex;
}
public String getValue() {
@ -99,8 +100,4 @@ public class CellData implements Serializable {
+ ", viewColumnIndex=" + viewColumnIndex + "]";
}
}