com.ql.util.express.CallResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of QLExpress Show documentation
Show all versions of QLExpress Show documentation
QLExpress is a powerful, lightweight, dynamic language for the Java platform aimed at improving developers’ productivity in different business scenes.
The newest version!
package com.ql.util.express;
public class CallResult {
private Object returnValue;
private boolean isExit;
public CallResult(Object returnValue, boolean isExit) {
this.initial(returnValue, isExit);
}
public void initial(Object returnValue, boolean isExit) {
this.returnValue = returnValue;
this.isExit = isExit;
}
public void clear() {
this.returnValue = null;
this.isExit = false;
}
public Object getReturnValue() {
return returnValue;
}
public boolean isExit() {
return isExit;
}
}