Extension SDK 10.1.3.36.73

Uses of Class
oracle.ide.model.Workspace

Packages that use Workspace
oracle.ide Contains classes that allow addins access to the IDE integration objects.  
oracle.ide.cmd Contains classes implementing several JDeveloper commands.  
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.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.runner Contains classes that allow addins some level of control on the IDE runner system.  
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.cls The cls package provides classes and interfaces for generating Java classes. 
oracle.jdeveloper.compiler Contains classes that allow addins to integrate their own build system translator.  
oracle.jdeveloper.controller   
oracle.jdeveloper.junit The oracle.jdeveloper.junit package contains classes that can be used to generate JUnit classes in a project.  
oracle.jdeveloper.model Contains interfaces and classes implementing the Java specific portions of JDeveloper's data model.  
oracle.jdeveloper.refactoring.util This package contains some utility classes related to the refactoring. 
oracle.jdeveloper.runner Contains classes that allow addins some level of control on the JDeveloper runner system.  
oracle.jdeveloper.vcs.util Contains assorted stateless utilities for version control system integraton. 
 

Uses of Workspace in oracle.ide
 

Methods in oracle.ide that return Workspace
static Workspace Ide.getActiveWorkspace()
          Returns the currently active Workspace.
static Workspace Ide.getDefaultWorkspace()
          Gets the default Workspace
 Workspace Context.getWorkspace()
          Provides a reference to the Workspace associated with this Context.
 

Methods in oracle.ide with parameters of type Workspace
static void Ide.setActiveWorkspace(Workspace workspace)
          Sets the active workspace
 void Context.setWorkspace(Workspace workspace)
          Sets a reference to the Workspace to be associated with this Context.
 

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

Uses of Workspace in oracle.ide.cmd
 

Methods in oracle.ide.cmd that return Workspace
static Workspace NewWorkspaceCommand.createEmptyWorkspace(Context context, java.net.URL wspURL)
          Creates a new empty workspace.
 

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

Uses of Workspace in oracle.ide.explorer
 

Fields in oracle.ide.explorer declared as Workspace
protected  Workspace Explorer.defaultWorkspace
           
 

Uses of Workspace in oracle.ide.layout
 

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

Uses of Workspace in oracle.ide.model
 

Methods in oracle.ide.model that return Workspace
 Workspace Workspaces.currentActiveWorkspace()
          Returns the currently active Workspace associated with this Workspaces.
 Workspace Preferences.getDefaultWorkspace()
          Returns the default workspace.
 

Methods in oracle.ide.model with parameters of type Workspace
 void Workspaces.setActiveWorkspace(Workspace workspace)
          Sets the currently active Workspace associated with this Workspaces.
 

Uses of Workspace in oracle.ide.runner
 

Methods in oracle.ide.runner that return Workspace
 Workspace RunProcess.getWorkspace()
          Returns the Workspace associated with the RunProcess.
 Workspace RunLogPage.getWorkspace()
          Returns the Workspace associated with this log page.
 

Methods in oracle.ide.runner with parameters of type Workspace
abstract  boolean Debugger.showSourceFileForStackTraceLine(Workspace workspace, Project project, java.lang.String stackTraceLine)
           
abstract  java.net.URL Debugger.parseStackTraceLine(Workspace workspace, Project project, java.lang.String stackTraceLine)
           
abstract  boolean Debugger.showSourceFileForStackTraceLine(Workspace workspace, Project project, java.net.URL urlWithLine)
           
 

Uses of Workspace in oracle.jdeveloper.audit.analyzer
 

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

Methods in oracle.jdeveloper.audit.analyzer with parameters of type Workspace
 ModelAdapter AuditContext.getModelAdapter(Workspace workspace, Project project, java.net.URL url)
          Gets the adapter for the model corresponding to a workspace, project, and url.
 

Uses of Workspace in oracle.jdeveloper.audit.model
 

Methods in oracle.jdeveloper.audit.model that return Workspace
 Workspace PackageDirectory.getWorkspace()
          Gets the workspace of this package directory.
 Workspace ModelAdapter.getWorkspace()
          Gets the workspace containing this model.
 Workspace Location.getWorkspace()
          Gets the workspace containing this location.
 

Methods in oracle.jdeveloper.audit.model with parameters of type Workspace
abstract  ModelType ModelTypeFactory.getModelType(Element element, Node node, Project project, Workspace workspace)
          Gets the model type for an element.
 boolean ModelType.isAuditable(Element element, Node node, Project project, Workspace workspace)
          Gets whether an element is auditable.
 ModelAdapter[] ModelType.getModels(ModelFactory factory, Element element, Node node, Project project, Workspace workspace)
          Gets the models for this model type corresponding to an Element.
 java.lang.String ModelType.label(Element element, Node node, Project project, Workspace workspace)
          Gets the label for an element associated with this model type.
 ModelAdapter ModelFactory.getModelAdapter(java.net.URL url, Project project, Workspace workspace)
          Gets the model adapter corresponding to a URL, or null if none.
 ModelAdapter[] ModelFactory.getModelAdapters(Element element, Node node, Project project, Workspace workspace)
          Gets the model adapter(s) corresponding to an Element, or an empty array if none.
 ModelAdapter ModelFactory.getModelAdapter(ModelType type, java.net.URL url, Element element, Project project, Workspace workspace)
          Gets the model adapter corresponding to a URL, or null if none.
 

Constructors in oracle.jdeveloper.audit.model with parameters of type Workspace
ModelAdapter(ModelFactory factory, ModelType type, Workspace workspace)
          Creates a model adapter that adapts a @link oracle.ide.model.Workspace Workspace} node.
ContainerModelAdapter(ModelFactory factory, ModelType type, Workspace workspace)
           
 

Uses of Workspace in oracle.jdeveloper.audit.service
 

Methods in oracle.jdeveloper.audit.service with parameters of type Workspace
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  int 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.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.
 

Uses of Workspace in oracle.jdeveloper.audit.transform
 

Methods in oracle.jdeveloper.audit.transform that return Workspace
 Workspace TransformContext.getWorkspace()
          Gets the workspace containing the model to be transformed.
 

Constructors in oracle.jdeveloper.audit.transform with parameters of type Workspace
UndoableEditCommand(java.lang.String name, TextNode node, Project project, Workspace workspace)
          Creates an undoable edit wrapper command without an IDE context.
TemplateTransformAdapter.OpenEditorCommand(java.lang.String name, TextNode node, Project project, Workspace workspace)
           
TemplateTransformAdapter.TemplateCommand(java.lang.String name, PseudoTemplateFactory factory, TextBuffer buffer, TextNode node, Project project, Workspace workspace)
           
 

Uses of Workspace in oracle.jdeveloper.builder.cls
 

Methods in oracle.jdeveloper.builder.cls that return Workspace
protected  Workspace AbstractGenerator.getWorkspace()
           
 

Uses of Workspace in oracle.jdeveloper.compiler
 

Methods in oracle.jdeveloper.compiler that return Workspace
 Workspace IdeLog.getWorkspace()
          get current workspace being compiled
 Workspace IdeLog.Message.getWorkspace()
           
 Workspace CompilerPage.MsgTreeNode.getWorkspace()
           
 

Methods in oracle.jdeveloper.compiler with parameters of type Workspace
 void IdeLog.setWorkspace(Workspace wsp)
          set current workspace being compiled
 

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

Uses of Workspace in oracle.jdeveloper.controller
 

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

Uses of Workspace in oracle.jdeveloper.junit
 

Methods in oracle.jdeveloper.junit with parameters of type Workspace
static UnitTestSuite UnitTestFactory.createTestSuite(Project project, Workspace workspace, java.lang.String sPackage, java.lang.String sClassName)
          This method is used to create a New TestSuite.
static UnitTestSuite UnitTestFactory.createTestSuite(Project project, Workspace workspace, java.lang.String sPackage, java.lang.String sClassName, boolean generateMain)
          Creates a new TestSuite.
static UnitTestSuite UnitTestFactory.createTestSuite(Project project, Workspace workspace, java.lang.String sPackage, java.lang.String sClassName, boolean generateMain, UnitTestRunnerChoice runner)
          Creates a new TestSuite.
static UnitTestCase UnitTestFactory.createClassTestCase(Project project, Workspace workspace, java.lang.String sPackage, java.lang.String sClassName)
          Creates an instance of a ClassTestCase.
static UnitTestCase UnitTestFactory.createClassTestCase(Project project, Workspace workspace, java.lang.String sPackage, java.lang.String sClassName, boolean generateMain)
          Creates an instance of a ClassTestCase.
static UnitTestCase UnitTestFactory.createClassTestCase(Project project, Workspace workspace, java.lang.String sPackage, java.lang.String sClassName, boolean generateMain, UnitTestRunnerChoice runner)
          Creates an instance of a ClassTestCase.
static UnitTestCase UnitTestFactory.createMethodTestCase(Project project, Workspace workspace, java.lang.String sPackage, java.lang.String sClassName)
          Creates a method test case.
static UnitTestCaseSuite UnitTestFactory.createSuiteTestCase(Project project, Workspace workspace, java.lang.String sPackage, java.lang.String sClassName)
          Creates a SuiteTestCase, which is a test case that implements the suite() method.
static UnitTestCaseSuite UnitTestFactory.createSuiteTestCase(Project project, Workspace workspace, java.lang.String sPackage, java.lang.String sClassName, boolean generateMain)
          Creates a SuiteTestCase, which is a test case that implements the suite() method.
static UnitTestCaseSuite UnitTestFactory.createSuiteTestCase(Project project, Workspace workspace, java.lang.String sPackage, java.lang.String sClassName, boolean generateMain, UnitTestRunnerChoice runner)
          Creates a SuiteTestCase, which is a test case that implements the suite() method.
static UnitTestFixture UnitTestFactory.createTestFixture(Project project, Workspace workspace, java.lang.String sPackage, java.lang.String sClassName)
          Creates a new TestFixture and adds a setUp and tearDown methods to it.
 

Uses of Workspace in oracle.jdeveloper.model
 

Methods in oracle.jdeveloper.model with parameters of type Workspace
static ApplicationContent ApplicationContent.getInstance(Workspace workspace)
          Returns a new ApplicationContent adapter for the specified Workspace.
 

Uses of Workspace in oracle.jdeveloper.refactoring.util
 

Methods in oracle.jdeveloper.refactoring.util with parameters of type Workspace
static java.util.HashSet Util.getDependentProjects(Workspace workspace, Project baseProject)
          return all the base project's dependent projects
static boolean Util.isClassInSources(Workspace workspace, Project project, SourceClass sourceClass)
          Return true if the class has its source defined in Project or in any of the base projects
static Project[] Util.getAffectedProjects(Workspace workspace, java.net.URL url)
          Returns all the projects that have the URL in their sources an their dependent projects.
static Project[] Util.getProjectsContainingSource(Workspace workspace, java.net.URL url)
           
static void Util.dumpProjectDependencies(Workspace workspace)
           
 

Uses of Workspace in oracle.jdeveloper.runner
 

Methods in oracle.jdeveloper.runner with parameters of type Workspace
 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 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.net.URL url, 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)
          Displays a source file in the code editor.
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.showUIDesigner(Workspace workspace, Project project, java.net.URL url)
          Displays a source file in the UI designer.
static boolean Source.showUIDesigner(Workspace workspace, Project project, Node node)
          Displays a source file in the UI designer.
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.
static java.net.URL Source.askSourceFinders(Workspace workspace, Project project, java.lang.String pkg, java.lang.String filename)
           
static java.net.URL Source.findURLForClass(Workspace workspace, 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(Workspace workspace, Project project, java.lang.String fullClassName)
           
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 Node[] Source.getOpenedFiles(Workspace workspace, Project project)
          Returns the files that are currently open in an editor.
 

Uses of Workspace in oracle.jdeveloper.vcs.util
 

Methods in oracle.jdeveloper.vcs.util that return Workspace
static Workspace[] VCSModelUtils.findCachedWorkspaces()
          Gets all open Workspace type nodes cached in the NodeFactory.
 


Extension SDK 10.1.3.36.73

 

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