Updated C_Expression

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/portlets/user/tabular-data-widget-common-event@113949 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Giancarlo Panichi 2015-04-10 17:07:45 +00:00
parent 647caf0934
commit 9e940972e4
1 changed files with 12 additions and 3 deletions

View File

@ -8,20 +8,29 @@ public class C_Expression implements Serializable {
private static final long serialVersionUID = 7818512507606450235L;
protected String id="Expression";
protected String readableExpression;
public C_Expression(){
readableExpression="Expression()";
}
public String getId() {
return id;
}
public String getReadableExpression() {
return readableExpression;
}
@Override
public String toString() {
return "Expression [id=" + id + "]";
return "C_Expression [id=" + id + ", readableExpression="
+ readableExpression + "]";
}
}