/* * Test.java * * Created on April 25, 2002, 10:53 AM */ import java.beans.Introspector; /** * * @author jl105142 */ public class Test { /** Creates a new instance of Test */ public Test() { } /** * @param args the command line arguments */ public static void main(String[] args) throws Exception { System.err.println("HTMLOptions"); Introspector.getBeanInfo(org.netbeans.modules.editor.options.HTMLOptions.class); System.err.println("JavaOptions"); Introspector.getBeanInfo(org.netbeans.modules.editor.options.JavaOptions.class); } }