package foundation.handler;
|
|
public class ResultItem {
|
|
private String name;
|
private Object value;
|
private String operator;
|
|
public ResultItem() {
|
|
}
|
|
public ResultItem(String name, Object value) {
|
this.name = name;
|
this.value = value;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Object getValue() {
|
return value;
|
}
|
|
public void setValue(Object value) {
|
this.value = value;
|
}
|
|
public String getOperator() {
|
return operator;
|
}
|
|
public void setOperator(String operator) {
|
this.operator = operator;
|
}
|
|
}
|