From: Ken A. <kan...@bb...> - 2004-03-26 22:15:19
|
I just changed src/elf/apropos.scm. (apropos) is now case insensitive. There is also (findClass) for finding the full name and jar of a class. It does this by grovelling over the jars in your classpath. I find this useful for finding where a class really is when reading a Java file with lots of import ...*'s . > (findClass "Object") 11245 classes (("org.omg.CORBA.Object" c:\j2sdk1.4.2_02\jre\lib\rt.jar) ("java.lang.Object" c:\j2sdk1.4.2_02\jre\lib\rt.jar)) > (findClass "ImageIcon") (("javax.swing.ImageIcon" c:\j2sdk1.4.2_02\jre\lib\rt.jar)) > (findClass "Font") (("java.awt.Font" c:\j2sdk1.4.2_02\jre\lib\rt.jar)) > |