com.ql.util.express.instruction.detail.InstructionCloseNewArea 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.InstructionSetContext;
import com.ql.util.express.RunEnvironment;
public class InstructionCloseNewArea extends Instruction {
@Override
public void execute(RunEnvironment environment, List errorList) {
//目前的模式,不需要执行任何操作
environment.setContext((InstructionSetContext)environment.getContext().getParent());
environment.programPointAddOne();
}
@Override
public String toString() {
return "closeNewArea";
}
}