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

org.drools.lang.descr.FunctionCallDescr Maven / Gradle / Ivy

There is a newer version: 7.9.0.Final
Show newest version
package org.drools.lang.descr;

/** This represents a function call - as in calling a Drools function. 
 * eg: functionName(argument list)
 */
public class FunctionCallDescr extends DeclarativeInvokerDescr {

    private static final long serialVersionUID = 400L;
    private String name;
    private String arguments;

    public FunctionCallDescr(final String name) {
        this.name = name;
    }

    public String getArguments() {
        return this.arguments;
    }

    public void setArguments(final String arguments) {
        this.arguments = arguments;
    }

    public String getName() {
        return this.name;
    }

    public void setName(final String name) {
        this.name = name;
    }

    public String toString() {
        return this.name + this.arguments;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy