All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ql.util.express.CallResult Maven / Gradle / Ivy

Go to download

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;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy