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

com.ql.util.express.instruction.FunctionInstructionSet 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;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy