Package org.nutz.mvc.adaptor.injector

Examples of org.nutz.mvc.adaptor.injector.ErrorInjector


      injs[i] = evalInjector(types[i], param);
      // 子类也不能确定,如何适配这个参数,那么做一个标记,如果
      // 这个参数被 ParamInjector 适配到,就会抛错。
      // 这个设计是因为了 "路径参数"
      if (null == injs[i])
        injs[i] = new ErrorInjector(method, i);
    }
  }
View Full Code Here

TOP

Related Classes of org.nutz.mvc.adaptor.injector.ErrorInjector

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.