> -
Hi,
Incidentally, things generally work better in newsgroups if you ask your
question in the body of your message, rather than merely in the subject
line.
Java GUI controls, at least as of Java 1.1 (approximately 1997, IIRC?),
all obey the JavaBeans specification. You can get a list of methods and
properties and events via the java.beans.Introspector class:
java.awt.Component c = ...; // The control
BeanInfo b = Introspector.getBeanInfo(c.getClass());
MethodDescriptor[] methods = b.getMethodDescriptors();
PropertyDescriptor[] props = b.getPropertyDescriptors();
EventSetDescriptor[] events = b.getEventSetDescriptors();
The various descriptor classes have methods available to retrieve
information about the properties, events, and methods.

Signature
Chris Smith - Lead Software Developer / Technical Trainer
MindIQ Corporation