Eclipse/プラグイン開発のTIPS集/RCPでスプラッシュスクリーンを閉じる
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
単語検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
// 下階層用テンプレート
#topicpath
----
//ここにコンテンツを記述します。
org.eclipse.core.runtime.Platform#endSplash() を実行する...
サンプル:
public Object run(Object args) throws Exception {
Display display = PlatformUI.createDisplay();
try {
final Session session = Session.getInstance();
Platform.endSplash();
if (!login(session))
return IPlatformRunnable.EXIT_OK;
int returnCode = PlatformUI.createAndRunWorkbench(d...
new ApplicationWorkbenchAdvisor());
if (returnCode == PlatformUI.RETURN_RESTART) {
return IPlatformRunnable.EXIT_RESTART;
}
return IPlatformRunnable.EXIT_OK;
} finally {
display.dispose();
}
}
これは[[Eclipse Rich Client Platform の本:http://www.amaz...
----
この記事は
#vote(おもしろかった,そうでもない)
#comment
#topicpath
SIZE(10){現在のアクセス:&counter;}
終了行:
// 下階層用テンプレート
#topicpath
----
//ここにコンテンツを記述します。
org.eclipse.core.runtime.Platform#endSplash() を実行する...
サンプル:
public Object run(Object args) throws Exception {
Display display = PlatformUI.createDisplay();
try {
final Session session = Session.getInstance();
Platform.endSplash();
if (!login(session))
return IPlatformRunnable.EXIT_OK;
int returnCode = PlatformUI.createAndRunWorkbench(d...
new ApplicationWorkbenchAdvisor());
if (returnCode == PlatformUI.RETURN_RESTART) {
return IPlatformRunnable.EXIT_RESTART;
}
return IPlatformRunnable.EXIT_OK;
} finally {
display.dispose();
}
}
これは[[Eclipse Rich Client Platform の本:http://www.amaz...
----
この記事は
#vote(おもしろかった,そうでもない)
#comment
#topicpath
SIZE(10){現在のアクセス:&counter;}
ページ名: