本文整理汇总了Java中org.eclipse.ui.IEditorSite.getPage方法的典型用法代码示例。如果您正苦于以下问题:Java IEditorSite.getPage方法的具体用法?Java IEditorSite.getPage怎么用?Java IEditorSite.getPage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.ui.IEditorSite
的用法示例。
在下文中一共展示了IEditorSite.getPage方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: init
import org.eclipse.ui.IEditorSite; //导入方法依赖的package包/类
@Override
public void init(IEditorSite site, IEditorInput input) throws PartInitException {
super.init(site, input);
if (site == null) {
return;
}
IWorkbenchPage page = site.getPage();
if (page == null) {
return;
}
// workaround to show action set for block mode etc.
// https://www.eclipse.org/forums/index.php/t/366630/
page.showActionSet("org.eclipse.ui.edit.text.actionSet.presentation");
}
示例2: init
import org.eclipse.ui.IEditorSite; //导入方法依赖的package包/类
@Override
public void init(IEditorSite site, IEditorInput input) throws PartInitException {
super.init(site, input);
// Show the 'presentation' action set with the 'Toggle Block SelectionMode' and
// 'Show Whitespace Characters' actions.
IWorkbenchPage page = site.getPage();
page.showActionSet("org.eclipse.ui.edit.text.actionSet.presentation");
}