Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

また、Standalone ClientではJavaScriptが利用できないため、アプリケーションウインドウをコントロールするための手段が失われます。

ウインドウをコントロールするための ClientSession#getApplet()やJavaScriptで実現していた機能を代替するために、Standalone Clientにウインドウをコントロールするための API として com.nexaweb.client.displayservice.DisplayService に以下のAPIが追加されました。

Code Block
public Dimension getWindowSize(); // ウインドウサイズの取得
public String getWindowTitle(); // ウインドウタイトルの取得
public Point getWindowPosition(); // ウインドウ表示位置の取得
public void setWindowPosition(int x, int y);  // ウインドウ表示位置の設定
public Container getWindowContainer();  // コンテナの取得

注 : このAPIはStandalone Clientで稼働している場合のみ有効です。

NXPSR-11245 Standalone Clientでのスプラッシュ機能のサポート

...