com.ql.util.express.instruction.FunctionInstructionSet 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;
import com.ql.util.express.InstructionSet;
/**
* TODO public field
*/
public class FunctionInstructionSet {
public final String name;
public final String type;
public final InstructionSet instructionSet;
public FunctionInstructionSet(String name, String type, InstructionSet instructionSet) {
this.name = name;
this.type = type;
this.instructionSet = instructionSet;
}
}