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

com.ql.util.express.instruction.detail.InstructionCloseNewArea 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.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";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy