Package net.sf.ehcache.config.generator.model.elements

Examples of net.sf.ehcache.config.generator.model.elements.CacheConfigurationElement.accept()


     * @param cacheConfiguration
     * @param configGenerator
     */
    static void visitCacheConfiguration(CacheConfiguration cacheConfiguration, NodeElementVisitor configGenerator) {
        CacheConfigurationElement element = new CacheConfigurationElement(null, cacheConfiguration);
        element.accept(configGenerator);
    }

}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.