try {
PropertyDescriptor delay =
new PropertyDescriptor("delay", Timer.class );
delay.setBound(false);
PropertyDescriptor running =
new PropertyDescriptor("running", Timer.class );
return new PropertyDescriptor [] { delay, running };
} catch (IntrospectionException e) {
return null;
}