Package org.webharvest.definition

Examples of org.webharvest.definition.FunctionDef


        this.callDef = callDef;
    }

    public Variable execute(Scraper scraper, ScraperContext context) {
        String functionName = BaseTemplater.execute( callDef.getName(), scraper.getScriptEngine() );
        FunctionDef functionDef = scraper.getConfiguration().getFunctionDef(functionName);

        this.setProperty("Name", functionName);

        if (functionDef == null) {
            throw new FunctionException("Function \"" + functionName + "\" is undefined!");
View Full Code Here

TOP

Related Classes of org.webharvest.definition.FunctionDef

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.