Uses of Class org.codehaus.plexus.util.reflection.ReflectorException

Uses in package org.codehaus.plexus.util.reflection

Methods which throw type org.codehaus.plexus.util.reflection.ReflectorException

Method
Reflector._getMethod(Class targetClass, String methodName, Class[] params)
Constructor
Reflector.getConstructor(Class targetClass, Class[] params)
Return the constructor, checking the cache first and storing in cache if not already there..
Map
Reflector.getConstructorMap(Class theClass)
Retrieve the cache of constructors for the specified class.
Object
Reflector.getField(Object target, String fieldName)
Object
Reflector.getField(Object target, String fieldName, boolean breakAccessibility)
Method
Reflector.getMethod(Class targetClass, String methodName, Class[] params)
Return the method, checking the cache first and storing in cache if not already there..
Map
Reflector.getMethodMap(Class theClass, String methodName)
Retrieve the cache of methods for the specified class and method name.
Object
Reflector.getObjectProperty(Object target, String propertyName)
Object
Reflector.getSingleton(Class theClass, Object[] initParams)
Retrieve the singleton instance of a class, given the array of parameters...
Object
Reflector.getStaticField(Class targetClass, String fieldName)
Object
Reflector.invoke(Object target, String methodName, Object[] params)
Invoke the specified method on the specified target with the specified params...
Object
Reflector.invokeStatic(Class targetClass, String methodName, Object[] params)
Invoke the specified static method with the specified params...
Object
Reflector.newInstance(Class theClass, Object[] params)
Create a new instance of a class, given the array of parameters...