| org.eclipse.ui.actions.OpenInNewWindowAction
OpenInNewWindowAction | public class OpenInNewWindowAction extends Action implements ActionFactory.IWorkbenchAction(Code) | | Opens a new window. The initial perspective
for the new window will be the same type as
the active perspective in the window which this
action is running in. The default input for the
new window's page is application-specific.
|
Method Summary | |
public void | dispose() | public void | run() The implementation of this IAction method
opens a new window. | public void | setPageInput(IAdaptable input) Set the input to use for the new window's page. |
OpenInNewWindowAction | public OpenInNewWindowAction(IWorkbenchWindow window)(Code) | | Creates a new OpenInNewWindowAction . Sets
the new window page's input to be an application-specific
default.
Parameters: window - the workbench window containing this action |
OpenInNewWindowAction | public OpenInNewWindowAction(IWorkbenchWindow window, IAdaptable input)(Code) | | Creates a new OpenInNewWindowAction .
Parameters: window - the workbench window containing this action Parameters: input - the input for the new window's page |
dispose | public void dispose()(Code) | | |
run | public void run()(Code) | | The implementation of this IAction method
opens a new window. The initial perspective
for the new window will be the same type as
the active perspective in the window which this
action is running in.
|
setPageInput | public void setPageInput(IAdaptable input)(Code) | | Set the input to use for the new window's page.
Parameters: input - the input |
|
|