Uses of Class
org.jbeans.ReflectionException

Packages that use ReflectionException
org.jbeans   
 

Uses of ReflectionException in org.jbeans
 

Subclasses of ReflectionException in org.jbeans
 class BeanException
          This class is the basic exception that gets thrown from the beans pacakge
 class TypeConversionException
          This is the basic exception that gets thrown from the TypeConverter conversion methods.
 

Methods in org.jbeans that throw ReflectionException
static Class ReflectionTools.findClass(String className, String packageName)
          Convience method that returns class given the package name and className
static Method ReflectionTools.getMethod(Object object, String method, Class[] params)
          Returns the given objects method with the name method and the parameters params.
static Method ReflectionTools.getMethod(Class klass, String method, Class[] params)
          Returns the given class' method with the name method and the parameters params.
static Method[] ReflectionTools.getMethods(Object object)
          Gets all the methods for an object and handles all the nasty exceptions that Java reflection can throw.
static Object ReflectionTools.invokeMethod(Method method, Object object, Object[] params)
          Another convience method because invoking a reflected method is a really pain in the butt.
static Object ReflectionTools.instantiate(Class objectClass)
          Yep, another convience method that instantiates an object from a class and this is just like all the others and wraps the exceptions into one nice exception
static Object ReflectionTools.instantiate(String className)
          A convience method so that a class can be instantiated by name stored in a string without all the exceptions having to be caught.
 

Constructors in org.jbeans with parameters of type ReflectionException
BeanException(ReflectionException re)
          This is a convience constructor that will create a new BeanException that is identical to the given ReflectionException, basically like a forced downcast constructor or a super-class copy constructor.