try {
PropertyDescriptor animationRate =
new PropertyDescriptor("animationRate", beanClass);
PropertyDescriptor name =
new PropertyDescriptor("name", beanClass);
PropertyDescriptor juggling =
new PropertyDescriptor("juggling", beanClass);
animationRate.setBound(true);
name.setBound(true);
PropertyDescriptor rv[] = { juggling, animationRate, name};
return rv;
} catch( IntrospectionException e) {
throw new Error(e.toString());
}