import java.lang.reflect.*; import javax.swing.*; import java.beans.*; public class Boenneintrospektion { public static void main(String[] args) throws Exception { Object objekt = new JButton(); Class klasse = objekt.getClass(); BeanInfo bønneinfo = Introspector.getBeanInfo(klasse); PropertyDescriptor egenskaber[] = bønneinfo.getPropertyDescriptors(); for (int i=0; i