Minor Updated
git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-widget-common-event@91814 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
parent
f0a05b2437
commit
4220e7a82d
|
@ -14,6 +14,9 @@ public class C_ExpressionContainer implements Serializable {
|
|||
|
||||
protected Contains id;
|
||||
protected C_Expression exp;
|
||||
protected String readableExpression;
|
||||
|
||||
|
||||
|
||||
public Contains getId() {
|
||||
return id;
|
||||
|
@ -31,9 +34,20 @@ public class C_ExpressionContainer implements Serializable {
|
|||
this.exp = exp;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "C_ExpressionContainer [id=" + id + ", exp=" + exp + "]";
|
||||
public String getReadableExpression() {
|
||||
return readableExpression;
|
||||
}
|
||||
|
||||
public void setReadableExpression(String readableExpression) {
|
||||
this.readableExpression = readableExpression;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "C_ExpressionContainer [id=" + id + ", exp=" + exp
|
||||
+ ", readableExpression=" + readableExpression + "]";
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue