Package com.director.core.annotation

Examples of com.director.core.annotation.DirectParam


   private void initParams() {
      Type[] parameterTypes = this.method.getGenericParameterTypes();
      for(int order = 0; order < parameterTypes.length; order++) {
         Type paramType = parameterTypes[order];
         DirectParam directParam = this.extractDirectParamAnnotation(order);
         DirectMethodParam methodParam = new DirectMethodParam(order, paramType, directParam);
         this.methodParams.add(methodParam);
      }
   }
View Full Code Here

TOP

Related Classes of com.director.core.annotation.DirectParam

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.