Package com.dyuproject.ioc

Examples of com.dyuproject.ioc.Resource


        if(context==null)
        {
            Log.warn("Not in context.");
            return;
        }
        Resource resource = new Resource(path, type);
        context.getParser().getResolver().resolve(resource, context);
        if(!resource.isResolved())
            throw new IllegalStateException("resource not resolved.");
        try
        {
            context.getAppContext().addImport(ApplicationContext.load(resource,
                    context.getParser()));
View Full Code Here

TOP

Related Classes of com.dyuproject.ioc.Resource

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.