| 
Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference 11g Release 1 (11.1.1.9.1) E67661-01  | 
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object
  
oracle.jdeveloper.java.locator.BaseClassLocator
      
oracle.jdeveloper.java.locator.PathClassLocator
public class PathClassLocator
The PathClassLocator is an implementation of the JavaClassLocator to locate classes for based on an URLPaths for both the source and class paths
| Field Summary | 
|---|
| Fields inherited from class oracle.jdeveloper.java.locator.BaseClassLocator | 
|---|
EMPTY_COLLECTION, EMPTY_LOCATOR, EMPTY_STRING_ARRAY | 
| Constructor Summary | |
|---|---|
protected | 
PathClassLocator(BaseClassLocator sourceLocator, BaseClassLocator classLocator)Constructs a new PathClassLocator for the given source and class locators. | 
| Method Summary | |
|---|---|
 void | 
buildIndex()Instructs this class locator to start building its index for locating files.  | 
 void | 
buildIndexInterruptibly()Instructs this class locator to start building its index for locating files.  | 
protected  void | 
getAllClasses(java.util.Collection<java.lang.String> out, ClassNameFilter filter)Fetch all of the top-level classes that are known by this locator.  | 
protected  void | 
getAllClassesInterruptibly(java.util.Collection<java.lang.String> out, ClassNameFilter filter)Get all of the top-level classes that are known by this locator.  | 
protected  void | 
getAllPackages(java.util.Collection<java.lang.String> out, PackageNameFilter filter)Fetch all of the full packges that are known by this locator.  | 
protected  void | 
getAllPackagesInterruptibly(java.util.Collection<java.lang.String> out, PackageNameFilter filter)Get all of the full packges that are known by this locator.  | 
protected  void | 
getClassesInPackage(java.lang.String packagePrefix, java.util.Collection<java.lang.String> out)Fetch the list of top-level classes within the given package, adding them to the out collection provided.  | 
protected  void | 
getClassesInPackageInterruptibly(java.lang.String packagePrefix, java.util.Collection<java.lang.String> out)Get the list of top-level classes within the package.  | 
protected  long | 
getClassTimestamp(java.net.URL classURL)Gets the timestamp for the given class file url.  | 
 java.net.URL | 
getClassURL(java.lang.String fqClassName)Fetch the URL for the JavaFile for the given fully-qualified Java class name.  | 
 java.net.URL | 
getClassURLInterruptibly(java.lang.String fqClassName)Fetch the URL for the JavaFile for the given fully-qualified Java class name.  | 
protected static PathClassLocator | 
getInstance(URLPath sourcePath, URLPath classPath)Get a PathClassLocator instance. | 
protected static PathClassLocator | 
getInstanceInterruptibly(URLPath sourcePath, URLPath classPath)Get a PathClassLocator instance. | 
protected  void | 
getPackages(java.lang.String packagePrefix, java.util.Collection<java.lang.String> out)Fetch the list of subpackages within the given package, adding them to the out collection provided.  | 
protected  void | 
getPackagesInterruptibly(java.lang.String packagePrefix, java.util.Collection<java.lang.String> out)Get the list of subpackages within the given package.  | 
 java.net.URL | 
getResourceURL(java.lang.String resourceName)Fetch the URL for the Java resource file given the resource name.  | 
protected  long | 
getSourceTimestamp(java.net.URL sourceURL)Gets the timestamp for the given source file url.  | 
 java.net.URL | 
getSourceURL(java.lang.String fqClassName)Fetch the URL for the SourceFile for the given fully-qualified Java class name.  | 
 java.net.URL | 
getSourceURLInterruptibly(java.lang.String fqClassName)Fetch the URL for the SourceFile for the given fully-qualified Java class name.  | 
 java.net.URL | 
getURL(java.lang.String fqClassName)Fetch the URL for the JavaFile for the given fully-qualified Java class name.  | 
 java.net.URL | 
getURLInterruptibly(java.lang.String fqClassName)Fetch the URL for the JavaFile for the given fully-qualified Java class name.  | 
| Methods inherited from class java.lang.Object | 
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Constructor Detail | 
|---|
protected PathClassLocator(BaseClassLocator sourceLocator,
                           BaseClassLocator classLocator)
PathClassLocator for the given source and class locators.
sourceLocator - the source locator to useclassLocator - the class locator to use| Method Detail | 
|---|
protected static PathClassLocator getInstance(URLPath sourcePath,
                                              URLPath classPath)
PathClassLocator instance.sourcePath - the source pathclassPath - the class path
protected static PathClassLocator getInstanceInterruptibly(URLPath sourcePath,
                                                           URLPath classPath)
                                                    throws java.lang.InterruptedException
PathClassLocator instance.sourcePath - the source pathclassPath - the class pathjava.lang.InterruptedException - if the calling thread is interrupted during creation of the locatorpublic void buildIndex()
public void buildIndexInterruptibly()
                             throws java.lang.InterruptedException
JavaClassLocator2buildIndexInterruptibly in interface JavaClassLocator2buildIndexInterruptibly in class BaseClassLocatorjava.lang.InterruptedException - if the build is interrupted
protected void getPackages(java.lang.String packagePrefix,
                           java.util.Collection<java.lang.String> out)
getPackages in class BaseClassLocatorpackagePrefix - the package prefix, i.e., "java.io"out - the collection to add the packages
protected void getPackagesInterruptibly(java.lang.String packagePrefix,
                                        java.util.Collection<java.lang.String> out)
                                 throws java.lang.InterruptedException
BaseClassLocatorgetPackagesInterruptibly in class BaseClassLocatorpackagePrefix - the package prefixout - the collection where packages are addedjava.lang.InterruptedException - if the operation is interrupted
protected void getClassesInPackage(java.lang.String packagePrefix,
                                   java.util.Collection<java.lang.String> out)
getClassesInPackage in class BaseClassLocatorpackagePrefix - the package prefix, i.e., "java.io"out - the collection to add the class names
protected void getClassesInPackageInterruptibly(java.lang.String packagePrefix,
                                                java.util.Collection<java.lang.String> out)
                                         throws java.lang.InterruptedException
BaseClassLocatorgetClassesInPackageInterruptibly in class BaseClassLocatorpackagePrefix - the package prefixout - the collection where packages are addedjava.lang.InterruptedException - if the operation is interrupted
protected void getAllClasses(java.util.Collection<java.lang.String> out,
                             ClassNameFilter filter)
getAllClasses in class BaseClassLocatorout - the collection to add the fully-qualified class namesfilter - the class name filter to use
protected void getAllClassesInterruptibly(java.util.Collection<java.lang.String> out,
                                          ClassNameFilter filter)
                                   throws java.lang.InterruptedException
BaseClassLocatorgetAllClassesInterruptibly in class BaseClassLocatorout - the collection where fully qualified class names are addedfilter - the class name filter to usejava.lang.InterruptedException - if the operation is interrupted
protected void getAllPackages(java.util.Collection<java.lang.String> out,
                              PackageNameFilter filter)
getAllPackages in class BaseClassLocatorout - the collection to add the full package namesfilter - the pckage name filter to use
protected void getAllPackagesInterruptibly(java.util.Collection<java.lang.String> out,
                                           PackageNameFilter filter)
                                    throws java.lang.InterruptedException
BaseClassLocatorgetAllPackagesInterruptibly in class BaseClassLocatorout - the collection where package names are addedfilter - the package name filter to usejava.lang.InterruptedException - if the operation is interruptedpublic java.net.URL getURL(java.lang.String fqClassName)
fqClassName - the fully-qualified class name in dotted notation, i.e., java.util.List
public java.net.URL getURLInterruptibly(java.lang.String fqClassName)
                                 throws java.lang.InterruptedException
JavaClassLocator2getURLInterruptibly in interface JavaClassLocator2getURLInterruptibly in class BaseClassLocatorfqClassName - the fully-qualified class name in dotted notation, i.e., java.util.Listjava.lang.InterruptedException - if the operation is interruptedpublic java.net.URL getSourceURL(java.lang.String fqClassName)
fqClassName - the fully-qualified class name in dotted notation
public java.net.URL getSourceURLInterruptibly(java.lang.String fqClassName)
                                       throws java.lang.InterruptedException
JavaClassLocator2getSourceURLInterruptibly in interface JavaClassLocator2getSourceURLInterruptibly in class BaseClassLocatorfqClassName - the fully-qualified class name in dotted notationjava.lang.InterruptedException - if the operation is interruptedpublic java.net.URL getClassURL(java.lang.String fqClassName)
fqClassName - the fully-qualified class name in dotted notation
public java.net.URL getClassURLInterruptibly(java.lang.String fqClassName)
                                      throws java.lang.InterruptedException
JavaClassLocator2getClassURLInterruptibly in interface JavaClassLocator2getClassURLInterruptibly in class BaseClassLocatorfqClassName - the fully-qualified class name in dotted notationjava.lang.InterruptedException - if the operation is interruptedpublic java.net.URL getResourceURL(java.lang.String resourceName)
resourceName - the full name of the resource including any file extensionsprotected long getClassTimestamp(java.net.URL classURL)
protected long getSourceTimestamp(java.net.URL sourceURL)
  | 
Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference 11g Release 1 (11.1.1.9.1) E67661-01  | 
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||