org.eclipse.jface.window.Window.create()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(1.2k)|赞(0)|评价(0)|浏览(135)

本文整理了Java中org.eclipse.jface.window.Window.create()方法的一些代码示例,展示了Window.create()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Window.create()方法的具体详情如下:
包路径:org.eclipse.jface.window.Window
类名称:Window
方法名:create

Window.create介绍

[英]Creates this window's widgetry in a new top-level shell.

The default implementation of this framework method creates this window's shell (by calling createShell), and its controls (by calling createContents), then initializes this window's shell bounds (by calling initializeBounds).
[中]在新的顶级shell中创建此窗口的widgetry。
此框架方法的默认实现创建此窗口的外壳(通过调用createShell)及其控件(通过调用createContents),然后初始化此窗口的外壳边界(通过调用initializeBounds)。

代码示例

代码示例来源:origin: org.eclipse.platform/org.eclipse.jface

@Override
public void create() {
  super.create();
  applyDialogFont(buttonBar);
}

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jface

@Override
public void create() {
  super.create();
  applyDialogFont(buttonBar);
}

代码示例来源:origin: org.eclipse.rap/org.eclipse.rap.jface

public void create() {
  super.create();
  applyDialogFont(buttonBar);
}

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jface

shell = null;
create();

代码示例来源:origin: org.eclipse.rap/org.eclipse.rap.jface

shell = null;
create();

代码示例来源:origin: org.eclipse.platform/org.eclipse.jface

shell = null;
create();

相关文章