Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.3.0)

E17493-04


Uses of Class
oracle.ide.model.Project

Packages that use Project
oracle.ide Contains classes that allow addins access to the IDE integration objects. 
oracle.ide.ceditor The Code Editor package contains the code editing implementation of the JDeveloper IDE. 
oracle.ide.cmd Contains classes implementing several JDeveloper commands. 
oracle.ide.compiler Contains classes that allow addins some level of control on the IDE build system. 
oracle.ide.dependency Provides information about the dependencies between files in an application. 
oracle.ide.dependency.index Provides the ability to store and retrieve dependency information using the index. 
oracle.ide.dialogs.filter   
oracle.ide.explorer Contains the interfaces and classes addins use to provide a structured view of data contained in nodes displayed in a navigator or an editor. 
oracle.ide.externaltools Contains interfaces and classes that allow external tools in the IDE to be invoked, manipulated and extended by extensions. 
oracle.ide.file Classes and interfaces used to track changes to files. 
oracle.ide.index Classes used to build and query indexes of source files. 
oracle.ide.index.file Contains file table interfaces used for indexing. 
oracle.ide.layout Contains interfaces and classes addins can implement or extend to provide preferred layouts for their own specialized editors. 
oracle.ide.model Contains interfaces and classes implementing JDeveloper's data model. 
oracle.ide.model.panels   
oracle.ide.persistence Contains API classes for the persistence of search indexes. 
oracle.ide.resourcebundle Provides a designtime abstraction around locating and managing resource bundles used by visual and non-visual editors. 
oracle.ide.runner Contains classes that allow addins some level of control on the IDE runner system. 
oracle.ide.task.locking   
oracle.jdeveloper.appoverview   
oracle.jdeveloper.audit.analyzer The base classes for writing analyzers. 
oracle.jdeveloper.audit.model The base classes for defining the Audit object model. 
oracle.jdeveloper.audit.service The API classes for invoking Audit programatically, and a few Audit common API classes. 
oracle.jdeveloper.audit.transform The base classes for defining transformations on the Audit object model. 
oracle.jdeveloper.controller   
oracle.jdeveloper.file   
oracle.jdeveloper.java.dependency Provides dependency information for Java. 
oracle.jdeveloper.jsp.libraries   
oracle.jdeveloper.jsp.utils   
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.offlinedb Database API extension for saving database object definitions in XML files. 
oracle.jdeveloper.offlinedb.model Classes that define an offline database's settings and properties. 
oracle.jdeveloper.offlinedb.wizard Wizard and dialogs that can used when working with the offline database. 
oracle.jdeveloper.runner Contains classes that allow addins some level of control on the JDeveloper runner system. 
oracle.jdeveloper.vcs.changelist   
oracle.jdeveloper.vcs.spi Contains extension-level service provider interfaces for version control system integraton. 
oracle.jdeveloper.vcs.util Contains assorted stateless utilities for version control system integraton. 
oracle.jdeveloper.webapp.build   
oracle.jdeveloper.webapp.design   
oracle.jdeveloper.webapp.facelets   
oracle.jdeveloper.webapp.libraries   
oracle.jdeveloper.webapp.utils   
oracle.jdevimpl.audit.core   
oracle.jdevimpl.audit.model   

 

Uses of Project in oracle.ide

 

Methods in oracle.ide that return Project
static Project Ide.getActiveProject()
          Returns the currently active Project.
static Project Ide.getDefaultProject()
          Gets the default project node
 Project Context.getProject()
          Provides a reference to the Project data associated with this Context.

 

Methods in oracle.ide with parameters of type Project
static void Ide.setActiveProject(Project project)
          Sets the active project
static void IdeCore.setActiveProjectOverride(Project project)
          Sets the overridden value of the active workspace.
 void Context.setProject(Project project)
          Set a reference to the Project data associated with this Context.

 

Constructors in oracle.ide with parameters of type Project
Context(View view, Workspace workspace, Project project, Node node)
          Constructor.
Context(Workspace workspace, Project project)
          Constructor.

 

Uses of Project in oracle.ide.ceditor

 

Methods in oracle.ide.ceditor with parameters of type Project
static boolean Editors.editNode(Workspace workspace, Project project, Node node, int offset, int length, boolean spanLines)
          Open a editor for a specified node.

 

Constructors in oracle.ide.ceditor with parameters of type Project
UndoableEditCommand(java.lang.String name, TextNode node, Project project, Workspace workspace)
          Creates an undoable edit wrapper command without an IDE context that manages the initial selection.
UndoableEditCommand(java.lang.String name, TextNode node, Project project, Workspace workspace, boolean initialSelection)
          Creates an undoable edit wrapper command without an IDE context.
UndoableEditCommand(java.lang.String name, TextNode node, Project project, Workspace workspace, int selectionStart, int selectionEnd)
          Constructor callable from threads other than the event thread.

 

Uses of Project in oracle.ide.cmd

 

Methods in oracle.ide.cmd that return Project
static Project NewWorkspaceCommand.createProject(Context context, Workspace workspace)
          Provides the UI for creating a project in the given workspace

 

Methods in oracle.ide.cmd with parameters of type Project
static void AddContentCommand.addToProject(Node[] nodes, Project project, java.lang.String contentSetKey)
          Deprecated. Use add(Node, String) or add(Node[], String)
static void AddContentCommand.addToProject(Node node, Project project, java.lang.String contentSetKey)
          Deprecated. Use add(Node, String) or add(Node[], String)

 

Uses of Project in oracle.ide.compiler

 

Methods in oracle.ide.compiler with parameters of type Project
 void CopyListener.initialize(Project project)
          This method allows the listener implementation to initialize any data that will be used by every single call to handleCopy().

 

Uses of Project in oracle.ide.dependency

 

Methods in oracle.ide.dependency that return Project
 Project SourceReference.getProject()
          Get the project containing the source file this reference appears in.
 Project SourceDeclaration.getProject()
          Get the project containing the source file this declaration appears in.

 

Methods in oracle.ide.dependency that return types with arguments of type Project
 java.util.Collection<Project> Scope.getProjects()
          Get the set of projects that are in scope.

 

Methods in oracle.ide.dependency with parameters of type Project
 boolean Scope.isIncluded(Project project, ContentSet content, java.net.URL url)
          Determine whether a URL in included in this scope.
 boolean Scope.isIncluded(Project project, java.lang.String relativePath)
          Determine whether a relative path is included in this scope.
 boolean Scope.isIncluded(Project project, java.net.URL url)
          Determine whether a URL in included in this scope.
static void SourceUtils.openSourceFile(Workspace workspace, Project project, java.net.URL url)
          Open a source file in the code editor.
static void SourceUtils.openSourceFile(Workspace workspace, Project project, java.net.URL url, int startOffset, int endOffset)
          Open a source file in the code editor.

 

Constructors in oracle.ide.dependency with parameters of type Project
Scope(Project project)
           
Scope(Project project, java.net.URL url)
           

 

Uses of Project in oracle.ide.dependency.index

 

Methods in oracle.ide.dependency.index that return Project
 Project IndexReference.getProject()
           
 Project IndexDeclaration.getProject()
           

 

Methods in oracle.ide.dependency.index with parameters of type Project
protected  ContentSet IndexReferenceProvider.getContentSet(Context context, Project project, Declaration declaration)
          Get the content set that should be searched for references to a declaration.

 

Constructors in oracle.ide.dependency.index with parameters of type Project
IndexDeclaration(java.lang.String id, Workspace workspace, Project project, java.net.URL url, int startOffset, int endOffset)
           
IndexReference(Workspace workspace, Project project, java.net.URL url, int startOffset, int endOffset)
           

 

Uses of Project in oracle.ide.dialogs.filter

 

Methods in oracle.ide.dialogs.filter with parameters of type Project
 void DirectoryOptionsPanel.setProject(Project project)
          Deprecated. Sets the project so that we can prevent display of files that already exist in the project.

 

Uses of Project in oracle.ide.explorer

 

Fields in oracle.ide.explorer declared as Project
protected  Project Explorer.defaultProject
           

 

Uses of Project in oracle.ide.externaltools

 

Methods in oracle.ide.externaltools that return Project
static Project ContextUtils.getProject(Context ctx)
           

 

Uses of Project in oracle.ide.file

 

Methods in oracle.ide.file that return Project
 Project ContentSetScope.getProject()
          Get the project for this scope, or null if the scope is not associated with a project.
 Project ContentSetRoot.getProject()
          Get the project for this root, or null if this root is not associated with a project.
protected  Project ProjectCache.loadProject(Project project)
          Gets the project in order to load it.

 

Methods in oracle.ide.file that return types with arguments of type Project
 java.util.Collection<Project> ProjectCache.getDirectDependencies(Project project)
          Get the projects that a project directly depends on.
 java.util.Collection<Project> ProjectCache.getDownstreamDependencies(Project project)
          Get the downstream dependencies of a project.
 java.util.Collection<Project> ProjectCache.getTransitiveDependencies(Project project)
          Get the transitive closure of the projects a project depends on.

 

Methods in oracle.ide.file with parameters of type Project
 Path ProjectCache.getContentPath(Project project)
          Get the project content path.
 Path ProjectCache.getContentPath(Project project, java.lang.String contentSetKey)
          Get the project content path for a specific content set.
static java.util.Collection<ContentSetRoot> ContentSetRoot.getContentSetRoots(Project project)
          Get the content set roots for a project.
static java.util.Collection<ContentSetRoot> ContentSetRoot.getContentSetRoots(Project project, ContentSet contentSet)
          Get the content set roots for a specific content set of a project.
static java.util.Collection<ContentSetRoot> ContentSetRoot.getContentSetRootsContaining(Project project, java.net.URL url)
          Returns the content set roots in the project that contain a specific URL.
 java.util.Collection<Project> ProjectCache.getDirectDependencies(Project project)
          Get the projects that a project directly depends on.
 java.util.Collection<Project> ProjectCache.getDownstreamDependencies(Project project)
          Get the downstream dependencies of a project.
static ContentSetRoot ContentSetRoot.getInstance(Project project, FileSet fileSet)
           
static ContentSetScope ContentSetScope.getInstance(Workspace workspace, Project project)
          Get an instance of this class for the entire project content.
static ContentSetScope ContentSetScope.getInstance(Workspace workspace, Project project, java.lang.String contentSetKey)
          Get an instance of this class for a specific content set in a project.
protected  LibraryPaths ProjectCache.getLibraryPaths(Project project, java.lang.String key)
          Get library paths from the cache.
protected  java.util.List<LibraryPaths> ProjectCache.getLibraryPathsList(Project project, java.lang.String key)
          Get a list of library paths from the cache.
protected  Path ProjectCache.getPath(Project project, java.lang.String key)
          Get a path from the cache.
 java.lang.String[] ProjectCache.getTechnologyScopeKeys(Project project)
          Get the technology scope keys used by a project.
 java.util.Collection<Project> ProjectCache.getTransitiveDependencies(Project project)
          Get the transitive closure of the projects a project depends on.
static void ProjectCache.invalidate(Project project)
          Invalidate the project cache for a specific project.
protected  Project ProjectCache.loadProject(Project project)
          Gets the project in order to load it.
protected  void ProjectCache.putLibraryPaths(Project project, java.lang.String key, LibraryPaths libraryPaths)
          Put library paths into the cache.
protected  void ProjectCache.putLibraryPathsList(Project project, java.lang.String key, java.util.List<LibraryPaths> libraryPathsList)
          Put a list of library paths into the cache.
protected  void ProjectCache.putPath(Project project, java.lang.String key, Path path)
          Put a path in the cache.

 

Method parameters in oracle.ide.file with type arguments of type Project
static void ProjectCache.invalidate(java.util.Collection<Project> projects)
          Invalidate the project cache for a set of projects.

 

Uses of Project in oracle.ide.index

 

Methods in oracle.ide.index that return Project
 Project IndexingContext.getProject()
          Get the project being indexed.

 

Methods in oracle.ide.index with parameters of type Project
abstract  Index IndexManager.getIndex(Project project)
          Deprecated. Use IndexManager.getIndex(Workspace,Project).
abstract  Index IndexManager.getIndex(Project project, ContentSet content)
          Deprecated. Use IndexManager.getIndex(Workspace,Project,ContentSet).
abstract  Index IndexManager.getIndex(Project project, java.net.URL url)
          Deprecated. Use IndexManager.getIndex(Workspace,Project,URL).
abstract  Index IndexManager.getIndex(Project project, URLPath path)
          Deprecated. Use IndexManager.getIndex(Workspace,Project,URLPath).
abstract  Index IndexManager.getIndex(Workspace workspace, Project project)
          Get the index for the given project.
abstract  Index IndexManager.getIndex(Workspace workspace, Project project, ContentSet content)
          Get the index for the given ContentSet in the scope of the given project.
abstract  Index IndexManager.getIndex(Workspace workspace, Project project, FileSet fileSet)
          Get the index for the given FileSet in the scope of the given project.
abstract  Index IndexManager.getIndex(Workspace workspace, Project project, Path path)
          Get the index for the given Path in the scope of the given project.
abstract  Index IndexManager.getIndex(Workspace workspace, Project project, java.net.URL url)
          Get the index for the given URL in the scope of the given project.
abstract  Index IndexManager.getIndex(Workspace workspace, Project project, URLPath path)
          Get the index for the given URLPath in the scope of the given project.

 

Uses of Project in oracle.ide.index.file

 

Methods in oracle.ide.index.file with parameters of type Project
abstract  void FileChangeManager.addFileChangeListener(Workspace workspace, Project project, FileChangeListener listener)
          Deprecated. Add a FileChangeListener for the given workspace and project.
 void FileChangeListener.filesChanged(Workspace workspace, Project project, java.util.Collection<FileChange> changes)
          Deprecated. One or more files have changed.
 FileTable FileTableManager.getFileTable(Project project, java.net.URL root)
          Deprecated. Get a file table for the given root directory.
abstract  FileTable FileTableManager.getFileTable(Project project, java.net.URL root, PatternFilters filters)
          Deprecated. Get a file table for the given root directory.
abstract  void FileChangeManager.removeFileChangeListener(Workspace workspace, Project project, FileChangeListener listener)
          Deprecated. Remove a FileChangeListener for the given workspace and project.

 

Uses of Project in oracle.ide.layout

 

Methods in oracle.ide.layout that return Project
static Project AbstractLayoutListener.getProject(java.lang.String viewId, Layout layout)
           

 

Uses of Project in oracle.ide.model

 

Methods in oracle.ide.model that return Project
 Project Workspace.currentActiveProject()
          Returns the currently active Project associated with this Workspace.
 Project Workspace.getActiveProject()
           
 Project Preferences.getDefaultProject()
          Deprecated. Returns the default project.
 Project ProjectChangeEvent.getProject()
           

 

Methods in oracle.ide.model that return types with arguments of type Project
 java.util.Collection<Project> Workspace.projects()
          Returns a collection of Project instances which are children of this Workspace.
 java.util.Map<Project,java.util.concurrent.ConcurrentLinkedQueue<java.net.URL>> TechnologyScopeDetector.technologyScopesOfProjectBatch(Workspace workspace, java.util.Collection<Project> project)
           
 java.util.Map<Project,java.util.concurrent.ConcurrentLinkedQueue<java.net.URL>> TechnologyScopeManager.NullDetector.technologyScopesOfProjectBatch(Workspace workspace, java.util.Collection<Project> project)
           

 

Methods in oracle.ide.model with parameters of type Project
static boolean OwnerMap.addToOwnerMap(Project project, Node node, Node ownerContainer)
          Deprecated. Adds the specified node to the project, making ownerContainer the owner of the node.
 boolean ContentSetProvider.canExtendURLPath(Project project)
          Returns true if the ContentSetProvider allows a URL to be added to the ContentSet's URLPath in the given Project context.
abstract  Element ElementRecognizer.create(java.net.URL url, Project project)
          Creates an instance of the design-time node associated with the specified url.
 java.util.Collection<java.lang.String> TechnologyScopeDetector.detectTechnologyScopeIds(Workspace workspace, Project project)
          Given a project, scans and finds the technology scopes relevant to the project
 java.util.Collection<java.lang.String> TechnologyScopeManager.NullDetector.detectTechnologyScopeIds(Workspace workspace, Project project)
           
 java.util.Collection<java.lang.String> TechnologyScopeDetector.detectTechnologyScopeIdsOfProjectChanges(Workspace workspace, Project project)
          Given a workspace and a project, return the set of technology scope id that the project must add to initialize the proper features.
 java.util.Collection<java.lang.String> TechnologyScopeManager.NullDetector.detectTechnologyScopeIdsOfProjectChanges(Workspace workspace, Project project)
           
 java.util.Collection<java.lang.String> TechnologyScopeDetector.detectTechnologyScopeIdsOfURL(Project project, java.net.URL url)
          Given a workspace and a project, returns the set of technology scope ids that the project must have.
 java.util.Collection<java.lang.String> TechnologyScopeManager.NullDetector.detectTechnologyScopeIdsOfURL(Project project, java.net.URL url)
           
 PatternFilters WorkingSet.excludeChildren(Project project, java.util.List<java.net.URL> children)
          Hides each of the supplied URLs in the working set.
 boolean WorkingSet.excludeProject(Project project)
          Adds the project to the list of exluded projects, hiding the project in the working set.
static Element ElementFactory.findOrCreate(java.net.URL url, Project project)
          Returns an Element associated with the identifier.
static PatternFilters WorkingSet.getCurrentWorkingSetFilters(Project project)
          Deprecated. Use WorkingSets.getInstance(Workspace) .getCurrentWorkingSet() .getPatternFilters(Project)
static WorkingSets WorkingSets.getInstance(Project project)
          Deprecated. Since 11.0. Working sets are now stored at the application level, not at the project level, so use WorkingSets.getInstance(Workspace).
static OwnerMap OwnerMap.getInstance(Project project)
          Deprecated.  
static DependencyConfiguration DependencyConfiguration.getInstance(Project project)
           
 PatternFilters WorkingSet.getOrCreatePatternFilters(Project project)
          Gets the working set pattern filters for the supplied project; if none exists, they are created.
 PatternFilters WorkingSet.getPatternFilters(Project project)
          Gets the working set pattern filters that apply to the supplied project.
 PatternFilters WorkingSet.includeChildren(Project project, java.util.List<java.net.URL> children, boolean addChildrenExclusively)
          Makes each of the supplied URLs visible in the working set.
 boolean WorkingSet.includeProject(Project project)
          Adds the project to the list of projects that are visible in the working set.
static void ProjectContent.initializeContentSets(Project project)
           
 boolean WorkingSet.isExcluded(Project project)
          Indicates whether or not the project is hidden from this working set.
 boolean WorkingSet.isIncluded(Project project)
          Indicates whether or not the project is visible in this working set.
 void ProjectChangeListener.projectClosed(Project project)
           
 void ProjectChangeListener.projectCopied(Project original, Project copy)
           
 void ProjectChangeListener.projectOpened(Project project)
           
 java.util.Collection<java.lang.String> TechnologyScopeManager.Scanner.scanForNewTechnologies(java.util.Collection<java.net.URL> roots, Project project)
           
 void Workspace.setActiveProject(Project activeProject)
          Set the active project.

 

Method parameters in oracle.ide.model with type arguments of type Project
static WorkingSet WorkingSets.getOrCreateWorkingSet(Workspace workspace, java.lang.String name, java.util.List<Project> includeProjects, java.util.Map<java.net.URL,java.util.List<java.net.URL>> projectUrlToFileUrls)
          Gets or creates a working set with the name given.
 java.util.Map<Project,java.util.concurrent.ConcurrentLinkedQueue<java.net.URL>> TechnologyScopeDetector.technologyScopesOfProjectBatch(Workspace workspace, java.util.Collection<Project> project)
           
 java.util.Map<Project,java.util.concurrent.ConcurrentLinkedQueue<java.net.URL>> TechnologyScopeManager.NullDetector.technologyScopesOfProjectBatch(Workspace workspace, java.util.Collection<Project> project)
           

 

Uses of Project in oracle.ide.model.panels

 

Methods in oracle.ide.model.panels that return Project
protected static Project ProjectSettingsTraversablePanel.getProject(Namespace data)
          Returns the current Project in the Namespace.

 

Methods in oracle.ide.model.panels with parameters of type Project
 java.util.Collection<java.lang.String> ProgressBarTechnologyScanner.scanForNewTechnologies(java.util.Collection<java.net.URL> roots, Project project)
           
static void ProjectPropertiesDialog.showDialog(Context context, java.awt.Frame parent, Project project, java.lang.String[] selectionPath)
          Opens the Project Properties dialog for editing the specified Project , using the specified Frame as the parent and setting the dialog's initially selected panel to the one specified by the selectionPath.
static void ProjectPropertiesDialog.showDialog(Context context, Project project)
          Opens the Project Properties dialog for editing the specified Project, using the IDE's main window as the parent frame.
static void ProjectPropertiesDialog.showDialog(java.awt.Frame parent, Project project, java.lang.String[] selectionPath)
          Deprecated. since 11.0. Use ProjectPropertiesDialog.showDialog(Context,Frame,Project,String[]).
static void ProjectPropertiesDialog.showDialog(Project project)
          Deprecated. since 11.0. Use ProjectPropertiesDialog.showDialog(Context,Project).

 

Uses of Project in oracle.ide.persistence

 

Methods in oracle.ide.persistence with parameters of type Project
static Storage Storages.getProjectStorage(Project project)
          Deprecated. Use Storages.getProjectStorage(Workspace,Project)
static Storage Storages.getProjectStorage(Workspace workspace, Project project)
          Get a storage instance for a project.

 

Uses of Project in oracle.ide.resourcebundle

 

Methods in oracle.ide.resourcebundle with parameters of type Project
abstract  boolean AbstractBundleSelectionValidator.jarExistsInProject(java.net.URL url, Project proj)
           
 void ResourceBundleOptionsPanel.setProject(Project project)
           
 void ResourceBundlePropertyEditor.setProject(Project project)
          Sets the project for the property editor.
static boolean ResourceBundlePropertyEditor.useResourceBundlePropertyEditor(Project project)
          Determines if the ResourceBundlePropertyEditor should be used based on whether the project has auto-synchronization for resource bundles turned on.

 

Uses of Project in oracle.ide.runner

 

Methods in oracle.ide.runner that return Project
 Project RunLogPage.getProject()
          Returns the Project associated with this log page.
 Project RunProcess.getProject()
          Returns the Project associated with the RunProcess.
static Project RunProcess.getProject(Context context)
           

 

Methods in oracle.ide.runner with parameters of type Project
 boolean StarterFactoryDescription.areRulesSatisfied(Project project, Node node)
          Determine if the rules, if any, of the StarterFactory registration are satisfied by the incoming project to be run/debugged.
 boolean DebuggerExtender.canCreateCustomBreakpoint(java.lang.String customBreakpointType, Workspace workspace, Project project)
          Called by the debugger to ask the DebuggerExtender if new breakpoints of a certain type can be created for the incoming workspace and project
 java.lang.String RunProcess.canGetStarterForTarget(Project project, Node node, java.lang.Class starterFactorySubClass, java.util.List errors)
          Tests whether the given node is runnable in the context of the project and the required StarterFactory.
abstract  AbstractStarterFactory[] Runner.getRegisteredStarterFactories(Project project, Node targetNode, java.lang.Class starterFactoryClass)
          Returns an array of StarterFactories that have been registered for the class of the Node (exactly), and that are instanceof the specified StarterFactory class.
abstract  Navigable[] Runner.getRunConfigurationLaunchNavigables(Project project)
           
abstract  Navigable[] Runner.getRunConfigurationToolNavigables(Project project)
           
protected  RunnableItem[] RunProcess.getRunnableItemsForTarget(Project project, Node node, java.lang.Class starterFactorySubClass)
          Given a Project, Node and StarterFactory class, find all the RunnableItems that can be used to run the Node
abstract  AbstractStarterFactory[] Runner.getStarterFactoriesForTarget(Project project, Node targetNode, java.lang.Class starterFactoryClass)
          Returns an array of StarterFactories that have been registered for the class of the Node or one of its super classes, and that are instanceof the specified StarterFactory class.
protected  Starter RunProcess.getStarterForTarget(Project project, Node node, java.lang.Class starterFactorySubClass)
          Tests whether the given node is runnable and returns the starter that can start the process.
 boolean StarterFactoryDescription.isAcceptableNode(Project project, Node node)
          Determine if the Node of the target that needs to be started is acceptable.
 boolean StarterFactoryDescription.isAcceptableProject(Project project)
          Determine if the project of the target that needs to be started is acceptable.
abstract  boolean Runner.isRunning(Project project)
          This methods checks if any application in the specified project are running.
abstract  java.net.URL Debugger.parseStackTraceLine(Workspace workspace, Project project, java.lang.String stackTraceLine)
           
abstract  void Debugger.redefineClasses(Project project, java.util.Map nameToGuts)
          Tells the debugger to redefine some classes that have been recompiled.
abstract  boolean Debugger.showSourceFileForStackTraceLine(Workspace workspace, Project project, java.lang.String stackTraceLine)
           
abstract  boolean Debugger.showSourceFileForStackTraceLine(Workspace workspace, Project project, java.net.URL urlWithLine)
           
abstract  boolean Runner.terminate(Project project, boolean force)
          This methods requests the runner to terminate all processe running under the specified project.

 

Uses of Project in oracle.ide.task.locking

 

Constructors in oracle.ide.task.locking with parameters of type Project
ProjectLock(Workspace w, Project p)
          No references to Workspace or Project will be stored, only the URLs will be retained.
ResourceLock(Workspace workspace, Project project, Node n)
          Note that the Workspace and Project in which the resource resides are required, although only the resource itself will be locked.

 

Uses of Project in oracle.jdeveloper.appoverview

 

Methods in oracle.jdeveloper.appoverview with parameters of type Project
 boolean JavaCategoryDataProvider.accept(Project project, java.net.URL url)
           

 

Uses of Project in oracle.jdeveloper.audit.analyzer

 

Methods in oracle.jdeveloper.audit.analyzer that return Project
 Project AuditContext.getProject()
          Gets the project currently being traversed, or null if the root or a workspace is currently being traversed.

 

Methods in oracle.jdeveloper.audit.analyzer with parameters of type Project
<T extends ModelAdapter>
ModelAdapter
AuditContext.getModel(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
          Gets the model adapter for the model corresponding to a workspace, project, and url.
<T extends ModelAdapter>
ModelAdapter
AuditTaskContext.getModelAdapter(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
          Gets the adapter for the model corresponding to a workspace, project, and url.
<T extends ModelAdapter>
ModelAdapter
AuditContext.getModelAdapter(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
          Deprecated. Use AuditContext.getModel(Class, URL, Project, Workspace)

 

Uses of Project in oracle.jdeveloper.audit.model

 

Methods in oracle.jdeveloper.audit.model that return Project
 Project ModelAdapter.getProject()
          Gets the project containing this model.
 Project FileDependency.getProject()
          Gets the project target of this dependency.
 Project Location.getProject()
          Gets the project containing this location.

 

Methods in oracle.jdeveloper.audit.model with parameters of type Project
static void DependencyFileChangeListener.addDependency(Dependency dependency, java.util.Collection<java.lang.String> names, Project project, Workspace workspace)
           
static void DependencyFileChangeListener.addDependency(Dependency dependency, java.lang.String name, Project project, Workspace workspace)
           
static void DependencyFileChangeListener.addDependency(Dependency dependency, java.net.URL file, Project project, Workspace workspace)
           
static void DependencyFileChangeListener.filesChanged(java.util.Collection<java.net.URL> files, Project project, Workspace workspace)
           
 ContentCache ModelFactory.getContentSetCache(Project project, Workspace workspace)
          Gets the ContentCache for a project and workspace.
<T extends ModelAdapter>
ModelAdapter
ModelFactory.getModelAdapter(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
          Gets the model adapter of a type corresponding to a URL, or null if none.
 java.util.Collection<ModelAdapter> ModelFactory.getModelAdapters(Element element, java.net.URL url, Project project, Workspace workspace)
          Gets the models corresponding to an Element or URL.
 void ContentRootFactory.getProjectRoots(Workspace workspace, Project project, IntersectedFilters filters, IntersectedFilters workingSetFilters, java.util.Collection<ContentRoot> roots)
          Gets content roots for a project.
 boolean ModelType.isAuditable(Element element, ContentDirectory directory, Project project, Workspace workspace)
          Gets whether a root element is auditable in the context of a directory, project, and workspace.
static void DependencyFileChangeListener.removeDependency(Dependency dependency, java.util.Collection<java.lang.String> names, Project project, Workspace workspace)
           
static void DependencyFileChangeListener.removeDependency(Dependency dependency, java.lang.String name, Project project, Workspace workspace)
           
static void DependencyFileChangeListener.removeDependency(Dependency dependency, java.net.URL file, Project project, Workspace workspace)
           

 

Constructors in oracle.jdeveloper.audit.model with parameters of type Project
ContainerModelAdapter(ModelFactory factory, ModelType type, ContainerModelAdapter workspace, Project project)
           
DependencyFileChangeListener(Project project, Workspace workspace)
           
FileDependency(java.net.URL file, Project project, Workspace workspace)
          Creates a file dependency on a file.
ModelAdapter(ModelFactory factory, ModelType type, ContainerModelAdapter workspace, Project project)
          Creates a model adapter that adapts a @link oracle.ide.model.Project Project} node.

 

Uses of Project in oracle.jdeveloper.audit.service

 

Methods in oracle.jdeveloper.audit.service with parameters of type Project
abstract  boolean Auditor.addConstruct(java.lang.Object construct, java.net.URL file, Project project, Workspace workspace)
          Adds the location corresponding to a construct to the set of locations to be audited.
abstract  boolean Auditor.addElement(Element element, Node node, Project project, Workspace workspace)
          Adds the location corresponding to an Element to the set of locations to be audited.
abstract  boolean Auditor.addElements(Element[] elements, Node node, Project project, Workspace workspace)
          Adds the locations corresponding to an array of Elements in a Node to the set of locations to be audited.
abstract  boolean Auditor.addNode(Node node, Project project, Workspace workspace)
          Adds the location corresponding to a Node to the set of locations to be audited.
abstract  boolean Auditor.addUrl(java.net.URL url, Project project, Workspace workspace)
          Adds the location corresponding to a URL to the set of locations to be audited.
abstract  boolean Auditor.isAuditable(Element element, Node node, Project project, Workspace workspace)
          Gets whether an Element is auditable.

 

Uses of Project in oracle.jdeveloper.audit.transform

 

Methods in oracle.jdeveloper.audit.transform that return Project
 Project TransformContext.getProject()
          Gets the project containing the model to be transformed.

 

Methods in oracle.jdeveloper.audit.transform with parameters of type Project
protected  java.lang.Boolean TransformAdapter.makeWritable(Node node, Project project, Workspace workspace)
           

 

Uses of Project in oracle.jdeveloper.controller

 

Methods in oracle.jdeveloper.controller with parameters of type Project
protected  void NodeActionController.queueContainer(Element element, Project project, Workspace workspace, IdeAction action, java.util.Map queue)
           

 

Uses of Project in oracle.jdeveloper.file

 

Methods in oracle.jdeveloper.file with parameters of type Project
 Path JavaProjectCache.getAdditionalClassPath(Project project)
          Get the additional class path for a project.
 java.util.List<LibraryPaths> JavaProjectCache.getExportLibraryPaths(Project project)
          Get the library paths for export libraries of a project.
 Path JavaProjectCache.getJavaContentPath(Project project)
          Get the path for Java source content.
 LibraryPaths JavaProjectCache.getJdkPaths(Project project)
          Get the JDK paths for a project.
 java.util.List<LibraryPaths> JavaProjectCache.getLibraryPaths(Project project)
          Get the library paths for all libraries used by a project.

 

Uses of Project in oracle.jdeveloper.java.dependency

 

Constructors in oracle.jdeveloper.java.dependency with parameters of type Project
FieldDeclaration(java.lang.String id, Workspace workspace, Project project, SourceElement element, java.lang.String fqClassName, java.lang.String fieldName)
           
MethodDeclaration(java.lang.String id, Workspace workspace, Project project, SourceElement element, java.lang.String fqClassName, java.lang.String methodName, java.util.Collection<java.lang.String> parameters)
           

 

Uses of Project in oracle.jdeveloper.jsp.libraries

 

Methods in oracle.jdeveloper.jsp.libraries with parameters of type Project
 void JspLibraryUtils.addTagLibrary(JspLibrary library, Project project)
           
static java.net.URL[] JspLibraryUtils.getDeployedJarFiles(Project project)
          Returns list of file URLs of all JAR files that are deployed to project's WEB-INF/lib folder as part of JSP Tag Library installations.
static java.util.Collection<java.net.URL> JspLibraryUtils.getLibraryUrls(JspLibrary lib, Project project)
          Gets the URLs of all library JARs the tag library depends on, including the JAR containing the TLD file.
static java.util.List<JspLibrary> JspLibraryUtils.getPackagedLibraries(Project project)
          Gets all JspLibraries whose corresponding TLD file is packaged in a JAR file.
static java.util.List<java.lang.String> JspLibraryUtils.getPackagedLibrariesJarPaths(Project project)
          Gets URL paths of all JAR files in the project that contain JspLibrary TLDs.
static java.util.List<java.net.URL> JspLibraryUtils.getPackagedLibrariesJarURLs(Project project)
          Gets URLs of all JAR files in the project that contain JspLibrary TLDs.
static java.util.List<java.net.URL> JspLibraryUtils.getPackagedLibrariesURLs(Project project)
          Gets URLs of all TLD files inside JARs of the project's JspLibraries.
static java.util.List<JspLibrary> JspLibraryUtils.getTagLibraries(Project project)
          Gets all JspLibraries available in the project.
static java.util.List<JspLibrary> JspLibraryUtils.getTagLibraries(java.lang.String uri, Project project)
           
static JspLibrary JspLibraryUtils.getTagLibrary(java.lang.String uri, Project project)
           
static JspLibrary JspLibraryUtils.getTagLibrary(java.net.URL tldURL, Project project)
           
static java.util.List<JspLibrary> JspLibraryUtils.getTldLibraries(Project project)
          Gets all JspLibraries available in the project defined by TLD files.
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.
static void JspLibraryUtils.removeTagLibrary(JspLibrary library, Project project)
          Removing the tag library reference will not remove underlining resource.

 

Uses of Project in oracle.jdeveloper.jsp.utils

 

Methods in oracle.jdeveloper.jsp.utils with parameters of type Project
static void JSPTagUtils.addTagLibMap(Project prj, oracle.jdeveloper.xml.j2ee.war.WebAppNode webAppNode, java.lang.String taglibUri, java.lang.String taglibLocation)
          Inserts new explicit tag-lib entry in the web.xml file.
static void JSPTagUtils.addTld(JspLibrary jspLib, Project prj)
          Deprecated. use updateProjectWithTagLibrary() method to add tag library to the project. It will do all needed actions.
static JspLibrary[] JSPTagUtils.configureProjectWithTagLibraries(JspLibrary[] jspLibs, Project project, boolean ignoreExistingURIs)
           
static JspLibrary[] JSPTagUtils.configureProjectWithTagLibrary(JspLibrary jspLib, Project project, boolean ignoreExistingURI)
          Adds given library to the project, and setting up all required dependencies which may include: java libraries, other tag libraries, and craation and configuration of deployment files.
static void War.createForProject(Project prj)
           
static boolean War.exists(Project prj)
          Check to see if a WEB-INF directory exists in project
static JspLibrary JSPTagUtils.getJspLibrary(java.lang.String libraryName, Project project)
          If a tag library with given name is used in the project, returns that library.
static JspLibrary JSPTagUtils.getJspLibraryByURI(java.lang.String uri, Project project)
          If a tag library with given URI is used in the project, returns that library.
static java.net.URL JSPTagUtils.getWebInfLibURL(Project project)
          Returns the current WEB-INF/lib directory of the project.
static java.net.URL JSPTagUtils.getWebInfURL(Project project)
          Returns the current WEB-INF directory of the project.
static void JSPTagUtils.updateProjectWithTagLibraries(JspLibrary[] jspLibs, Project project)
           
static void JSPTagUtils.updateProjectWithTagLibrary(JspLibrary jspLib, Project project)
          Updates project with the current Jsplibrary.

 

Uses of Project in oracle.jdeveloper.library

 

Methods in oracle.jdeveloper.library that return Project
 Project ProjectLibraryChangeEvent.getProject()
          The project whose classpath has changed.

 

Methods in oracle.jdeveloper.library with parameters of type Project
 Library LibraryReference.getLibrary(Project project)
          Finds the Library instance in the given Project context.
abstract  boolean ProjectLibraryChangeListener.needClasspathNotification(Project project)
          Allows a listener to have a say as to whether this project is of interest for notification.
 void ProjectLibraryChangeListener.projectClosed(Project project)
          An echo of the underlying ProjectChangeListener.projectClosed().
 void JLibraryManager.projectLibrariesChanged(Project project, java.util.Set<java.net.URL> modifiedJars, java.util.Set<java.net.URL> addedJars, java.util.Set<java.net.URL> deletedJars)
           
 void ProjectLibraryChangeListener.projectOpened(Project project)
          An echo of the underlying ProjectChangeListener.projectOpened().
 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 Project
ProjectLibraryChangeEvent(Project project, java.util.Set<java.net.URL> modifiedJars, java.util.List<java.net.URL> addedJars, java.util.List<java.net.URL> removedJars, java.util.Set<java.net.URL> jarsAddedToClasspath, java.util.Set<java.net.URL> jarsRemovedFromClasspath)
           
ProjectLibraryChangeEvent(Project project, java.util.Set<java.net.URL> modifiedJars, java.util.List<java.net.URL> addedJars, java.util.List<java.net.URL> removedJars, java.util.Set<java.net.URL> jarsAddedToClasspath, java.util.Set<java.net.URL> jarsRemovedFromClasspath, java.util.Map<java.lang.String,java.lang.Integer> addedLibs, java.util.Map<java.lang.String,java.lang.Integer> deletedLibs)
           
ProjectLibraryChangeEvent(Project project, java.util.Set<java.net.URL> modifiedJars, java.util.Set<java.net.URL> jarsAddedToClasspath, java.util.Set<java.net.URL> jarsRemovedFromClasspath)
          Creates a new event object.

 

Uses of Project in oracle.jdeveloper.model

 

Methods in oracle.jdeveloper.model that return Project
static Project[] PathsConfiguration.getDependentProjects(Context context)
          This gets the list of dependent projects for the project in the context.
static Project[] PathsConfiguration.getDependentProjects(Project deepestProject)
          This gets the list of dependent projects for the project in the context.
 Project JProjectTechnologyEvent.getProject()
          Returns the JProject in which the technology change occurred.
 Project JavaProjectEvent.getProject()
           

 

Methods in oracle.jdeveloper.model with parameters of type Project
static Project[] PathsConfiguration.getDependentProjects(Project deepestProject)
          This gets the list of dependent projects for the project in the context.
static J2eeSettings J2eeSettings.getInstance(Project project)
          Retrieves an instance of J2eeSettings for the specified project.
static PathsConfiguration PathsConfiguration.getInstance(Project project)
          Retrieves an instance of PathsConfiguration for the specified project.
static J2eeSettings J2eeSettings.getInstance(Project project, PropertyStorage propertyData)
           
static PathsConfiguration PathsConfiguration.getInstance(Project project, PropertyStorage propertyData)
           
 java.lang.String JspSourceNode.getPackage(Project project)
           
 java.net.URL TechnologySpecificSupportProvider.getProjectOutputDirectory(Project project)
           
 void ContentSetPanel.loadFrom(Project project, ContentSet contentSet)
          Initializes the panel from the supplied Project and ContentSet.

 

Constructors in oracle.jdeveloper.model with parameters of type Project
JProjectTechnologyEvent(Project project, java.lang.String technologyKey)
          Constructs a new JProjectTechnologyEvent object.

 

Uses of Project in oracle.jdeveloper.offlinedb

 

Methods in oracle.jdeveloper.offlinedb with parameters of type Project
static void OfflineDBUtil.ensureTechScope(Project proj)
          Ensures that the database technology scope is added to the given project.
static OfflineDBObjectProvider OfflineDBObjectProvider.findProvider(Project project, BaseObjectID objID)
          Iterates through the project's providers, and see if any contain a matching object id.
static OfflineDBObjectProvider OfflineDBObjectProvider.findProvider(Project p, java.lang.String id)
          Deprecated. replaced by OfflineDBObjectProvider.findProviderByID(Project,String).
static OfflineDBObjectProvider OfflineDBObjectProvider.findProviderByID(Project p, java.lang.String id)
          Finds a provider by its ID in the given Project.
static OfflineDBObjectProvider OfflineDBObjectProvider.findProviderByName(Project p, java.lang.String name)
          Finds an Offline Database with the given name in the context of the given Project.
static java.util.Iterator<OfflineDBObjectProvider> OfflineDBObjectProvider.getProviderIterator(Project p)
          Returns an iterator over the providers in a project.
static java.util.Iterator<OfflineDBObjectProvider> OfflineDBObjectProvider.getProviderIterator(Project p, boolean incProjDeps)
          Returns an iterator over the providers in a project.
static java.lang.String OfflineDBObjectProvider.getUniqueProviderName(Project p, java.lang.String name)
          Returns a unique provier name for the given provider within the project based on the given base name.
static java.util.List<OfflineDBObjectProvider> OfflineDBObjectProvider.listDBObjectProviders(Project p)
          Lists the providers that already exist on the given project's offline database source path.
static java.util.List<OfflineDBObjectProvider> OfflineDBObjectProvider.listDBObjectProviders(Project p, boolean incProjDeps)
          Lists the providers that already exist on the given project's offline database source path.
static java.lang.Iterable<java.net.URL> OfflineDBObjectProvider.listDBObjectProviderURLs(Project p, boolean incProjDeps)
          Lists the URLs of any OfflineDBObjectProviders in the given project.

 

Uses of Project in oracle.jdeveloper.offlinedb.model

 

Methods in oracle.jdeveloper.offlinedb.model with parameters of type Project
static OfflineDBProjectSettings OfflineDBProjectSettings.createDatabaseSettings(Project proj)
          Create default settings on the given project.
static OfflineDBProjectSettings OfflineDBProjectSettings.createDatabaseSettings(Project proj, boolean userSettings, boolean defaultProject)
          Creates offline database settings for the given project and sets them in the common data appropriately.
static void OfflineDBProjectSettings.ensureContentSetDefaults(ContentSet contentSet, Project proj)
           
static OfflineDBProjectSettings OfflineDBProjectSettings.getDatabaseSettings(Project project)
          Given a project, returns the offline database settings stored for that project.
static OfflineDBProjectSettings OfflineDBProjectSettings.getDatabaseSettings(Project proj, HashStructure props)
          Given a PropertyStorage object, returns the offline database settings.

 

Uses of Project in oracle.jdeveloper.offlinedb.wizard

 

Methods in oracle.jdeveloper.offlinedb.wizard with parameters of type Project
static OfflineDBObjectProvider ProviderWizard.chooseProvider(Project p, boolean allowProviderCreate)
          Prompts the user to choose an offline database in the given Project, optionally they can be allowed to create a new one.
static OfflineDBObjectProvider ProviderWizard.chooseProvider(Project p, boolean allowProviderCreate, boolean onlyShowProjDeps)
          Prompts the user to choose an offline database in the given Project, optionally they can be allowed to create a new one.
static OfflineDBObjectProvider ProviderWizard.chooseProvider(Project p, boolean allowProviderCreate, Database db)
          Allow the user to choose an offline provider that is compatible with the given provider settings from the given project (including its dependencies), The supplied Database will be used as the base for the offline database.
static OfflineDBObjectProvider ProviderWizard.chooseProvider(Project p, OfflineDBObjectProvider pro)
          Allow the user to choose an offline provider that is compatible with the given provider from the given project (including its dependencies).
static OfflineDBObjectProvider ProviderWizard.chooseProvider(Project p, ProviderSettings settings, java.net.URL url)
          Allow the user to choose an offline provider that is compatible with the given provider settings from the given project (including its dependencies).
static OfflineDBObjectProvider ProviderWizard.findOrCreateProviderNode(Project p, ProviderSettings settings)
           

 

Uses of Project in oracle.jdeveloper.runner

 

Methods in oracle.jdeveloper.runner that return Project
 Project JRunProcess.getJProject()
          Returns the current Project associated with the JRunProcess.

 

Methods in oracle.jdeveloper.runner with parameters of type Project
static void RunConfigurations.addRunConfiguration(Project project, RunConfiguration runConfiguration)
          Add a RunConfiguration to the collection of defined configurations for the project
static java.net.URL Source.askSourceFinders(Workspace workspace, Project project, java.lang.String pkg, java.lang.String filename)
          Iterate over the configured SourceFinders to see if one of them can locate the source
static java.net.URL Source.findOpenSourceStub(Workspace workspace, Project project, java.lang.String fullClassName)
          Returns the URL for a source stub that has already been opened.
static java.net.URL Source.findSourceFile(Workspace workspace, Project project, java.lang.String pkg, java.lang.String filename)
          Returns the URL for the source file that has the given package and filename.
 java.net.URL SourceFinder.findSourceFile(Workspace workspace, Project project, java.lang.String pkg, java.lang.String filename)
          Returns the URL to a source file, or null if the source can not be found.
static java.net.URL Source.findURLForClass(Workspace workspace, Project project, java.lang.String fullClassName)
          Return the URL for the source file of the named class
static java.net.URL Source.findURLForClassSource(Project project, java.lang.String fullClassName)
          Return the URL for the source file of the named class
static java.net.URL Source.findURLForClassSource(Workspace workspace, Project project, java.lang.String fullClassName)
          Return the URL for the source file of the named class
static java.net.URL Source.findURLForClassStub(Project project, java.lang.String fullClassName)
          Return the URL for the source file of the named class
static java.net.URL Source.findURLForClassStub(Workspace workspace, Project project, java.lang.String fullClassName)
          Return the URL for the source stub of the named class
static java.lang.String RunConfigurations.getActiveName(Project project)
          Returns the active name.
static RunConfiguration RunConfigurations.getActiveRunConfiguration(Project project)
          Returns the currently active RunConfiguration for the supplied project
static Node[] Source.getOpenedFiles(Workspace workspace, Project project)
          Returns the files that are currently open in an editor.
static java.lang.String Source.getPackageFromNode(Node node, Project project)
          Returns the package for the given node.
static Node[] Source.getProjectFileList(Project project)
          Returns the files in the given project.
static RunConfiguration RunConfiguration.getRunConfiguration(Project project, java.lang.String configName)
          Deprecated. Call RunConfiguration.getInstance(oracle.javatools.data.PropertyStorage) instead.
static RunConfiguration RunConfigurations.getRunConfigurationByName(Project project, java.lang.String name)
          Returns the named runconfiguration for the supplied project.
 java.lang.String RunConfiguration.getVMName(JDK jdk, Project project)
          Returns the name of the Virtual Machine.
static boolean RunConfigurations.isActiveRunConfiguration(Project project, RunConfiguration runConfiguration)
          Returns whether the supplied RunConfiguration is the currently active RunConfiguration for the supplied project.
static boolean Source.packageMatches(java.lang.String pkg, Node node, Project project)
          Returns true if the given package matches the package for the given node.
static void RunConfigurations.setActiveRunConfiguration(Project project, RunConfiguration runConfiguration)
          Sets the supplied RunConfiguration to be the active RunConfiguration fot the supplied project
static CodeEditor Source.showNodeInCodeEditor(Workspace workspace, Project project, Node node)
          Displays a node in the code editor.
static Editor Source.showNodeInDefaultEditor(Workspace workspace, Project project, Node node)
          Displays a node in its default editor.
static boolean Source.showSourceFile(Workspace workspace, Project project, Node node, int line, boolean selectLine)
          Displays a source file in the code editor.
static boolean Source.showSourceFile(Workspace workspace, Project project, Node node, int line, boolean selectLine, boolean showInNavHistory)
          Displays a source file in the code editor.
static boolean Source.showSourceFile(Workspace workspace, Project project, java.lang.String pkg, java.lang.String fullClassName, java.lang.String filename, int line, boolean selectLine)
          Displays a source file in the code editor.
static boolean Source.showSourceFile(Workspace workspace, Project project, java.lang.String pkg, java.lang.String fullClassName, java.lang.String filename, int line, boolean selectLine, java.lang.String sourceNotFoundMessage)
          Displays a source file in the code editor.
static boolean Source.showSourceFile(Workspace workspace, Project project, java.lang.String pkg, java.lang.String fullClassName, java.lang.String filename, int line, boolean selectLine, java.lang.String sourceNotFoundMessage, oracle.jdevimpl.debugger.support.DebugVirtualMachine vm)
          Displays a source file in the code editor.
static boolean Source.showSourceFile(Workspace workspace, Project project, java.net.URL url, int line, boolean selectLine)
          Displays a source file in the code editor.
static boolean Source.showSourceFile(Workspace workspace, Project project, java.net.URL url, int line, boolean selectLine, boolean showInNavHistory)
          Displays a source file in the code editor.
static boolean Source.showUIDesigner(Workspace workspace, Project project, Node node)
          Displays a source file in the UI designer.
static boolean Source.showUIDesigner(Workspace workspace, Project project, java.net.URL url)
          Displays a source file in the UI designer.

 

Uses of Project in oracle.jdeveloper.vcs.changelist

 

Methods in oracle.jdeveloper.vcs.changelist that return Project
 Project ChangeListItem.getProject()
           
 Project[] ChangeListEvent.getProjects()
           

 

Methods in oracle.jdeveloper.vcs.changelist that return types with arguments of type Project
 java.util.Collection<Project> ChangeListItem.getProjects()
           

 

Methods in oracle.jdeveloper.vcs.changelist with parameters of type Project
 ContentSet ChangeListProjectContent.getContentSet(Project project)
           
protected  java.util.Collection<VCSHashURL> ChangeListEventQueue.listProjectURLs(Project project, ChangeListProjectContent projectContent, VCSCancellable cancellable)
           
 void ChangeListEvent.setProjects(Project[] projects)
           

 

Constructors in oracle.jdeveloper.vcs.changelist with parameters of type Project
ChangeListProjectContent(Project project)
           

 

Constructor parameters in oracle.jdeveloper.vcs.changelist with type arguments of type Project
ChangeListItem(java.net.URL url, java.util.Collection<Project> projects, IconOverlay overlay)
           

 

Uses of Project in oracle.jdeveloper.vcs.spi

 

Methods in oracle.jdeveloper.vcs.spi with parameters of type Project
abstract  boolean VCSApplicationSystem.canProjectHaveMember(Project project, VCSApplicationSystem.ContentSetProxy proxy, java.net.URL url)
           
abstract  java.util.Iterator<java.net.URL> VCSApplicationSystem.createProjectIterator(Project project, VCSApplicationSystem.ListMode mode)
           
abstract  ContentSet VCSApplicationSystem.ContentSetProxy.getContentSet(Project project)
           

 

Uses of Project in oracle.jdeveloper.vcs.util

 

Methods in oracle.jdeveloper.vcs.util that return Project
static Project[] VCSModelUtils.findCachedProjects()
          Gets all open Project type nodes cached in the NodeFactory.
static Project[] VCSModelUtils.findCachedProjects(boolean openWorkspaces)
          Deprecated. replaced by VCSModelUtils.findCachedProjects(). Workspaces no longer need to be opened in order to discover their children.

 

Methods in oracle.jdeveloper.vcs.util with parameters of type Project
static java.net.URL[] VCSModelUtils.listProjectURLs(Project project, VCSCancellable cancellable)
          Lists all content URLs belonging to the given project, if open.
static java.net.URL[] VCSModelUtils.listProjectURLs(Project project, VCSCancellable cancellable, boolean includeDirectories)
          Lists all content URLs belonging to the given project, if open.

 

Uses of Project in oracle.jdeveloper.webapp.build

 

Methods in oracle.jdeveloper.webapp.build with parameters of type Project
 boolean OJSPNextFeatureEnabler.isOJSPNextEnabled(Project project)
           
 boolean BuildFeatureManager.isOJSPNextEnabled(Project project)
           

 

Uses of Project in oracle.jdeveloper.webapp.design

 

Methods in oracle.jdeveloper.webapp.design with parameters of type Project
 boolean LoadResourcesFromClassLoaderFeatureEnabler.isFeatureEnabled(Project project)
           
abstract  void DTEManager.restartWebApp(Project project)
          Restart the webapp in JSP VE design time(fake servlet container)
abstract  void DTEManager.startWebAppAutoRestart(Project project)
          By default the dte restarts the webapp whenever the web.xml or other configuration files are modified.
abstract  void DTEManager.stopWebAppAutoRestart(Project project)
          By default the dte restarts the webapp whenever the web.xml or other configuration files are modified.

 

Uses of Project in oracle.jdeveloper.webapp.facelets

 

Methods in oracle.jdeveloper.webapp.facelets with parameters of type Project
abstract  boolean FaceletsConfigurationHandler.addFaceletsSuffix(Project project, java.lang.String suffix, boolean makeDefault)
          Add the suffix to the configuration parameter "javax.faces.FACELETS_VIEW_MAPPINGS" If makeDefault is true, the suffix is prepended to the FACELETS_VIEW_MAPPINGS, so that it is returned by getDefaultFaceletsSuffix()
 boolean FaceletsConfigurationManager.addFaceletsSuffix(Project project, java.lang.String suffix, boolean makeDefault)
          Add the suffix to the configuration parameter "javax.faces.FACELETS_VIEW_MAPPINGS" If makeDefault is true, the suffix is prepended to the FACELETS_VIEW_MAPPINGS, so that it is returned by getDefaultFaceletsSuffix()
abstract  void FaceletsConfigurationHandler.configureProject(Project project)
          Configure the Project for Facelets
 void FaceletsConfigurationManager.configureProject(Project project)
          Configure the Project for Facelets
abstract  java.lang.String FaceletsConfigurationHandler.getDefaultFaceletsSuffix(Project project)
          Determine the default Facelets Suffix, as defined for the Project
 java.lang.String FaceletsConfigurationManager.getDefaultFaceletsSuffix(Project project)
          Determine the default Facelets Suffix, as defined for the Project
abstract  java.util.Collection<java.lang.String> FaceletsConfigurationHandler.getFaceletsSuffixes(Project project)
          Get the list of suffixes configured in the configuration parameter "javax.faces.FACELETS_VIEW_MAPPINGS"
 java.util.Collection<java.lang.String> FaceletsConfigurationManager.getFaceletsSuffixes(Project project)
          Get the list of suffixes configured in the configuration parameter "javax.faces.FACELETS_VIEW_MAPPINGS"
 boolean FaceletsConfigurationManager.isConfiguredForFacelets(Project project)
          Deprecated. 
 boolean FaceletsConfigurationManager.isFaceletsFile(Project project, java.net.URL url)
          Determine if the URL is a Facelets file.
abstract  boolean FaceletsConfigurationHandler.isFaceletsFile(Project project, java.net.URL url, boolean checkDefaults)
          Determine if the URL is a Facelets file.
 boolean FaceletsConfigurationManager.isFaceletsFile(Project project, java.net.URL url, boolean checkDefaults)
          Determine if the URL is a Facelets file.
 boolean FaceletsConfigurationHandler.isFaceletsSuffix(Project project, java.lang.String suffix, boolean checkDefaults)
          Determine if the suffix corresponds to a Facelets view mapping suffix.
 boolean FaceletsConfigurationManager.isFaceletsSuffix(Project project, java.lang.String suffix, boolean checkDefaults)
          Determine if the suffix corresponds to a Facelets view mapping suffix.

 

Uses of Project in oracle.jdeveloper.webapp.libraries

 

Methods in oracle.jdeveloper.webapp.libraries with parameters of type Project
abstract  boolean TagLibraryConfigurationContext.addLibraryToProject(T library, Project project)
           
abstract  T TagLibraryConfigurationContext.findLibraryForProject(java.lang.String uri, Project project)
           
abstract  T TagLibraryConfigurationContext.findLibraryInProject(java.lang.String uri, Project project)
           
static java.util.Collection<java.net.URL> TagLibraryUtils.getLibraryUrls(TagLibrary lib, Project project)
          Gets the URLs of all library JARs the tag library depends on, including the JAR containing the TLD file.
abstract  oracle.jdevimpl.webapp.taglib.libraries.LocalTagLibraryManager<T> TagLibraryConfigurationContext.getProjectTagLibraryManager(Project project)
           
 TagLibraryConfigurationContext<T> TagLibraryConfigurationContextProvider.getTagLibraryConfigurationContext(Project project)
           
static TagLibraryConfigurationContext TagLibraryConfigurationContextRegistry.getTagLibraryConfigurationContext(Project project, java.lang.String typeIdentifier)
           
static java.net.URL TagLibraryUtils.getWebInfLibURL(Project project)
          Returns the current WEB-INF/lib directory of the project.
static java.net.URL TagLibraryUtils.getWebInfURL(Project project)
          Returns the current WEB-INF directory of the project.
abstract  boolean TagLibraryConfigurationContext.installLibraryInProject(T library, Project project)
           

 

Uses of Project in oracle.jdeveloper.webapp.utils

 

Methods in oracle.jdeveloper.webapp.utils with parameters of type Project
static void WebDocumentUtil.addTagLibrary(JspLibrary jspTagLibrary, Project project, oracle.bali.xml.model.AbstractModel model)
          Configures JSP page and the project it belongs to to use given JSP tag library.
static void WebDocumentUtil.addTagLibrary(java.lang.String jspLibraryURI, Project project, oracle.bali.xml.model.AbstractModel model)
           
static QueryProgress IndexingUtils.findNodes(Project project, java.lang.Class nodeClass, ResultCallback<Node> callback)
          Find Nodes of the given Node type in the web-app content set.
static QueryProgress IndexingUtils.findNodes(Project project, URLFilter filter, java.lang.Class[] nodeClasses, ResultCallback<Node> callback)
           
static QueryProgress IndexingUtils.findNodes(Project project, URLFilter filter, java.lang.Class nodeClass, ResultCallback<Node> callback)
          Find Nodes of the given Node type in the web-app content set whose URLs satisfy given URL filter.
static QueryProgress IndexingUtils.findNodes(Project project, URLFilter filter, ResultCallback<Node> callback)
          Find Nodes in the web-app content set whose URLs satisfy given URL filter.
static QueryProgress IndexingUtils.findURLs(Project project, java.lang.Class nodeClass, ResultCallback<java.net.URL> callback)
          Find file URLs of the given Node type in the web-app content set.
static QueryProgress IndexingUtils.findURLs(Project project, URLFilter filter, java.lang.Class[] nodeClasses, ResultCallback<java.net.URL> callback)
           
static QueryProgress IndexingUtils.findURLs(Project project, URLFilter filter, java.lang.Class nodeClass, ResultCallback<java.net.URL> callback)
          Find Nodes of the given Node type in the web-app content set whose URLs satisfy given URL filter.
static QueryProgress IndexingUtils.findURLs(Project project, URLFilter filter, ResultCallback<java.net.URL> callback)
          Find file URLs in the web-app content set that satisfy given URL filter.
static java.lang.ClassLoader ProjectRunClassPathClassLoaderUtils.getClassLoader(Project project)
          Returns a new ClassLoader for the given project, from a cached expanded URLPath.
static java.lang.ClassLoader ProjectRunClassPathClassLoaderUtils.getClassLoader(Project project, java.lang.ClassLoader parent)
          Returns a new ClassLoader for the given project and parent, from a cached expanded URLPath.
protected static ContentSet IndexingUtils.getContentSet(Project project)
           
static URLPath ProjectRunClassPathClassLoaderUtils.getExpandedRunClassPath(Project project)
          Returns (a copy of) the cached expanded URLPath dsecribing the Run ClassPath for the given Project

 

Uses of Project in oracle.jdevimpl.audit.core

 

Methods in oracle.jdevimpl.audit.core that return Project
 Project DefaultAuditContext.getProject()
           

 

Methods in oracle.jdevimpl.audit.core with parameters of type Project
 boolean DefaultAuditor.addConstruct(java.lang.Object construct, java.net.URL file, Project project, Workspace workspace)
           
 boolean DefaultAuditor.addElement(Element element, Node node, Project project, Workspace workspace)
           
 boolean DefaultAuditor.addElements(Element[] elements, Node node, Project project, Workspace workspace)
           
 boolean DefaultAuditor.addNode(Node node, Project project, Workspace workspace)
           
 boolean DefaultAuditor.addUrl(java.net.URL document, Project project, Workspace workspace)
           
<T extends ModelAdapter>
ModelAdapter
DefaultAuditContext.getModel(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
           
<T extends ModelAdapter>
ModelAdapter
DefaultAuditTaskContext.getModelAdapter(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
           
<T extends ModelAdapter>
ModelAdapter
DefaultAuditContext.getModelAdapter(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
           
 boolean DefaultAuditor.isAuditable(Element element, Node node, Project project, Workspace workspace)
           

 

Uses of Project in oracle.jdevimpl.audit.model

 

Methods in oracle.jdevimpl.audit.model that return Project
 Project ProjectModelAdapter.getProject()
           
 Project RootModelAdapter.getProject()
           
 Project WorkspaceModelAdapter.getProject()
           

 

Methods in oracle.jdevimpl.audit.model with parameters of type Project
 void DefaultModelFactory.addModelAdapters(java.util.Collection<ModelAdapter> models, Element element, java.net.URL url, Project project, Workspace workspace)
          If the URL is not supplied, then the Element must have been supplied and is used to determine the URL(s).
 ContentCache DefaultModelFactory.getContentSetCache(Project project, Workspace workspace)
           
<T extends ModelAdapter>
ModelAdapter
DefaultModelFactory.getModelAdapter(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
           
 java.util.Collection<ModelAdapter> DefaultModelFactory.getModelAdapters(Element element, java.net.URL url, Project project, Workspace workspace)
           
 void DefaultModelFactory.getOrCreateModelAdapters(java.util.Collection<ModelAdapter> models, Element element, java.net.URL url, Project project, Workspace workspace)
          The workspace/project/URL key is computed.
 void ApplicationContentRootFactory.getProjectRoots(Workspace workspace, Project project, IntersectedFilters filters, IntersectedFilters workingSetFilters, java.util.Collection<ContentRoot> roots)
           
 void ProjectContentRootFactory.getProjectRoots(Workspace workspace, Project project, IntersectedFilters filters, IntersectedFilters workingSetFilters, java.util.Collection<ContentRoot> roots)
           
 boolean WorkspaceModelType.isAuditable(Element element, ContentDirectory directory, Project project, Workspace workspace)
          Gets whether a root element is auditable in the context of a directory, project, and workspace.
 boolean ProjectModelType.isAuditable(Element element, ContentDirectory directory, Project project, Workspace workspace)
          Gets whether a root element is auditable in the context of a directory, project, and workspace.
 boolean RootModelType.isAuditable(Element element, ContentDirectory directory, Project project, Workspace workspace)
          Gets whether a root element is auditable in the context of a directory, project, and workspace.
 boolean DirectoryModelType.isAuditable(Element element, ContentDirectory directory, Project project, Workspace workspace)
          Gets whether a root element is auditable in the context of a directory, project, and workspace.

 

Constructors in oracle.jdevimpl.audit.model with parameters of type Project
ProjectModelAdapter(ModelFactory factory, ModelType type, ContainerModelAdapter workspace, Project project)
          Creates a project document.

 


Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Extension SDK
11g Release 2 (11.1.2.3.0)

E17493-04


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