|
Extension SDK 10.1.2 | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object oracle.ide.runner.Runner
The Runner
class provides methods that interact with the
runner. It is used by the runner, debugger, profiler, and code coach.
Constructor Summary | |
Runner()
|
Method Summary | |
abstract void |
addTerminateMenu(RunProcess runProcess)
Adds a terminate menu item for the given RunProcess to the Run -> Terminate submenu. |
abstract boolean |
couldNodeBeRunnable(Node node)
Returns true if there is a StarterFactory registered for the class of the given node. |
abstract boolean |
couldNodeBeRunnable(Node node,
java.lang.Class starterFactorySubClass)
Returns true if there is a StarterFactory registered for the class of the given node and the StarterFactory is an instanceof the specified subclass. |
abstract boolean |
enableRunDebugActions(Context context,
java.lang.Class starterFactorySubClass)
This method is used by the run and debug systems in order to set the enable/disable state of the run and debug actions. |
abstract java.lang.Class[] |
getClassesWithRegisteredStarterFactory()
Returns an array of target classes for which there are one or more StarterFactory registered. |
abstract Folder |
getProcessesFolder()
Returns the folder within the run manager that contains active processes. |
abstract Navigable |
getProjectSettingsRunnerNavigable()
Returns the Project Settings Runner Navigable. |
abstract AbstractStarterFactory[] |
getRegisteredStarterFactories(java.lang.Class targetClass)
Returns an array of StarterFactory that have been registered for the given target class. |
abstract AbstractStarterFactory[] |
getRegisteredStarterFactories(java.lang.Class targetClass,
java.lang.Class starterFactorySubClass)
Returns an array of StarterFactory that have been registered for the given target class, and that are instanceof the specified subclass. |
abstract Folder |
getRunManagerFolder()
Returns the Run Manager Folder |
abstract NavigatorWindow |
getRunManagerWindow()
Returns the Run Manager Window |
abstract javax.swing.JMenu |
getRunMenu()
Returns the run menu that the Run Manager has added to the main menu bar. |
static Runner |
getRunner()
Returns the Runner instance that is active in the IDE. |
abstract AbstractStarterFactory[] |
getStarterFactoriesForTarget(java.lang.Class targetClass)
Returns an array of StarterFactory that have been registered for a class that is the same as the given target class or one of its superclasses. |
abstract AbstractStarterFactory[] |
getStarterFactoriesForTarget(java.lang.Class targetClass,
java.lang.Class starterFactorySubClass)
Returns an array of StarterFactory that have been registered for a class that is the same as the given target class or one of its superclasses, and that are instanceof the specified subclass. |
abstract IdeAction |
getViewRunManagerAction()
Return the action for View | Run Manager. |
abstract boolean |
isRunManagerVisible()
Returns true if the run manager is visible |
abstract boolean |
isRunning(Project project)
This methods checks if any application in the specified project are running. |
abstract void |
registerStarterFactory(java.lang.Class targetClass,
StarterFactory starterFactory)
Registers the specified StarterFactory as a StarterFactory that can create a Starter that may start processes with the specified type of target. |
abstract void |
removeTerminateMenu(RunProcess runProcess)
Removes the terminate menu item for the given RunProcess from the Run -> Terminate submenu. |
abstract boolean |
selectProcess(RunProcess runProcess)
Selects the given process in the Run Manager window. |
abstract void |
setProjectSettingsRunnerNavigable(Navigable navigable)
Sets the Project Settings Runner Navigable. |
static void |
setRunner(Runner runner)
Publishes the specified Runner as the active instance in the IDE. |
abstract boolean |
terminate(Project project,
boolean force)
This methods requests the runner to terminate all processe running under the specified project . |
abstract void |
unregisterStarterFactory(java.lang.Class targetClass,
StarterFactory starterFactory)
Unregisters the specified StarterFactory for the specified type of target. |
abstract void |
viewRunManager()
Shows the Run Manager window. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public Runner()
Method Detail |
public static Runner getRunner()
public static void setRunner(Runner runner)
public abstract boolean isRunning(Project project)
project
are running. If the project
parameter is null, the method checks if any application under
any project is running.
public abstract boolean terminate(Project project, boolean force)
project
. If the project
parameter is null, the method tries to terminate all running processes.
If the force
parameter is false, the user is asked to
confirm termination of any running process.
public abstract javax.swing.JMenu getRunMenu()
public abstract NavigatorWindow getRunManagerWindow()
public abstract Folder getRunManagerFolder()
public abstract Folder getProcessesFolder()
public abstract void viewRunManager()
public abstract boolean isRunManagerVisible()
public abstract IdeAction getViewRunManagerAction()
public abstract boolean selectProcess(RunProcess runProcess)
runProcess
- the process to be selected.public abstract void addTerminateMenu(RunProcess runProcess)
runProcess
- the RunProcess that needs a terminate menupublic abstract void removeTerminateMenu(RunProcess runProcess)
runProcess
- the RunProcess that has a terminate menu that
should be removedpublic abstract void registerStarterFactory(java.lang.Class targetClass, StarterFactory starterFactory)
For example, if the targetClass param specifies JavaNode, then the starterFactory param should be able to create a Starter that may be able to start some processes where the target is a JavaNode.
A StarterFactory or its corresponding Starter may refuse to start a process at any time for any reason. For example, the StarterFactory associated with the Starter that starts Java applications would be registered with the target class JavaNode, but would refuse to start a process if the target class did not contain a "main" method.
More than one starter factory can be registered for the same target class. For example, the StarterFactory corresponding to the Starter that starts Java applications and the StarterFactory corresponding to the Starter that starts Java servlets would both be registered for the target class JavaNode. The last StarterFactory registered for a given class has first chance.
Also, one starter factory can be registered for more than one target class. For example, it may make sense to have one StarterFactory and corresponding Starter that starts both Java servlets and JSP pages. That single StarterFactory would be registered for the target classes JavaNode and JspSourceNode.
targetClass
- the class of the target elementstarterFactory
- the starterFactory to registerpublic abstract void unregisterStarterFactory(java.lang.Class targetClass, StarterFactory starterFactory)
A new StarterFactory that wants to obscure, modify, or extend the behavior of an existing StarterFactory may unregister the existing StarterFactory.
targetClass
- the class of the target elementstarterFactory
- the starterFactory to unregisterpublic abstract java.lang.Class[] getClassesWithRegisteredStarterFactory()
public abstract AbstractStarterFactory[] getRegisteredStarterFactories(java.lang.Class targetClass)
targetClass
- the class of the target element
public abstract AbstractStarterFactory[] getRegisteredStarterFactories(java.lang.Class targetClass, java.lang.Class starterFactorySubClass)
targetClass
- the class of the target elementstarterFactorySubClass
- a subclass of StarterFactory
public abstract AbstractStarterFactory[] getStarterFactoriesForTarget(java.lang.Class targetClass)
targetClass
- the class of the target element
public abstract AbstractStarterFactory[] getStarterFactoriesForTarget(java.lang.Class targetClass, java.lang.Class starterFactorySubClass)
targetClass
- the class of the target elementstarterFactorySubClass
- a subclass of StarterFactory
public abstract boolean couldNodeBeRunnable(Node node)
public abstract boolean couldNodeBeRunnable(Node node, java.lang.Class starterFactorySubClass)
starterFactorySubClass
- a subclass of StarterFactory
public abstract boolean enableRunDebugActions(Context context, java.lang.Class starterFactorySubClass)
Returns true if there is a StarterFactory registered for the class of the document in the given context, the registered StarterFactory is an instanceof the specified subclass and either of the following conditions are met:
starterFactorySubClass
- a subclass of StarterFactory
public abstract Navigable getProjectSettingsRunnerNavigable()
public abstract void setProjectSettingsRunnerNavigable(Navigable navigable)
navigable
- the Project Settings Runner Navigable
|
Extension SDK | ||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright © 1997, 2004, Oracle. All rights reserved.