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