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

E13403-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.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.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.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.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.cmt The Component Model Tool, an API for manipulating Java source code. 
oracle.jdeveloper.compiler Contains classes that allow addins to integrate their own build system translator. 
oracle.jdeveloper.controller   
oracle.jdeveloper.controls The controls package contains GUI classes used by the builder classes. 
oracle.jdeveloper.deploy   
oracle.jdeveloper.deploy.dt   
oracle.jdeveloper.deploy.war   
oracle.jdeveloper.dialogs The Dialogs package contains commonly used dialogs. 
oracle.jdeveloper.engine.db   
oracle.jdeveloper.java Public API for the java model. 
oracle.jdeveloper.java.dependency Provides dependency information for Java. 
oracle.jdeveloper.java.insight   
oracle.jdeveloper.java.locator Public implementations of the JavaClassLocator interface. 
oracle.jdeveloper.java.provider Public implementations of the JavaFileProvider interface. 
oracle.jdeveloper.jsp.faces   
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.template.wizard   
oracle.jdeveloper.test   
oracle.jdeveloper.vcs.changelist   
oracle.jdeveloper.vcs.patch   
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.design   
oracle.jdeveloper.webapp.facelets   
oracle.jdeveloper.webapp.utils   
oracle.jdeveloper.webapp.utils.jsp   
oracle.jdeveloper.wizard.common Contains classes used by wizards. 
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.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.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)
          Get the index for the given project.
abstract  Index IndexManager.getIndex(Project project, ContentSet content)
          Get the index for the given ContentSet in the scope of the given project.
abstract  Index IndexManager.getIndex(Project project, java.net.URL url)
          Get the index for the given URL in the scope of the given project.
abstract  Index IndexManager.getIndex(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)
          Add a FileChangeListener for the given workspace and project.
 void FileChangeListener.filesChanged(Workspace workspace, Project project, java.util.Collection<FileChange> changes)
          One or more files have changed.
 FileTable FileTableManager.getFileTable(Project project, java.net.URL root)
          Get a file table for the given root directory.
abstract  FileTable FileTableManager.getFileTable(Project project, java.net.URL root, PatternFilters filters)
          Get a file table for the given root directory.
abstract  void FileChangeManager.removeFileChangeListener(Workspace workspace, Project project, FileChangeListener listener)
          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.
 

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.
 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 DependencyConfiguration DependencyConfiguration.getInstance(Project project)
           
static OwnerMap OwnerMap.getInstance(Project project)
          Deprecated.  
 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)
           
 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.
 

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
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)
          Get a storage instance for a project.
 

Uses of Project in oracle.ide.resourcebundle
 

Methods in oracle.ide.resourcebundle with parameters of type Project
static ResourceBundleWrapper ResourceBundleUtils.findBundleInADFLibrary(Project project, java.net.URL libraryURL, java.lang.String bundleId)
          Finds the ResourceBundleWrapper for the specified bundleId in the specified ADF library
 void ResourceBundlePropertyEditor.setProject(Project project)
          Sets the project for the property editor.
static ResourceBundleKey ResourceBundleUtils.showEditDialog(java.awt.Component owner, NodeResourceBundle bundle, java.lang.String key, Project project, java.lang.String bundleDisplayString)
          Shows a dialog for editing a resource
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 RunProcess.getProject()
          Returns the Project associated with the RunProcess.
 Project RunLogPage.getProject()
          Returns the Project associated with this log page.
static Project RunProcess.getProject(Context context)
           
 

Methods in oracle.ide.runner with parameters of type Project
 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
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.jdeveloper.appoverview
 

Methods in oracle.jdeveloper.appoverview with parameters of type Project
 boolean JavaCategoryDataProvider.accept(Project project, java.net.URL url)
           
 boolean XMLCategoryDataProvider.accept(Project project, java.net.URL url)
          Used to determine if the specified project and url belong to the category
 

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
AuditContext.getModelAdapter(java.lang.Class<T> type, java.net.URL url, Project project, Workspace workspace)
          Deprecated. Use AuditContext.getModel(Class, URL, Project, Workspace)
<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.
 

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 Location.getProject()
          Gets the project containing this location.
 Project FileDependency.getProject()
          Gets the project target of this dependency.
 

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)
           
 void DependencyFileChangeListener.filesChanged(Workspace workspace, Project project, java.util.Collection<FileChange> changes)
           
 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.
 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.
static boolean Editors.editNode(Workspace workspace, Project project, Node node, int offset, int length, boolean spanLines)
           
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.
 

Constructors in oracle.jdeveloper.audit.transform 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.
 

Uses of Project in oracle.jdeveloper.builder
 

Methods in oracle.jdeveloper.builder that return Project
 Project AbstractBuilderModel.getProject()
           
 Project SourceModel.getProject()
           
 

Methods in oracle.jdeveloper.builder with parameters of type Project
protected  java.lang.String AbstractBuilderModel.getDefaultRelativeDirectory(Project project)
           
 void AbstractBuilderModel.setProject(Project project)
           
 void InterfaceSelectionPanel.setProject(Project project)
          Sets the active project.
 void SourceModel.setProject(Project newProj)
           
 

Constructors in oracle.jdeveloper.builder with parameters of type Project
InterfaceSelectionPanel(Project project)
          Constructs a new interface-selection panel.
 

Uses of Project in oracle.jdeveloper.builder.cls
 

Methods in oracle.jdeveloper.builder.cls that return Project
protected  Project AbstractGenerator.getProject()
           
 

Methods in oracle.jdeveloper.builder.cls with parameters of type Project
protected  java.lang.String ClassBuilderModel.getDefaultRelativeDirectory(Project project)
           
 

Uses of Project in oracle.jdeveloper.cmt
 

Methods in oracle.jdeveloper.cmt that return Project
 Project CmtMessage.getProject()
           
 Project CmtPackages.getProject()
           
 

Methods in oracle.jdeveloper.cmt with parameters of type Project
 Element CmtElementRecognizer.create(java.net.URL url, Project project)
          Creates an instance of the design-time node associated with the specified url.
static CmtComponents CmtComponentManager.getCmtComponents(Project prj)
           
 void CmtPropertyEditor2.setProject(Project project)
           
 

Uses of Project in oracle.jdeveloper.compiler
 

Methods in oracle.jdeveloper.compiler that return Project
 Project IdeLog.getProject()
          get current project being compiled
 Project IdeLog.Message.getProject()
           
 Project CompilerPage.MsgTreeNode.getProject()
           
 Project ProblemsPage.MsgWrapper.getProject()
           
 

Methods in oracle.jdeveloper.compiler that return types with arguments of type Project
 java.util.Map<Workspace,java.util.Map<Project,java.util.List<java.lang.String>>> UnifiedBuildSystem.getCompiledClasses()
           
 java.util.Map<Workspace,java.util.Map<Project,java.util.Set<Storage>>> UnifiedBuildSystem.getTranslatedSources()
           
 

Methods in oracle.jdeveloper.compiler with parameters of type Project
 int UnifiedBuildSystem.compileInThread(java.lang.Thread thread, Project prj, java.util.ArrayList files, boolean rebuild)
           
 int JCompiler.compileInThread(java.lang.Thread thread, Project prj, java.util.ArrayList files, boolean rebuild)
          compileInThread -- will compile the specified list of classes within the context of an already running compiler thread.
 boolean JCompiler.forceRebuildOnProject(Project prj)
           
static OjcConfiguration OjcConfiguration.getOjcConfiguration(Project project, java.lang.String configName)
          Deprecated. Call OjcConfiguration.getInstance(oracle.javatools.data.PropertyStorage) instead
 void Translator.setProject(Project project)
           
 void IdeLog.setProject(Project project)
          set current project being compiled
 void Ojc.setProject(Project project)
           
 void CopyTranslator.setProject(Project project)
           
 int Translator.translate(Project prjNode, boolean rebuild, java.util.ArrayList sources, java.util.ArrayList results)
          Translate(), main entry point to the translator, the method will translate every specified files in 'sources' and all generated files will be returned in 'results'.
 int Ojc.translate(Project prj, boolean rebuild, java.util.ArrayList sources, java.util.ArrayList results)
          return the number of errors 0 if successfull
 int CopyTranslator.translate(Project prj, boolean rebuild, java.util.ArrayList sources, java.util.ArrayList results)
          return the number of errors 0 if successfull
 void Translator.updateProject(Project project)
           
 void Ojc.updateProject(Project project)
           
 void CopyTranslator.updateProject(Project project)
           
 

Constructors in oracle.jdeveloper.compiler with parameters of type Project
IdeLog.Message(Workspace wsp, Project project, Storage fname, java.lang.String msg, int code, int line, int col)
           
IdeLog.Message(Workspace wsp, Project project, Storage fname, java.lang.String msg, int code, int line, int col, int kind)
           
 

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.controls
 

Fields in oracle.jdeveloper.controls declared as Project
protected  Project PackagePopup._project
           
 

Methods in oracle.jdeveloper.controls that return Project
 Project ClassPicker.getProject()
           
 Project ClassPopup.getProject()
           
 

Methods in oracle.jdeveloper.controls with parameters of type Project
 void ClassPicker.setProject(Project proj)
           
 void ClassPopup.setProject(Project proj)
           
 void PackagePicker.setProject(Project proj)
           
 void PackagePopup.setProject(Project project)
           
 

Constructors in oracle.jdeveloper.controls with parameters of type Project
ClassPicker(Project proj)
           
ClassPopup(Project proj)
           
PackagePicker(Project proj)
           
PackagePopup(Project project)
           
 

Uses of Project in oracle.jdeveloper.deploy
 

Methods in oracle.jdeveloper.deploy with parameters of type Project
static java.net.URL[] DeployUtil.findFast(Project project, java.lang.String fileName, java.lang.String extension)
          Find a list of URLs matching a filename and extension in specific Project.
static java.net.URL[] DeployUtil.findFastXml(Project project, java.lang.String rootElem, java.lang.String nameSpace)
          Find a list of URLs in project that match an XML root element and namespace.
 

Uses of Project in oracle.jdeveloper.deploy.dt
 

Methods in oracle.jdeveloper.deploy.dt with parameters of type Project
static java.util.Map Deployment.getProjectProfiles(Project project)
          Returns a Map of profiles Profile contained in the given project.
static void DeploymentProfiles.projectMigrating(Project project, TraversableContext tc)
           
protected static void Profile.resolveProfileDependencies(Project project, Profile profile, oracle.jdevimpl.deploy.DeploymentProfilesMigrator migrator)
           
 

Uses of Project in oracle.jdeveloper.deploy.war
 

Methods in oracle.jdeveloper.deploy.war with parameters of type Project
 void WarProfile.migrateLegacyLibrariesToFileGroup(Project project)
          This method migrates all LibraryFileGroup instances contained within the profile whose internal name is "legacy-libraries" to a LibraryFileGroup.
 

Uses of Project in oracle.jdeveloper.dialogs
 

Methods in oracle.jdeveloper.dialogs with parameters of type Project
static java.lang.String ClassPackageBrowserV2.browseClassOrPackage(java.awt.Component parent, Project proj, int mode)
          Browses for a single class or package.
static java.lang.String[] ClassPackageBrowserV2.browseClassOrPackage(java.awt.Component parent, Project proj, int mode, boolean isMultiSelect)
          Browses for one or more classes or packages.
static java.lang.String[] ClassPackageBrowserV2.browseClassOrPackage(java.awt.Component parent, Project proj, int mode, boolean isMultiSelect, ClassPackageBrowserFilterV2 filter)
          Browses for one or more classes or packages.
static java.lang.String[] ClassPackageBrowserV2.browseClassOrPackage(java.awt.Component parent, Project proj, int mode, boolean isMultiSelect, ClassPackageBrowserFilterV2 filter, java.lang.String initialSelection)
          Browses for one or more classes or packages.
static java.lang.String ClassPackageBrowserV2.browseClassOrPackage(java.awt.Component parent, Project proj, int mode, ClassPackageBrowserFilterV2 filter)
          Browses for a single class or package.
static java.lang.String[] ClassPackageBrowserV2.browseClassOrPackage(java.awt.Component parent, Project proj, int mode, int needs, boolean isMultiSelect, ClassPackageBrowserFilterV2 filter)
          Deprecated. The needs parameter is obsolete.
static java.lang.String[] ClassPackageBrowserV2.browseClassOrPackage(java.awt.Component parent, Project proj, int mode, int needs, boolean isMultiSelect, ClassPackageBrowserFilterV2 filter, java.lang.String[] initialSelection)
          Deprecated. The needs and initialSelection parameters are obsolete.
static boolean ClassPackageListBrowser.browseClassPackageList(java.awt.Component parent, java.lang.String title, Project project, boolean packages, boolean classes, java.util.List list, java.lang.String helpID)
           
static boolean ClassPackageListBrowser.browseClassPackageList(java.lang.String title, Project project, boolean packages, boolean classes, java.util.List list)
           
static boolean ClassPackageListBrowser.browseClassPackageList(java.lang.String title, Project project, boolean packages, boolean classes, java.util.List list, java.lang.String helpID)
           
 

Constructors in oracle.jdeveloper.dialogs with parameters of type Project
ClassPackageListBrowser(Project project, int mode, java.util.List list)
          Constructs a new instance.
 

Uses of Project in oracle.jdeveloper.engine.db
 

Fields in oracle.jdeveloper.engine.db declared as Project
protected  Project DBRevEngine._project
           
 

Methods in oracle.jdeveloper.engine.db that return Project
static Project DBRevEngineProps.getProject(Namespace n)
           
 

Methods in oracle.jdeveloper.engine.db with parameters of type Project
static void DBRevEngineProps.setProject(Namespace n, Project v)
           
 

Uses of Project in oracle.jdeveloper.java
 

Fields in oracle.jdeveloper.java declared as Project
protected  Project JavaManager._project
          The project associated with this JavaManager (if it is project based and not URL based.)
 

Methods in oracle.jdeveloper.java that return Project
static Project JavaManager.getDefiningProject(Context context, java.net.URL url)
          Finds the project that defines the specified URL.
The method searches the currentProject, the jdk libraries, the project's libraries, it will repeat the same search for the upstream dependencies and if it still not found, it will search all the other projects in the workspace.
 

Methods in oracle.jdeveloper.java that return types with arguments of type Project
static java.util.List<Project> JavaManager.getDependencies(Project project)
           
 

Methods in oracle.jdeveloper.java with parameters of type Project
static JavaManager JavaManager.getAnyInstance(Project project)
          Fetch a JavaManager instance in a fail-safe manner.
static JavaManager JavaManager.getAnyJavaManager(Project project)
          Fetch a JavaManager instance in a fail-safe manner.
static java.util.List<Project> JavaManager.getDependencies(Project project)
           
static JavaManager JavaManager.getInstance(Project project)
          Fetch a JavaManager instance for the given project.
static JavaManager JavaManager.getJavaManager(Project project)
          Fetch a JavaManager instance for the given project.
static boolean JavaManager.isDefinedIn(Project project, java.net.URL url)
           
 

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.java.insight
 

Methods in oracle.jdeveloper.java.insight that return Project
 Project AnnotationElementValueContext.getProject()
          Get the project associated with the source that contains the annotation that contains the element whose possible values are being requested
 

Uses of Project in oracle.jdeveloper.java.locator
 

Methods in oracle.jdeveloper.java.locator with parameters of type Project
protected static URLPath ProjectClassLocator.getAddedClassPathFor(Project project)
          Utility routine to fetch the added classpath for the given project.
static java.util.Collection ProjectClassLocator.getDependentsFor(Project project)
          Utility routine to fetch the dependents for the given project.
protected static ProjectClassLocator ProjectClassLocator.getInstance(Project project)
          Get the class locator instance for a project.
protected static ProjectClassLocator ProjectClassLocator.getInstanceInterruptibly(Project project)
          Get the class locator instance for a project.
protected static Library ProjectClassLocator.getJDKFor(Project project)
          Utility routine to fetch the JDK for the given project.
protected static Library[] ProjectClassLocator.getLibrariesFor(Project project, boolean exportsOnly)
          Utility routine to fetch the libraries for the given project.
protected static URLPath ProjectClassLocator.getModuleConfigClassPathFor(Project project)
          Utility routine to fetch the module config classpath for the given project.
protected static java.net.URL ProjectClassLocator.getOutputURLFor(Project project)
          Utility routine to fetch the output URL for the given project.
static BaseClassLocator JdevClassLocatorFactory.getProjectLocator(Project project)
          Fetch a BaseClassLocator instance for the given project for locating source and class files.
static BaseClassLocator JdevClassLocatorFactory.getProjectLocatorInterruptibly(Project project)
          Get the class locator instance for a project.
static URLPath ProjectClassLocator.getSourcePathFor(Project project)
          Utility routine to fetch the source path for the given project.
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 Project in oracle.jdeveloper.java.provider
 

Methods in oracle.jdeveloper.java.provider with parameters of type Project
static ProjectFileProvider ProjectFileProvider.getInstance(Project project)
          Static factory method for fetching an instance of the JavaFileProvider for the given project.
static ProjectFileProvider ProjectFileProvider.getInstance(Project project, java.lang.Object key)
          Static factory method for fetching an instance of the JavaFileProvider for the given project.
 

Constructors in oracle.jdeveloper.java.provider with parameters of type Project
ProjectFileProvider(ProviderContext e, Project project)
          Constructs a new ProjectFileProvider instance using the given project to locate Java source and class files.
ProjectFileProvider(ProviderContext e, Project project, java.util.Map cache)
           
 

Uses of Project in oracle.jdeveloper.jsp.faces
 

Methods in oracle.jdeveloper.jsp.faces with parameters of type Project
 boolean JsfFeatureManager.isExclusiveBackingBeanScopeFeatureEnabled(Project project)
           
 boolean ExclusiveBackingBeanScopeFeatureEnabler.isFeatureEnabled(Project project)
           
 

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 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 ProjectLibrary.getProject()
           
 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 that return types with arguments of type Project
 java.util.Collection<Project> DependencyCache.getDownstreamProjects(Project project)
          Get the downstream projects that directly depend on the given project.
 java.util.Collection<Project> DependencyCache.getProjectsUsing(Context context, java.lang.String... fqClassNames)
          Uses dependency information to determine which projects in the Application could refer to one or more of the Java classes with the given fully qualified names.
 java.util.Collection<Project> DependencyCache.getUpstreamProjects(Project project)
          Get the upstream projects that the given project directly depends on.
 

Methods in oracle.jdeveloper.model with parameters of type Project
static void JProjectUtil.addLibraries(Project proj, java.lang.Object[] libraries)
          Adds the specified libraries to a project, and fires PropertyChangeEvents if the project's classpath, sourcepath, or docpath changed.
static void JProjectUtil.execturePathChange(Project project, java.lang.Runnable runnable)
          Deprecated. Use project.applyBatchChanges Executes a runnable and sends property path changed events. Example Usage:
  Runnable changePathRunnable = new Runnable()
  {
    project.addLibrary(...);
    project.setOutputDirectory(...);
  };
  JProjectUtil.execturePathChange(changePathRunnable);
 
static java.lang.String JavaProject.generateDefaultPackageName(Project project)
          Returns a valid package name based on the project name.
static Project[] PathsConfiguration.getDependentProjects(Project deepestProject)
          This gets the list of dependent projects for the project in the context.
 java.util.Collection<Project> DependencyCache.getDownstreamProjects(Project project)
          Get the downstream projects that directly depend on the given project.
static J2eeSettings J2eeSettings.getInstance(Project project)
          Retrieves an instance of J2eeSettings for the specified project.
static JavaProject JavaProject.getInstance(Project project)
           
static PathsConfiguration PathsConfiguration.getInstance(Project project)
          Retrieves an instance of PathsConfiguration for the specified project.
static JavaProject JavaProject.getInstance(Project project, HashStructure hash)
           
static J2eeSettings J2eeSettings.getInstance(Project project, PropertyStorage propertyData)
           
static PathsConfiguration PathsConfiguration.getInstance(Project project, PropertyStorage propertyData)
           
 java.lang.String JspSourceNode.getPackage(Project project)
           
 java.lang.String PackagedSource.getPackage(Project project)
          Returns the package for the source file.
 java.lang.String JavaSourceNode.getPackage(Project project)
           
static java.net.URL JProjectUtil.getProjectBasePath(Project project)
          Retrieves the URL that denotes the base path that should be used when creating new source files.
 java.util.Collection<Project> DependencyCache.getUpstreamProjects(Project project)
          Get the upstream projects that the given project directly depends on.
 void ContentSetPanel.loadFrom(Project project, ContentSet contentSet)
          Initializes the panel from the supplied Project and ContentSet.
static void JProjectUtil.removeLibraries(Project proj, java.lang.Object[] libraries)
          Removes the specified libraries from a project, and fires PropertyChangeEvents if the project's classpath, sourcepath, or docpath changed.
static void JProjectUtil.setOutputDirectory(Project project, java.net.URL outputDirectory)
          Sets the location for a project's generated class files.
 

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 #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.
 

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 incProjDeps)
          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)
           
static java.net.URL Source.askSourceFinders(Workspace workspace, Project project, java.lang.String pkg, java.lang.String filename)
           
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)
           
static java.net.URL Source.findURLForClassSource(Project project, java.lang.String fullClassName)
           
static java.net.URL Source.findURLForClassSource(Workspace workspace, Project project, java.lang.String fullClassName)
           
static java.net.URL Source.findURLForClassStub(Project project, java.lang.String fullClassName)
           
static java.net.URL Source.findURLForClassStub(Workspace workspace, Project project, java.lang.String fullClassName)
           
static java.lang.String RunConfigurations.getActiveName(Project project)
          Returns the active name.
static RunConfiguration RunConfigurations.getActiveRunConfiguration(Project 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)
           
 java.lang.String RunConfiguration.getVMName(JDK jdk, Project project)
          Returns the name of the Virtual Machine.
static boolean RunConfigurations.isActiveRunConfiguration(Project project, RunConfiguration runConfiguration)
           
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.projectCheck(Project project)
           
static void RunConfigurations.projectCreated(Project project)
           
static void RunConfigurations.projectMigrating(Project project)
           
static void RunConfigurations.setActiveRunConfiguration(Project project, RunConfiguration runConfiguration)
           
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, 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.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.template.wizard
 

Methods in oracle.jdeveloper.template.wizard that return Project
static Project TemplateWizardUtil.getProject(TraversableContext wizardContext)
          Gets the new Project from the wizard TraversableContext - this is the project that was created as a result of finishing the wizard.
 

Methods in oracle.jdeveloper.template.wizard that return types with arguments of type Project
protected  java.util.List<Project> NewObjectFromTemplateWizard.createProjects()
          Called when the wizard finished to create any projects defined in the active template.
 

Methods in oracle.jdeveloper.template.wizard with parameters of type Project
 void WizardTraversable.commitWizardChanges(Project project, Workspace workspace, TraversableContext dataContext)
          Called when the user clicks Finish on the wizard to commit the changes in the dataContext.
protected  void NewObjectFromTemplateWizard.createDeploymentProfile(java.lang.String deploymentProfileClassName, Workspace workspace, Project project)
           
static void TemplateWizardUtil.setProject(Project project, TraversableContext wizardContext)
          Stores the newly-created project in the wizard data cotext.
 

Method parameters in oracle.jdeveloper.template.wizard with type arguments of type Project
protected  void NewObjectFromTemplateWizard.commitProjectChanges(oracle.bali.ewt.wizard.Wizard wizard, java.util.List<Project> projectList, Workspace workspace, Context context)
           
 

Uses of Project in oracle.jdeveloper.test
 

Methods in oracle.jdeveloper.test that return Project
 Project JDevFixture.createJDevProject()
          Creates or opens a project named "project.jpr" in the work directory with no source path entries and an output directory.
 Project JDevFixture.createJDevProject(java.lang.String path)
          Creates or opens a project in the work directory with no source path entries and an output directory.
 Project JDevFixture.createJDevProject(java.lang.String path, int sourcePathCount)
          Creates or opens a project in the work directory with source path entries and an output directory.
 Project JDevFixture.createJDevProject(java.lang.String path, java.net.URL contentsURL)
          Creates or opens a project in the work directory with source path contents and an output directory.
protected  Project JDevFixture.createJDevProjectNoSave(java.lang.String path, int sourcePathCount)
          Creates or opens a project in the work directory with source path entries and an output directory.
 Project JDevFixture.createJDevProjectRelative(java.lang.String path, java.lang.String contentsPath)
          Creates or opens a project in the work directory with source path contents from a relative path and an output directory.
protected  Project JDevFixture.createProject(java.net.URL url)
           
 

Methods in oracle.jdeveloper.test with parameters of type Project
 void JDevFixture.assertEquals(java.net.URL expectedRootURL, Project actualProject)
          Asserts that the expected contents of a project recursively equal the actual contents of the project.
 void JDevFixture.assertEqualsRelative(java.lang.String expectedPath, Project actualProject)
          Asserts that the expected contents of a directory recursively equal the actual contents of the directory.
 java.net.URL JDevFixture.createSourceDirectory(java.lang.String path, Project project, int entry)
          Creates a directory under a source path entry of a project.
 Node JDevFixture.createSourceFile(java.lang.String path, Project project)
          Creates an empty file under the first project source path entry from a string.
 Node JDevFixture.createSourceFile(java.lang.String path, Project project, int entry)
          Creates an empty file under a project source path entry from a string.
 Node JDevFixture.createSourceFile(java.lang.String path, Project project, int entry, java.lang.String contents)
          Creates a file under a project source path entry from a string.
 Node JDevFixture.createSourceFile(java.lang.String path, Project project, int entry, java.net.URL contentsURL)
          Creates a file under a project source path entry from a URL.
 Node JDevFixture.createSourceFile(java.lang.String path, Project project, java.lang.String contents)
          Creates a file under the first project source path entry from a string.
 Node JDevFixture.createSourceFile(java.lang.String path, Project project, java.net.URL contentsURL)
          Creates a file under the first project source path entry from a URL.
 Node JDevFixture.createSourceFileRelative(java.lang.String path, Project project, int entry, java.lang.String contentsPath)
          Creates a file under a project source path entry with contents from a relative path.
 Node JDevFixture.createSourceFileRelative(java.lang.String path, Project project, java.lang.String contentsPath)
          Creates a file under the first project source path entry from a relative path.
 java.net.URL JDevFixture.createSourcePathEntry(int entry, Project project)
          Creates a source path entry in a project.
 Node JDevFixture.getNode(java.lang.String path, Project project, int entry)
          Gets a node created in a project by this fixture.
 java.net.URL JDevFixture.getSourcePathEntry(Project project, int entry)
          Gets the URL of a source path entry of a project.
 java.lang.String JDevFixture.translateSourcePathToWorkPath(java.lang.String path, Project project, int entry)
          Translates a path relative to a project source path entry to a path relative to the work directory.
 

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.patch
 

Methods in oracle.jdeveloper.vcs.patch that return Project
protected  Project AbstractPatchCommand.getContextProject()
           
 

Methods in oracle.jdeveloper.vcs.patch with parameters of type Project
protected  Locatable[] AbstractPatchCommand.getProjectFolderNodes(Project project)
           
protected  java.util.Collection AbstractPatchCommand.processNodesForProjectOperation(Project project, java.util.Collection nodes)
           
protected  Locatable AbstractPatchCommand.showSelectPatchContextDialog(Project project, java.util.Collection nodes)
           
 

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.design
 

Methods in oracle.jdeveloper.webapp.design with parameters of type Project
 boolean LoadResourcesFromClassLoaderFeatureEnabler.isFeatureEnabled(Project project)
           
 void DTEManager.restartWebApp(Project project)
          Restart the webapp in JSP VE design time(fake servlet container)
 void DTEManager.startWebAppAutoRestart(Project project)
          By default the dte restarts the webapp whenever the web.xml or other configuration files are modified.
 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 FaceletsSuffixExaminer.hasFaceletsSuffix(java.net.URL url, Project project)
           
 boolean FaceletsConfigurationManager.hasFaceletsSuffix(java.net.URL url, 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
protected  int WebAppUtils.getProjectVersion(Project project)
           
static int WebAppUtils.getWebAppVersion(Project project)
           
 

Uses of Project in oracle.jdeveloper.webapp.utils.jsp
 

Methods in oracle.jdeveloper.webapp.utils.jsp with parameters of type Project
static java.lang.String JspUtils.getRelativeString(Project project, java.net.URL url)
           
 

Uses of Project in oracle.jdeveloper.wizard.common
 

Methods in oracle.jdeveloper.wizard.common with parameters of type Project
 boolean WizardFile.classExistsInProject(Project project)
           
 JavaSourceNode WizardFile.getSourceNode(Project project)
           
 void WizardFile.setDefaultClassName(Project project, java.lang.String prefix)
           
 void WizardFile.setDefaultClassName(Project project, java.lang.String prefix, java.lang.String suffix)
           
 

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 RootModelAdapter.getProject()
           
 Project WorkspaceModelAdapter.getProject()
           
 Project ProjectModelAdapter.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 ProjectContentRootFactory.getRoots(Workspace workspace, Project project, IntersectedFilters projectFilters, java.util.Collection<ContentRoot> roots)
           
 void ContentRootFactory.getRoots(Workspace workspace, Project project, IntersectedFilters filters, java.util.Collection<ContentRoot> roots)
           
 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 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 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.
 


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

E13403-04

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