Uses of Class
org.apache.bsf.util.Bean

Packages that use Bean
org.apache.bsf.util   
 

Uses of Bean in org.apache.bsf.util
 

Methods in org.apache.bsf.util that return Bean
static Bean ReflectionUtils.createBean(ClassLoader cld, String className, Class[] argTypes, Object[] args)
          Create a bean using given class loader and using the appropriate constructor for the given args of the given arg types.
static Bean ReflectionUtils.createBean(ClassLoader cld, String className, Object[] args)
          Create a bean using given class loader and using the appropriate constructor for the given args.
static Bean ReflectionUtils.getField(Object target, String fieldName)
           
static Bean ReflectionUtils.getProperty(Object target, String propName, Integer index)
          Get a property of a bean.
 

Methods in org.apache.bsf.util with parameters of type Bean
static void ReflectionUtils.setField(Object target, String fieldName, Bean value, TypeConvertorRegistry tcr)