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

org.webharvest.definition.CallParamDef Maven / Gradle / Ivy

The newest version!
package org.webharvest.definition;

import org.webharvest.runtime.processors.Processor;

/**
 * Definition of function call parameter.
 */
public class CallParamDef extends WebHarvestPluginDef {

    private String name;

    public CallParamDef(XmlNode xmlNode, Class processorClass) {
        super(xmlNode, processorClass);
        this.name = xmlNode.getAttribute("name");
    }

    public String getName() {
        return name;
    }

    public String getShortElementName() {
        return "call-param";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy