com.ql.util.express.instruction.detail.Instruction 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.instruction.detail;
import java.util.List;
import com.ql.util.express.RunEnvironment;
public abstract class Instruction {
private Integer line = 0;
public Instruction setLine(Integer line) {
this.line = line;
return this;
}
public Integer getLine() {
return line;
}
public String getExceptionPrefix() {
return "run QlExpress Exception at line " + line + " :";
}
public abstract void execute(RunEnvironment environment, List errorList) throws Exception;
}