Package org.webharvest.runtime.processors

Examples of org.webharvest.runtime.processors.CallProcessor


    /**
     * Returns variable from scraper context
     * @param varName Name of the variable
     */
    public Variable getVar(String varName) {
        CallProcessor runningFunction = scraper.getRunningFunction();
        ScraperContext activeContext =
                runningFunction == null ? scraper.getContext() : runningFunction.getFunctionContext();
        return activeContext.getVar(varName);
    }
View Full Code Here

TOP

Related Classes of org.webharvest.runtime.processors.CallProcessor

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.