Package net.sourceforge.javautil.interceptor.annotation

Examples of net.sourceforge.javautil.interceptor.annotation.Interceptorability


   */
  protected void findInterceptorAbilities (Class type, Set<Class<? extends IInterceptorManipulator>> abilityTypes) {
    for (Annotation annotation : type.getAnnotations()) {
      if (annotation.annotationType().getPackage().getName().startsWith("java")) continue;
     
      Interceptorability ability = annotation.annotationType().getAnnotation(Interceptorability.class);
      if (ability != null) {
        abilityTypes.add(ability.value());
      }
     
      this.findInterceptorAbilities(annotation.annotationType(), abilityTypes);
    }
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.javautil.interceptor.annotation.Interceptorability

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.