Package org.apache.shale.tiger.managed.config

Examples of org.apache.shale.tiger.managed.config.MapEntriesHolder


     * @exception Exception if a different error occurs
*/
    public void end(String namespace, String name) throws Exception {

        MapEntriesConfig config = (MapEntriesConfig) digester.pop();
        MapEntriesHolder parent = (MapEntriesHolder) digester.peek();
        MapEntriesConfig previous = (MapEntriesConfig) parent.getMapEntries();
        if (previous == null) {
            parent.setMapEntries(config);
        } else {
            merge(config, previous);
        }

    }
View Full Code Here

TOP

Related Classes of org.apache.shale.tiger.managed.config.MapEntriesHolder

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.