Uses of Class
edu.rice.cs.cunit.subAnnot.MethodEx

Packages that use MethodEx
edu.rice.cs.cunit.subAnnot   
edu.rice.cs.cunit.threadCheck.subAnnot   
 

Uses of MethodEx in edu.rice.cs.cunit.subAnnot
 

Methods in edu.rice.cs.cunit.subAnnot that return MethodEx
 MethodEx ClassEx.getDeclaredMethod(java.lang.String name, java.lang.Class... parameterTypes)
          Returns an extended Method object that reflects the specified declared method of the class or interface represented by this extended Class object.
 MethodEx ClassEx.getDeclaredMethod(java.lang.String name, ClassEx... parameterTypes)
          Returns an extended Method object that reflects the specified declared method of the class or interface represented by this extended Class object.
 MethodEx[] ClassEx.getDeclaredMethods()
          Returns an array of extended Method objects reflecting all the methods declared by the class represented by this extended Class object.
 MethodEx ClassEx.getEnclosingMethod()
          If this extended Class object represents a local or anonymous class within a method, returns an extended Method object representing the immediately enclosing method of the underlying class.
 MethodEx ClassEx.getMethod(java.lang.String name, java.lang.Class... parameterTypes)
          Returns an extended Method object that reflects the specified method of the class or interface represented by this extended Class object.
 MethodEx ClassEx.getMethod(java.lang.String name, ClassEx... parameterTypes)
          Returns an array containing extended Method objects reflecting all the public member methods of the class or interface represented by this extended Class object, including those declared by the class or interface and those inherited from superclasses and superinterfaces.
 MethodEx[] ClassEx.getMethods()
          Returns an array containing extended Method objects reflecting all the public member methods of the class or interface represented by this extended Class object, including those declared by the class or interface and those inherited from superclasses and superinterfaces.
 

Uses of MethodEx in edu.rice.cs.cunit.threadCheck.subAnnot
 

Methods in edu.rice.cs.cunit.threadCheck.subAnnot that return MethodEx
static MethodEx SubAnnotThreadCheck.getMethodWithNameAndDescriptor(ClassEx methodClass, java.lang.String methodName, java.lang.String methodDesc)
          Return the method with the specified name and descriptor.
 

Methods in edu.rice.cs.cunit.threadCheck.subAnnot with parameters of type MethodEx
static void SubAnnotThreadCheck.checkForSubtypingClassWarnings(ClassEx cf, MethodEx mi, ClassEx scf, SubAnnotThreadCheck.ThreadCheckAnnotationRecord classAR, SubAnnotThreadCheck.ThreadCheckAnnotationRecord superClassAR)
          Check for subtyping warnings.
static SubAnnotThreadCheck.ThreadCheckAnnotationRecord SubAnnotThreadCheck.getMethodAnnotations(ClassEx cf, MethodEx mi)
          Get the annotations for the specified method in the specified class file.
static java.lang.String SubAnnotThreadCheck.getMethodDescriptor(MethodEx m)
          Return the method descriptor for the method.