Uses of Interface
org.codehaus.aspectwerkz.reflect.MethodInfo

Packages that use MethodInfo
org.codehaus.aspectwerkz   
org.codehaus.aspectwerkz.annotation.instrumentation.asm   
org.codehaus.aspectwerkz.reflect   
org.codehaus.aspectwerkz.reflect.impl.asm   
org.codehaus.aspectwerkz.reflect.impl.java   
org.codehaus.aspectwerkz.reflect.impl.javassist   
 

Uses of MethodInfo in org.codehaus.aspectwerkz
 

Methods in org.codehaus.aspectwerkz with parameters of type MethodInfo
 void AspectSystem.enteringControlFlow(PointcutType pointcutType, MethodInfo methodInfo, ClassInfo withinInfo)
          Registers entering of a control flow join point.
 void AspectSystem.exitingControlFlow(PointcutType pointcutType, MethodInfo methodInfo, ClassInfo withinInfo)
          Registers exiting from a control flow join point.
 

Uses of MethodInfo in org.codehaus.aspectwerkz.annotation.instrumentation.asm
 

Methods in org.codehaus.aspectwerkz.annotation.instrumentation.asm with parameters of type MethodInfo
static Annotation AsmAnnotations.getAnnotation(String annotationName, MethodInfo methodInfo)
          Return the annotation with a specific name for a specific method.
static List AsmAnnotations.getAnnotations(String annotationName, MethodInfo methodInfo)
          Return a list with the annotations with a specific name for a specific method.
 

Uses of MethodInfo in org.codehaus.aspectwerkz.reflect
 

Methods in org.codehaus.aspectwerkz.reflect that return MethodInfo
 MethodInfo CflowMetaData.getMethodInfo()
          Returns the method info.
 MethodInfo ClassInfo.getMethod(int hash)
          Returns a method info by its hash.
 MethodInfo[] ClassInfo.getMethods()
          Returns the methods info.
 MethodInfo ClassInfo.NullClassInfo.getMethod(int hash)
           
 MethodInfo[] ClassInfo.NullClassInfo.getMethods()
           
 

Methods in org.codehaus.aspectwerkz.reflect with parameters of type MethodInfo
static boolean ClassInfoHelper.isMethodStatic(MethodInfo methodInfo)
          Checks if a method is static or not.
 

Constructors in org.codehaus.aspectwerkz.reflect with parameters of type MethodInfo
CflowMetaData(ClassInfo classMetaData, MethodInfo methodMetaData)
          Creates a new ClassNameMethodInfoTuple.
 

Uses of MethodInfo in org.codehaus.aspectwerkz.reflect.impl.asm
 

Classes in org.codehaus.aspectwerkz.reflect.impl.asm that implement MethodInfo
 class AsmMethodInfo
          ASM implementation of the MethodInfo interface.
 

Methods in org.codehaus.aspectwerkz.reflect.impl.asm that return MethodInfo
 MethodInfo AsmClassInfo.getMethod(int hash)
          Returns a method info by its hash.
 MethodInfo[] AsmClassInfo.getMethods()
          Returns a list with all the methods info.
static MethodInfo AsmConstructorInfo.getConstructorInfo(String constructorDesc, byte[] bytecode, ClassLoader loader)
          Returns the constructor info for the constructor specified.
static MethodInfo AsmMethodInfo.getMethodInfo(String methodName, String methodDesc, byte[] bytecode, ClassLoader loader)
          Returns the method info for the method specified.
 

Uses of MethodInfo in org.codehaus.aspectwerkz.reflect.impl.java
 

Classes in org.codehaus.aspectwerkz.reflect.impl.java that implement MethodInfo
 class JavaMethodInfo
          Implementation of the MethodInfo interface for java.lang.reflect.*.
 

Methods in org.codehaus.aspectwerkz.reflect.impl.java that return MethodInfo
 MethodInfo JavaClassInfo.getMethod(int hash)
          Returns a method info by its hash.
 MethodInfo[] JavaClassInfo.getMethods()
          Returns a list with all the methods info.
static MethodInfo JavaMethodInfo.getMethodInfo(Method method)
          Returns the method info for the method specified.
 

Uses of MethodInfo in org.codehaus.aspectwerkz.reflect.impl.javassist
 

Classes in org.codehaus.aspectwerkz.reflect.impl.javassist that implement MethodInfo
 class JavassistMethodInfo
          Implementation of the MethodInfo interface for Javassist.
 

Methods in org.codehaus.aspectwerkz.reflect.impl.javassist that return MethodInfo
 MethodInfo JavassistClassInfo.getMethod(int hash)
          Returns a method info by its hash.
 MethodInfo[] JavassistClassInfo.getMethods()
          Returns a list with all the methods info.
static MethodInfo JavassistMethodInfo.getMethodInfo(javassist.CtMethod method, ClassLoader loader)
          Returns the method info for the method specified.
 



Copyright © 2002-2004 Jonas Bonér, Alexandre Vasseur. All Rights Reserved.