まくまくJavaノート
JFace - JFace のウィンドウのタイトルを設定する
2010-08-21

jface-window-title.png

ウィンドウのタイトルを取得するには、ApplicationWindow クラスのスーパークラスである Window クラスの getShell メソッドを使って Shell オブジェクトを取得し、setText を実行します。

Shell org.eclipse.jface.window.Window#getShell()
void org.eclipse.swt.widgets.Decorations#setText(String arg0)

サンプルコード

@Override
protected Control createContents(Composite parent) {
    getShell().setText("Hello JFace");
    parent.setSize(300, 200);
    return parent;
}
2010-08-21