Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.7.0)

E13403-08

Uses of Class
oracle.ide.net.URLPath

Packages that use URLPath
oracle.ide.component Contains graphical components that are implemented using two or more basic controls. 
oracle.ide.controls Contains classes implementing the basic graphical controls, such as, toolbars, toolbar buttons, status bars, tabbed windows, used by JDeveloper. 
oracle.ide.extension   
oracle.ide.index Classes used to build and query indexes of source files. 
oracle.ide.model Contains interfaces and classes implementing JDeveloper's data model. 
oracle.ide.net Provides a virtual file system framework based on java.net.URL. 
oracle.jdeveloper.builder This package contains the base implementations for the set of classes used for creating new objects. 
oracle.jdeveloper.builder.cls The cls package provides classes and interfaces for generating Java classes. 
oracle.jdeveloper.builder.javapckg   
oracle.jdeveloper.cmt The Component Model Tool, an API for manipulating Java source code. 
oracle.jdeveloper.deploy   
oracle.jdeveloper.java Public API for the java model. 
oracle.jdeveloper.java.locator Public implementations of the JavaClassLocator interface. 
oracle.jdeveloper.java.provider Public implementations of the JavaFileProvider interface. 
oracle.jdeveloper.jsp.libraries   
oracle.jdeveloper.library The Libraries package provides the library API used by JDeveloper. 
oracle.jdeveloper.model Contains interfaces and classes implementing the Java specific portions of JDeveloper's data model. 
oracle.jdeveloper.uieditor Contains classes that allow addins access to the UIEditor integration objects. 
oracle.jdeveloper.vcs.changelist   
oracle.jdeveloper.webapp.utils   
 

Uses of URLPath in oracle.ide.component
 

Methods in oracle.ide.component that return URLPath
static URLPath URLPathEditPanel.editPath(java.awt.Component parent, java.lang.String title, URLPath path, boolean supportAnyURL, boolean allowJars, java.lang.String helpID)
          Displays the UI in a dialog for the user to edit a specified path.
 URLPath URLPathEditPanel.getPath()
          Retrieves the current path displayed in the UI.
 

Methods in oracle.ide.component with parameters of type URLPath
static URLPath URLPathEditPanel.editPath(java.awt.Component parent, java.lang.String title, URLPath path, boolean supportAnyURL, boolean allowJars, java.lang.String helpID)
          Displays the UI in a dialog for the user to edit a specified path.
 void URLPathEditPanel.setPath(URLPath path)
          Sets the path being edited.
static void URLPathEditPanel.viewPath(java.awt.Component parent, java.lang.String title, URLPath path, java.lang.String helpID)
          Displays UI for viewing a path.
 

Constructors in oracle.ide.component with parameters of type URLPath
URLPathEditPanel(URLPath path)
          Creates a new URLPathEditPanel for the specified path.
 

Uses of URLPath in oracle.ide.controls
 

Methods in oracle.ide.controls that return URLPath
 URLPath URLPathField.getURLPath()
          Gets the URLPath for the text in the text field.
 

Methods in oracle.ide.controls with parameters of type URLPath
 void URLPathField.setURLPath(URLPath path)
           
 

Constructors in oracle.ide.controls with parameters of type URLPath
URLPathField(URLPath path)
           
 

Uses of URLPath in oracle.ide.extension
 

Methods in oracle.ide.extension with parameters of type URLPath
protected  void URLPathHandler.getURLPaths(URLPath newPath, java.lang.String text, java.net.URL localpath)
           
 

Uses of URLPath in oracle.ide.index
 

Methods in oracle.ide.index with parameters of type URLPath
abstract  Index IndexManager.getIndex(Project project, URLPath path)
          Get the index for the given URLPath in the scope of the given project.
 

Uses of URLPath in oracle.ide.model
 

Methods in oracle.ide.model that return URLPath
 URLPath ContentSet.getAllRootDirs()
          Returns all root URLs associated with this content set and all constituent content sets recursively.
 URLPath ContentLevel.getDirectoryURLPath()
           
 URLPath ProjectContent.getJavaRootDirs()
           
 URLPath ResourcePaths.getProjectResourcesPath()
           
 URLPath ContentLevelFolder.getRootDirectories()
           
 URLPath ContentSetFolder.getRootDirectories()
           
abstract  URLPath RelativeDirectoryContextFolder.getRootDirectories()
          Retrieves the root directories used to assemble the folder contents.
 URLPath RelativeDirectoryElement.getRootDirectories()
          Gets the paths of the root directories for the directories represented by this element.
 URLPath ContentSet.getURLPath()
          Returns the URLPath of the dynamic content path of this ContentSet.
 

Methods in oracle.ide.model with parameters of type URLPath
 java.util.List OwnerMap.getOwnedNodes(java.net.URL ownerContainerURL, URLPath srcRoots, java.lang.String dirRelPath)
          Deprecated. Utility method for ContentLevelFilter implementations that need to filter out all owned nodes within a particular relative directory.
 void AsynchronousContentLevelFilter.postUpdateDirRequestHandlerSubmitted(URLPath srcRoots, java.lang.String dirRelPath, java.util.List elementList)
          Can be optionally overriden after the asynchronous request from getUpdateDirRequestHandler has been submitted for execution.
 boolean ResourcePaths.setProjectResourcesPath(URLPath urlPath)
           
abstract  void ContentLevelFilter.updateDir(URLPath srcRoots, java.lang.String dirRelPath, java.util.List elementList, java.util.List subdirList, Context context)
          This method is called whenever a level is expanded during the breadth-first traversal of the project content.
 

Uses of URLPath in oracle.ide.net
 

Methods in oracle.ide.net that return URLPath
static URLPath URLPath.getURLPath(HashStructure hash, java.lang.String urlPathName)
          Retrieves the URLPath that is stored within the specified HashStructure at the specified name.
static URLPath URLPath.newURLPathFromString(java.lang.String entries)
          This is a factory method for creating a URLPath instance based on a typical path string, such as that that is returned by System.getProperty( "java.class.path" ).
 URLPath FilePath.toURLPath()
          Produces an URLPath that represents a path that is equivalent to this FilePath.
 

Methods in oracle.ide.net with parameters of type URLPath
 void URLPath.add(URLPath urlPath)
          Adds the entries from the specified URLPath to this instance.
protected  void URLPath.copyToImpl(URLPath copy)
          Design pattern for supporting strongly typed copying.
protected  boolean URLPath.equalsImpl(URLPath urlPath)
          This is a helper method for equals(Object) that can also be used by subclasses that implement equals(Object).
 void URLPath.remove(URLPath urlPath)
           
static boolean URLPath.setURLPath(HashStructure hash, java.lang.String urlPathName, URLPath urlPath)
          Stores the specified URLPath into the HashStructure at the specified name.
 

Constructors in oracle.ide.net with parameters of type URLPath
PackageClassChooser(int scope, URLPath path)
          Creates a new PackageClassChooser that is configured to browse the specified URLPath.
URLPath(URLPath urlPath)
          Copy constructor.
 

Uses of URLPath in oracle.jdeveloper.builder
 

Methods in oracle.jdeveloper.builder that return URLPath
protected  URLPath SourceModel.getSourcePath()
           
 

Uses of URLPath in oracle.jdeveloper.builder.cls
 

Methods in oracle.jdeveloper.builder.cls that return URLPath
protected  URLPath ClassSourceModel.getSourcePath()
           
 

Uses of URLPath in oracle.jdeveloper.builder.javapckg
 

Methods in oracle.jdeveloper.builder.javapckg that return URLPath
protected  URLPath PackageSourceModel.getSourcePath()
           
 

Uses of URLPath in oracle.jdeveloper.cmt
 

Methods in oracle.jdeveloper.cmt with parameters of type URLPath
 void CmtPackages.addDesignTimePath(URLPath path)
           
 

Uses of URLPath in oracle.jdeveloper.deploy
 

Methods in oracle.jdeveloper.deploy with parameters of type URLPath
 void ArchiveEntryFactory.recurseInPath(URLPath path)
           
 

Uses of URLPath in oracle.jdeveloper.java
 

Methods in oracle.jdeveloper.java with parameters of type URLPath
static JavaManager JavaManager.getInstance(URLPath sourcePath, URLPath classPath)
          Fetch a JavaManager instance for the given source and class paths.
static JavaModel JavaModel.getInstance(URLPath sourcepath, URLPath classpath)
          Fetch a JavaManager instance for the given project.
static JavaManager JavaManager.getJavaManager(URLPath sourcePath, URLPath classPath)
          Fetch a JavaManager instance for the given source and class paths.
 JavaModel JavaModelFactory.newInstance(URLPath sourcepath, URLPath classpath)
          Creates a new JavaModel instance for the given arguments.
 

Uses of URLPath in oracle.jdeveloper.java.locator
 

Methods in oracle.jdeveloper.java.locator that return URLPath
protected static URLPath ProjectClassLocator.getAddedClassPathFor(Project project)
          Utility routine to fetch the added classpath for the given project.
protected static URLPath ProjectClassLocator.getModuleConfigClassPathFor(Project project)
          Utility routine to fetch the module config classpath for the given project.
static URLPath ProjectClassLocator.getSourcePathFor(Project project)
          Utility routine to fetch the source path for the given project.
 

Methods in oracle.jdeveloper.java.locator with parameters of type URLPath
 BaseClassLocator ClassLocatorFactory.getClassLocator(URLPath urlPath)
          Fetch a BaseClassLocator instance for the given URLPath for locating class files.
 BaseClassLocator ClassLocatorFactory.getClassLocatorInterruptibly(URLPath urlPath)
          Fetch a BaseClassLocator instance for the given URLPath for locating class files.
protected static JdevPathClassLocator JdevPathClassLocator.getInstance(URLPath sourcePath, URLPath classPath)
          Get a JdevPathClassLocator instance.
protected static PathClassLocator PathClassLocator.getInstance(URLPath sourcePath, URLPath classPath)
          Get a PathClassLocator instance.
protected static JdevPathClassLocator JdevPathClassLocator.getInstanceInterruptibly(URLPath sourcePath, URLPath classPath)
          Get a JdevPathClassLocator instance.
protected static PathClassLocator PathClassLocator.getInstanceInterruptibly(URLPath sourcePath, URLPath classPath)
          Get a PathClassLocator instance.
 BaseClassLocator JdevClassLocatorFactory.getPathLocator(URLPath sourcePath, URLPath classPath)
          Fetch a BaseClassLocator instance for the given source and class paths for locating source and class files.
 BaseClassLocator ClassLocatorFactory.getPathLocator(URLPath sourcePath, URLPath classPath)
          Fetch a BaseClassLocator instance for the given source and class paths for locating source and class files.
 BaseClassLocator JdevClassLocatorFactory.getPathLocatorInterruptibly(URLPath sourcePath, URLPath classPath)
           
 BaseClassLocator ClassLocatorFactory.getPathLocatorInterruptibly(URLPath sourcePath, URLPath classPath)
          Fetch a BaseClassLocator instance for the given source and class paths for locating source and class files.
 BaseClassLocator ClassLocatorFactory.getSourceLocator(URLPath urlPath)
          Fetch a BaseClassLocator instance for the given URLPath for locating source files.
 BaseClassLocator ClassLocatorFactory.getSourceLocatorInterruptibly(URLPath urlPath)
          Fetch a BaseClassLocator instance for the given URLPath for locating source files.
protected static void ProjectClassLocator.processDependenciesRecurse(Project project, java.util.List traversedList, java.util.List libraryList, java.util.List<oracle.jdeveloper.java.locator.DeploymentClassLocator.DeploymentPaths> deploymentList, URLPath sourcePath, URLPath classPath, boolean exportsOnly, boolean checkInterrupt)
          Utility routine which recursively processes a project's dependencies.
 

Uses of URLPath in oracle.jdeveloper.java.provider
 

Methods in oracle.jdeveloper.java.provider with parameters of type URLPath
protected static boolean ProjectFileProvider.pathContainsURL(URLPath path, java.net.URL url)
          Utility to check whether the specified URL is present in one of the directories specified by URLPath.
 

Uses of URLPath in oracle.jdeveloper.jsp.libraries
 

Methods in oracle.jdeveloper.jsp.libraries that return URLPath
static URLPath JspLibraryUtils.removeDeployedJars(URLPath urlPath, Project project)
          Removes JAR file entries from the given URL path that have already been deployed to project's WEB-INF/lib folder.
 

Methods in oracle.jdeveloper.jsp.libraries with parameters of type URLPath
static URLPath JspLibraryUtils.removeDeployedJars(URLPath urlPath, Project project)
          Removes JAR file entries from the given URL path that have already been deployed to project's WEB-INF/lib folder.
 

Uses of URLPath in oracle.jdeveloper.library
 

Methods in oracle.jdeveloper.library that return URLPath
 URLPath LegacyLibraryDefinition.getClassPath()
           
 URLPath LegacyJDK.getClassPath()
           
 URLPath LegacyLibrary.getClassPath()
           
 URLPath AddinLibrary.getClassPath()
           
 URLPath ProjectLibrary.getClassPath()
           
 URLPath AddinJDK.getClassPath()
           
 URLPath JPaths.getClassPath()
           
 URLPath LibraryAdapter.getClassPath()
           
 URLPath ExternalLibrary.getClassPath()
           
 URLPath ProjectLibrary.getClassPath(boolean onlyDeployLibs)
           
 URLPath Library.getDefaultClassPath()
          Deprecated. use getClassPath()
 URLPath AbstractLibrary.getDefaultClassPath()
          Deprecated. use getClassPath()
 URLPath LibraryAdapter.getDefaultClassPath()
          Deprecated. use getClassPath()
 URLPath ExternalLibrary.getDefaultClassPath()
          Deprecated. use getClassPath
 URLPath Library.getDefaultDocPath()
          Deprecated. use getDocPath()
 URLPath AbstractLibrary.getDefaultDocPath()
          Deprecated. use getDocPath()
 URLPath LibraryAdapter.getDefaultDocPath()
          Deprecated. use getDocPath()
 URLPath ExternalLibrary.getDefaultDocPath()
          Deprecated. use getDocPath
 URLPath Library.getDefaultSourcePath()
          Deprecated. use getSourcePath()
 URLPath AbstractLibrary.getDefaultSourcePath()
          Deprecated. use getSourcePath()
 URLPath LibraryAdapter.getDefaultSourcePath()
          Deprecated. use getSourcePath()
 URLPath ExternalLibrary.getDefaultSourcePath()
          Deprecated. use getSourcePath
 URLPath LegacyLibraryDefinition.getDocPath()
           
 URLPath LegacyJDK.getDocPath()
           
 URLPath LegacyLibrary.getDocPath()
           
 URLPath AddinLibrary.getDocPath()
           
 URLPath ProjectLibrary.getDocPath()
           
 URLPath AddinJDK.getDocPath()
           
 URLPath JPaths.getDocPath()
           
 URLPath LibraryAdapter.getDocPath()
           
 URLPath ExternalLibrary.getDocPath()
           
 URLPath LegacyLibraryDefinition.getSourcePath()
           
 URLPath LegacyJDK.getSourcePath()
           
 URLPath LegacyLibrary.getSourcePath()
           
 URLPath AddinLibrary.getSourcePath()
           
 URLPath ProjectLibrary.getSourcePath()
           
 URLPath AddinJDK.getSourcePath()
           
 URLPath JPaths.getSourcePath()
           
 URLPath LibraryAdapter.getSourcePath()
           
 URLPath ExternalLibrary.getSourcePath()
           
 

Methods in oracle.jdeveloper.library with parameters of type URLPath
 JDK AddinLibraryList.loadJDK(java.lang.String name, URLPath clsPath, URLPath srcPath, URLPath docPath, java.net.URL exeURL, VersionNumber version, java.net.URL sdkBinDir)
          Deprecated. since 11.1.1.0.0. This method should be called only by the internal implementation of JLibraryManager, and is not intended for general use.
 JLibrary AddinLibraryList.loadLibrary(java.lang.String name, URLPath clsPath, URLPath srcPath, URLPath docPath, java.lang.Boolean isDeployed)
          Deprecated. since 11.1.1.0.0 use AddinLibraryList.registerLibrary(AddinLibrary).
 void LegacyLibraryDefinition.setClassPath(URLPath path)
           
 void LegacyJDK.setClassPath(URLPath path)
           
 void AddinLibrary.setClassPath(URLPath clsPath)
           
 void AbstractLibrary.setClassPath(URLPath clsPath)
           
 void JPaths.setClassPath(URLPath path)
           
 void LibraryAdapter.setClassPath(URLPath path)
           
 void ExternalLibrary.setClassPath(URLPath path)
           
 void AddinLibrary.setDefaultClassPath(URLPath clsPath)
          Deprecated.  
 void Library.setDefaultClassPath(URLPath clsPath)
          Deprecated. use setClassPath(URLPath)
 void AbstractLibrary.setDefaultClassPath(URLPath clsPath)
          Deprecated. use setClassPath(URLPath)
 void LibraryAdapter.setDefaultClassPath(URLPath path)
          Deprecated. use setClassPath(URLPath)
 void ExternalLibrary.setDefaultClassPath(URLPath clsPath)
          Deprecated. use setClassPath
 void AddinLibrary.setDefaultDocPath(URLPath docPath)
          Deprecated.  
 void Library.setDefaultDocPath(URLPath docPath)
          Deprecated. use setDocPath(URLPath)
 void AbstractLibrary.setDefaultDocPath(URLPath docPath)
          Deprecated. use setDocPath(URLPath)
 void LibraryAdapter.setDefaultDocPath(URLPath path)
          Deprecated. use setDocPath(URLPath)
 void ExternalLibrary.setDefaultDocPath(URLPath docPath)
          Deprecated. use setDocPath
 void AddinLibrary.setDefaultSourcePath(URLPath srcPath)
          Deprecated.  
 void Library.setDefaultSourcePath(URLPath srcPath)
          Deprecated. use setSourcePath(URLPath)
 void AbstractLibrary.setDefaultSourcePath(URLPath srcPath)
          Deprecated. use setSourcePath(URLPath)
 void LibraryAdapter.setDefaultSourcePath(URLPath path)
          Deprecated. use setSourcePath(URLPath)
 void ExternalLibrary.setDefaultSourcePath(URLPath srcPath)
          Deprecated. use setSourcePath
 void LegacyLibraryDefinition.setDocPath(URLPath path)
           
 void LegacyJDK.setDocPath(URLPath path)
           
 void AddinLibrary.setDocPath(URLPath docPath)
           
 void AbstractLibrary.setDocPath(URLPath docPath)
           
 void JPaths.setDocPath(URLPath docPath)
           
 void LibraryAdapter.setDocPath(URLPath path)
           
 void ExternalLibrary.setDocPath(URLPath path)
           
 void LegacyLibraryDefinition.setSourcePath(URLPath path)
           
 void LegacyJDK.setSourcePath(URLPath path)
           
 void AddinLibrary.setSourcePath(URLPath srcPath)
           
 void AbstractLibrary.setSourcePath(URLPath srcPath)
           
 void JPaths.setSourcePath(URLPath sourcePath)
           
 void LibraryAdapter.setSourcePath(URLPath path)
           
 void ExternalLibrary.setSourcePath(URLPath path)
           
 void DynamicLibraryProvider.updateClassPath(Project project, URLPath classPath)
          Is called when we are building the classpath for a project.
 

Constructors in oracle.jdeveloper.library with parameters of type URLPath
AddinJDK(java.lang.String name, URLPath clsPath, URLPath srcPath, URLPath docPath, java.net.URL exeURL, VersionNumber version, java.net.URL sdkBinDir)
           
AddinLibrary(java.lang.String name, URLPath clsPath, URLPath srcPath, URLPath docPath, java.lang.Boolean deployed)
           
 

Uses of URLPath in oracle.jdeveloper.model
 

Fields in oracle.jdeveloper.model declared as URLPath
protected  URLPath LibraryModel.clsPath
           
protected  URLPath LibraryModel.docPath
           
protected  URLPath LibraryModel.srcPath
           
 

Methods in oracle.jdeveloper.model that return URLPath
 URLPath PathsConfiguration.getClassPath()
           
 URLPath PathsConfiguration.getDocPath()
           
 URLPath PathsConfiguration.getProjectSourcePath()
           
 URLPath PathsConfiguration.getRunClassPath()
           
 URLPath PathsConfiguration.getRunClassPath(boolean onlyDeployLibs)
           
 URLPath PathsConfiguration.getSourcePath()
           
 URLPath ContentSetPanel.getURLPath()
          Returns a copy of the path given by the list of urls displayed in this panel.
 

Methods in oracle.jdeveloper.model with parameters of type URLPath
 void LibraryModel.setClassPath(URLPath path)
           
 void LibraryModel.setDocPath(URLPath path)
           
 boolean PathsConfiguration.setProjectSourcePath(URLPath urlPath)
           
 void LibraryModel.setSourcePath(URLPath path)
           
 

Uses of URLPath in oracle.jdeveloper.uieditor
 

Methods in oracle.jdeveloper.uieditor that return URLPath
static URLPath UIManager.getProxyPath(java.lang.String clsName)
          Get the classpath in which the proxy class associated with a given original class name can be found.
 

Methods in oracle.jdeveloper.uieditor with parameters of type URLPath
static void UIManager.registerConcreteProxy(java.lang.String clsName, java.lang.String proxyName, URLPath proxyPath)
           
 

Uses of URLPath in oracle.jdeveloper.vcs.changelist
 

Methods in oracle.jdeveloper.vcs.changelist that return URLPath
 URLPath ChangeListProjectContent.getBaseURLPath()
           
 

Uses of URLPath in oracle.jdeveloper.webapp.utils
 

Methods in oracle.jdeveloper.webapp.utils that return URLPath
static URLPath ProjectRunClassPathClassLoaderUtils.getExpandedRunClassPath(Project project)
          Returns (a copy of) the cached expanded URLPath dsecribing the Run ClassPath for the given Project
 


Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.7.0)

E13403-08

Copyright © 1997, 2013, Oracle. All rights reserved.