Package org.tubo.configuration.def

Examples of org.tubo.configuration.def.IncludeDef


        //
        // iterate all elements
        for(Iterator it=includeDefs.iterator(); it.hasNext();) {
            //
            // obtains current element
            IncludeDef includeDef = (IncludeDef)it.next();
            //
            // if this include as bean proceced on previus step (remember is recursive), then leave this.
            if (!includeDef.isLoaded())  {
                //
                // obtain resource
                String resource = includeDef.getResource();
                //
                // mark this include like loaded (because if not enter in infinite loop)
                includeDef.setLoaded(true);
                //
                // append this resource to configuration
                config = append(resource, config);
            }
        }
View Full Code Here

TOP

Related Classes of org.tubo.configuration.def.IncludeDef

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.