Here is a really small shell script that can do this.
I call it jarfind and call it like this:
jarfind evermind /usr/local/orion
(this would find all matching evermind classes in all jars under
/usr/local/orion)
I agree that this would be a nice IDE feature.
- Sylvain
------------------------------------------------
#!/bin/sh
for i in `find $2 -name "*.jar"`; do
echo $i
jar -tvf $i | grep $1
done
-----Original Message-----
From: Duncan Godwin [mailto:[EMAIL PROTECTED]]
Sent: November 21, 2001 13.59
To: [EMAIL PROTECTED]
Subject: [Eap-features] JAR Search
Hi,
When dealing with unknown libraries, or a lot of libraries where the
contents are unknown it would be really useful to have a search
dialog that I could point at a directory, e.g. C:\JBoss\lib, and then be
able to enter the name of a class and have IDEA search
through all JAR files reporting where my sought after class was found.
I would also like to see a way of generating bean like properties (getter
and setter) as part of interfaces, as it would save some
typing.
Thanks,
Duncan Godwin
_______________________________________________
Eap-features mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-features
_______________________________________________
Eap-features mailing list
[EMAIL PROTECTED]
http://www.intellij.com/mailman/listinfo/eap-features