Package org.apache.cocoon.components.treeprocessor.variables

Examples of org.apache.cocoon.components.treeprocessor.variables.NOPVariableResolver


        Configuration[] children = config.getChildren(this.parameterElement);

        if (children.length == 0) {
            // Parameters are only the component's location
            return Collections.singletonMap(new NOPVariableResolver(Constants.SITEMAP_PARAMETERS_LOCATION), new NOPVariableResolver(config.getLocation()));
        }

        Map params = new HashMap();
        params.put(new NOPVariableResolver(Constants.SITEMAP_PARAMETERS_LOCATION), new NOPVariableResolver(config.getLocation()));
        for (int i = 0; i < children.length; i++) {
            Configuration child = children[i];
            if (true) { // FIXME : check namespace
                String name = child.getAttribute("name");
                String value = child.getAttribute("value");
View Full Code Here

TOP

Related Classes of org.apache.cocoon.components.treeprocessor.variables.NOPVariableResolver

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.