Minor Update

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-widget-common-event@95686 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2014-05-14 15:18:16 +00:00
parent bb1eb2132b
commit 42207deeff
1 changed files with 13 additions and 11 deletions

View File

@ -15,29 +15,31 @@ public class RowRaw implements Serializable {
private static final long serialVersionUID = -1603145847134978854L;
protected Map<String, String> rowRaw;
protected String rowId;
protected Map<String, String> map;
public RowRaw() {
}
/**
*
* @param rowId row identify
* @param rowRaw A map from columnLocalId to value as String
* @param rowId
* row identify
* @param rowRaw
* A map from columnLocalId to value as String
*/
public RowRaw(String rowId, Map<String, String> rowRaw) {
public RowRaw(String rowId, Map<String, String> map) {
this.rowId = rowId;
this.rowRaw = rowRaw;
this.map = map;
}
public Map<String, String> getRowRaw() {
return rowRaw;
public Map<String, String> getMap() {
return map;
}
public void setRowRaw(Map<String, String> rowRaw) {
this.rowRaw = rowRaw;
public void setMap(Map<String, String> map) {
this.map = map;
}
public String getRowId() {
@ -50,7 +52,7 @@ public class RowRaw implements Serializable {
@Override
public String toString() {
return "RowRaw [rowId=" + rowId + ", rowRaw=" + rowRaw + "]";
return "RowRaw [rowId=" + rowId + ", map=" + map + "]";
}
}