Uses of Class
openjava.mop.NoSuchMemberException

Packages that use NoSuchMemberException
openjava.mop Provides classes that are fundamental to the design of the OpenJava Meta-Object Protocols (MOP).  
 

Uses of NoSuchMemberException in openjava.mop
 

Methods in openjava.mop with parameters of type NoSuchMemberException
 OJField OJClass.resolveException(NoSuchMemberException e, java.lang.String name)
           
 OJMethod OJClass.resolveException(NoSuchMemberException e, java.lang.String name, OJClass[] argtypes)
           
 

Methods in openjava.mop that throw NoSuchMemberException
 OJField OJClass.getField(java.lang.String name)
          Returns a OJField object that reflects the specified public member field of the class or interface represented by this OJClass object.
 OJMethod OJClass.getMethod(java.lang.String name, OJClass[] parameterTypes)
          Returns a OJMethod object that reflects the specified public member method of the class or interface represented by this OJClass object.
 OJConstructor OJClass.getConstructor(OJClass[] parameterTypes)
          Returns a OJConstructor object that reflects the specified public constructor of the class represented by this OJClass object.
 OJField OJClass.getField(java.lang.String name, OJClass situation)
          Returns a OJField object that reflects the specified member field accesible from the situation represented by the given OJClass object.
 OJMethod OJClass.getMethod(java.lang.String name, OJClass[] parameterTypes, OJClass situation)
          Returns a OJMethod object that reflects the specified member method accesible from the situation represented by the given OJClass object.
 OJConstructor OJClass.getConstructor(OJClass[] parameterTypes, OJClass situation)
          Returns a OJConstructor object that reflects the specified constructor accesible from the situation represented by the given OJClass object.
 OJField OJClass.getAllField(java.lang.String name)
          Deprecated.  
 OJMethod OJClass.getAllMethod(java.lang.String name, OJClass[] parameterTypes)
          Deprecated.  
 OJMethod OJClass.getAcceptableMethod(java.lang.String name, OJClass[] parameterTypes, OJClass situation)
          Can be overriden
 OJConstructor OJClass.getAcceptableConstructor(OJClass[] parameterTypes, OJClass situation)
          Can be overriden
 OJField OJClass.getDeclaredField(java.lang.String name)
          Returns a OJField object that reflects the specified declared field of the class or interface represented by this OJClass object.
 OJMethod OJClass.getDeclaredMethod(java.lang.String name, OJClass[] parameterTypes)
          Returns a OJMethod object that reflects the specified declared method of the class or interface represented by this OJClass object.
 OJConstructor OJClass.getDeclaredConstructor(OJClass[] parameterTypes)
          Returns a OJConstructor object that reflects the specified constructor of the class or interface represented by this OJClass object.
 OJField OJClass.resolveException(NoSuchMemberException e, java.lang.String name)
           
 OJMethod OJClass.resolveException(NoSuchMemberException e, java.lang.String name, OJClass[] argtypes)