Package org.nutz.ioc.loader.xml

Examples of org.nutz.ioc.loader.xml.XmlIocLoader


import org.nutz.mvc.NutConfig;

public class XmlIocProvider implements IocProvider {

  public Ioc create(NutConfig config, String[] args) {
    return new NutIoc(new XmlIocLoader(args), new ScopeContext("app"), "app");
  }
View Full Code Here


import org.nutz.mvc.NutConfig;

public class XmlIocProvider implements IocProvider {

    public Ioc create(NutConfig config, String[] args) {
        return new NutIoc(new XmlIocLoader(args), new ScopeContext("app"), "app");
    }
View Full Code Here

TOP

Related Classes of org.nutz.ioc.loader.xml.XmlIocLoader

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.