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

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

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

public class FieldTemplateDescr extends BaseDescr {

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

    public FieldTemplateDescr() {
        this( null,
              null );
    }

    public FieldTemplateDescr(final String name,
                              final String type) {
        super();
        this.name = name;
        this.classType = type;
    }

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

    public String getClassType() {
        return this.classType;
    }

    /**
     * @param classType the classType to set
     */
    public void setClassType(final String classType) {
        this.classType = classType;
    }

    /**
     * @param name the name to set
     */
    public void setName(final String name) {
        this.name = name;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy