|
||||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | |||||||||
See:
Description
| Class Summary | |
| ClasspathSearcher | This class searches through the jars in the classes in the CLASSPATH and looks at the names of the contents to match the specified searchJar string. |
| DirectorySearcher | This class searches through the jars in a searchJar path and looks at the names of the contents to match the specified searchJar string. |
| EntryNameVisitor | Checks to see if the name of the entry matches the pattern we're looking for |
| EntryVisitor | EntryVisitor is the abstract class for visitors which will be called on every file inside a Jar |
Provides utilities for searching through directories or the CLASSPATH for specific classes and other resources.
This package contains classes that will search through either a specified directory (DirectorySearcher), or
your CLASSPATH (ClasspathSearcher) and list all the files (even inside jars) that match the specified pattern.
The pattern is specified using a java Regular expression, so examples of useful patterns are:
.*class will return all class files.*tld will return all TagLib descriptors.*ObjectPool.*class will return classes that have ObjectPool somewhere in the nameorg/apache/commons/pool.*class will return all classes in that package in any jarscom.isocra.utils.jarSearch.DirectorySearcher <directory> <pattern>com.isocra.utils.jarSearch.ClasspathSearcher <pattern>
|
||||||||||
| PREV PACKAGE NEXT PACKAGE | FRAMES NO FRAMES | |||||||||