本文整理汇总了Java中org.eclipse.ui.IWorkbenchPage.activate方法的典型用法代码示例。如果您正苦于以下问题:Java IWorkbenchPage.activate方法的具体用法?Java IWorkbenchPage.activate怎么用?Java IWorkbenchPage.activate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.ui.IWorkbenchPage
的用法示例。
在下文中一共展示了IWorkbenchPage.activate方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: openConnectorEditor
import org.eclipse.ui.IWorkbenchPage; //导入方法依赖的package包/类
public void openConnectorEditor() {
Connector connector = getObject();
synchronized (connector) {
IWorkbenchPage activePage = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
if (activePage != null) {
IEditorPart editorPart = getConnectorEditor(activePage, connector);
if (editorPart != null)
activePage.activate(editorPart);
else {
try {
editorPart = activePage.openEditor(new ConnectorEditorInput(connector),
"com.twinsoft.convertigo.eclipse.editors.connector.ConnectorEditor");
} catch (PartInitException e) {
ConvertigoPlugin.logException(e,
"Error while loading the connector editor '"
+ connector.getName() + "'");
}
}
}
}
}
示例2: openSequenceEditor
import org.eclipse.ui.IWorkbenchPage; //导入方法依赖的package包/类
public void openSequenceEditor() {
Sequence sequence = getObject();
synchronized (sequence) {
IWorkbenchPage activePage = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
if (activePage != null) {
IEditorPart editorPart = getSequenceEditor(activePage, sequence);
if (editorPart != null) {
activePage.activate(editorPart);
}
else {
try {
editorPart = activePage.openEditor(new SequenceEditorInput(sequence),
"com.twinsoft.convertigo.eclipse.editors.sequence.SequenceEditor");
} catch (PartInitException e) {
ConvertigoPlugin.logException(e,
"Error while loading the sequence editor '"
+ sequence.getName() + "'");
}
}
}
}
}
示例3: getInstance
import org.eclipse.ui.IWorkbenchPage; //导入方法依赖的package包/类
/**
* Returns the instance of this view in the active workbench page. Will open the view if not open already. Returns
* <code>null</code> on error (e.g. not invoked from UI thread).
*
* @param activate
* if true, the view will be brought to the front.
*/
public static TestResultsView getInstance(boolean activate) {
try {
final IWorkbenchPage page = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
final TestResultsView view = (TestResultsView) page.showView(ID);
if (activate)
page.activate(view);
return view;
} catch (Exception e) {
return null;
}
}
示例4: execute
import org.eclipse.ui.IWorkbenchPage; //导入方法依赖的package包/类
@Execute
public void execute() {
try {
// --- Show or hide the console view ----------
IWorkbenchPage wbPage = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage();
IViewPart viewConsole = wbPage.findView(AppModelId.PART_ORG_AGENTGUI_CORE_PART_CONSOLE);
if (viewConsole==null) {
// --- Open console view ------------------
wbPage.showView(AppModelId.PART_ORG_AGENTGUI_CORE_PART_CONSOLE);
} else {
// --- Close console view -----------------
int currentState = wbPage.getPartState(wbPage.getReference(viewConsole));
if (currentState==IWorkbenchPage.STATE_MAXIMIZED) {
wbPage.activate(viewConsole);
wbPage.setPartState(wbPage.getReference(viewConsole), IWorkbenchPage.STATE_RESTORED);
// --- To be progressed! --------------
wbPage.resetPerspective();
}
wbPage.hideView(viewConsole);
}
} catch (PartInitException e) {
e.printStackTrace();
}
}
示例5: openJobInEditor
import org.eclipse.ui.IWorkbenchPage; //导入方法依赖的package包/类
private void openJobInEditor(IWorkbenchPage page, ELTGraphicalEditorInput input) throws PartInitException {
page.openEditor(input, ELTGraphicalEditor.ID, true);
IWorkbench workbench = PlatformUI.getWorkbench();
IWorkbenchWindow activeWindow = workbench.getActiveWorkbenchWindow();
if (activeWindow != null) {
final IWorkbenchPage activePage = activeWindow.getActivePage();
if (activePage != null) {
activePage.activate(activePage.findEditor(input));
}
}
}