パッケージ | 説明 |
---|---|
javax.swing |
すべてのプラットフォーム上で可能なかぎり同じように機能する「軽量」(Java共通言語)コンポーネントのセットを提供します。
|
javax.swing.event |
Swingコンポーネントによってトリガーされるイベントを提供します。
|
javax.swing.plaf.basic |
基本Look & Feelに従って構築されたユーザー・インタフェース・オブジェクトを提供します。
|
javax.swing.plaf.metal |
デフォルトのLook & FeelであるJava Look & Feel (以前のコード名はMetal)に従って構築されたユーザー・インタフェース・オブジェクトを提供します。
|
javax.swing.plaf.synth |
Synthは、すべてのペイントが委譲されるスキン設定可能なLook & Feelです。
|
修飾子と型 | メソッドと説明 |
---|---|
JInternalFrame |
JOptionPane.createInternalFrame(Component parentComponent, String title)
JInternalFrame のインスタンスを生成し、それを返します。 |
JInternalFrame[] |
JDesktopPane.getAllFrames()
現在デスクトップに表示されているすべての
JInternalFrames を返します。 |
JInternalFrame[] |
JDesktopPane.getAllFramesInLayer(int layer)
デスクトップの指定したレイヤーに現在表示されているすべての
JInternalFrames を返します。 |
JInternalFrame |
JInternalFrame.JDesktopIcon.getInternalFrame()
この
DesktopIcon に関連付けられたJInternalFrame を返します。 |
JInternalFrame |
JDesktopPane.getSelectedFrame()
この
JDesktopPane の現在アクティブなJInternalFrame を返します。現在JInternalFrame がアクティブでない場合は、null を返します。 |
JInternalFrame |
JDesktopPane.selectFrame(boolean forward)
このデスクトップ・ペイン内の次の
JInternalFrame を選択します。 |
修飾子と型 | メソッドと説明 |
---|---|
void |
DesktopManager.activateFrame(JInternalFrame f)
通常、フレームがフォーカスを持つことを示します。
|
void |
DefaultDesktopManager.activateFrame(JInternalFrame f)
fをアクティブにして、フロントに移動します。
|
void |
DesktopManager.closeFrame(JInternalFrame f)
通常、フレームがその親から削除されます。
|
void |
DefaultDesktopManager.closeFrame(JInternalFrame f)
フレームを削除し、必要に応じてその親から
desktopIcon を削除します。 |
void |
DesktopManager.deactivateFrame(JInternalFrame f)
通常、フレームがフォーカスを失ったことを示します。
|
void |
DefaultDesktopManager.deactivateFrame(JInternalFrame f) |
void |
DesktopManager.deiconifyFrame(JInternalFrame f)
通常、既存のアイコン表現をすべて削除し、フレームをその元のサイズと位置に復元します。
|
void |
DefaultDesktopManager.deiconifyFrame(JInternalFrame f)
desktopIconをその親から削除して、そのフレームを親に追加します。
|
protected Rectangle |
DefaultDesktopManager.getBoundsForIconOf(JInternalFrame f)
iconifyFrame()のコードはこのメソッドを呼び出して、desktopIconの適切な境界を指定します。
|
Component |
InternalFrameFocusTraversalPolicy.getInitialComponent(JInternalFrame frame)
JinternalFrameが最初に選択されたときにフォーカスを受け取るComponentを返します。
|
protected Rectangle |
DefaultDesktopManager.getPreviousBounds(JInternalFrame f)
コンポーネントの通常の境界をコンポーネント最大化の直前に返します。
|
void |
DesktopManager.iconifyFrame(JInternalFrame f)
通常、フレームをその親から削除してアイコン表現を追加します。
|
void |
DefaultDesktopManager.iconifyFrame(JInternalFrame f)
フレームをその親から削除して、その
desktopIcon を親に追加します。 |
void |
DesktopManager.maximizeFrame(JInternalFrame f)
通常、フレームはその親の境界に一致するようにサイズ変更されます。
|
void |
DefaultDesktopManager.maximizeFrame(JInternalFrame f)
その親の境界を満たすように、フレームのサイズを変更します。
|
void |
DesktopManager.minimizeFrame(JInternalFrame f)
通常、maximizeFrame()の呼出し前のサイズと位置にフレームが復元されることを示します。
|
void |
DefaultDesktopManager.minimizeFrame(JInternalFrame f)
maximizeFrame の呼出し前のサイズと位置にフレームを復元します。 |
void |
DesktopManager.openFrame(JInternalFrame f)
可能な場合、フレームを適切な位置に表示します。
|
void |
DefaultDesktopManager.openFrame(JInternalFrame f)
このメソッドは通常は呼び出されません。
|
protected void |
DefaultDesktopManager.removeIconFor(JInternalFrame f)
fのdesktopIconを削除する簡易メソッドが必要です。
|
void |
JInternalFrame.JDesktopIcon.setInternalFrame(JInternalFrame f)
この
DesktopIcon に関連付けるJInternalFrame を設定します。 |
protected void |
DefaultDesktopManager.setPreviousBounds(JInternalFrame f, Rectangle r)
コンポーネントの境界を、最大呼出しの直前に格納します。
|
void |
JDesktopPane.setSelectedFrame(JInternalFrame f)
この
JDesktopPane に現在アクティブなJInternalFrame を設定します。 |
protected void |
DefaultDesktopManager.setWasIcon(JInternalFrame f, Boolean value)
コンポーネントがアイコン化されて
desktopIcon の境界が有効であるように設定します。 |
protected boolean |
DefaultDesktopManager.wasIcon(JInternalFrame f)
コンポーネントがアイコン化されて
desktopIcon の境界が有効であればtrue 、そうでない場合はfalse を返します。 |
コンストラクタと説明 |
---|
JDesktopIcon(JInternalFrame f)
内部フレームのアイコンを作成します。
|
修飾子と型 | メソッドと説明 |
---|---|
JInternalFrame |
InternalFrameEvent.getInternalFrame()
イベントの発生元を返します。
|
コンストラクタと説明 |
---|
InternalFrameEvent(JInternalFrame source, int id)
InternalFrameEvent オブジェクトを構築します。 |
修飾子と型 | フィールドと説明 |
---|---|
protected JInternalFrame |
BasicDesktopIconUI.frame |
protected JInternalFrame |
BasicInternalFrameTitlePane.frame |
protected JInternalFrame |
BasicInternalFrameUI.frame |
修飾子と型 | メソッドと説明 |
---|---|
protected void |
BasicInternalFrameUI.activateFrame(JInternalFrame f)
フレームが選択状態になるときに呼び出されます。
|
protected void |
BasicInternalFrameUI.closeFrame(JInternalFrame f)
ユーザーがフレームを閉じるときに呼び出されます。
|
protected MouseInputAdapter |
BasicInternalFrameUI.createBorderListener(JInternalFrame w) |
protected JComponent |
BasicInternalFrameUI.createEastPane(JInternalFrame w) |
protected JComponent |
BasicInternalFrameUI.createNorthPane(JInternalFrame w) |
protected JComponent |
BasicInternalFrameUI.createSouthPane(JInternalFrame w) |
protected JComponent |
BasicInternalFrameUI.createWestPane(JInternalFrame w) |
protected void |
BasicInternalFrameUI.deactivateFrame(JInternalFrame f)
フレームの選択が解除されるときに呼び出されます。
|
protected void |
BasicInternalFrameUI.deiconifyFrame(JInternalFrame f)
ユーザーがフレームのアイコン化を解除するときに呼び出されます。
|
protected void |
BasicInternalFrameUI.iconifyFrame(JInternalFrame f)
ユーザーがフレームをアイコン化するときに呼び出されます。
|
protected void |
BasicInternalFrameUI.maximizeFrame(JInternalFrame f)
ユーザーがフレームを最大化するときに呼び出されます。
|
protected void |
BasicInternalFrameUI.minimizeFrame(JInternalFrame f)
ユーザーがフレームを最小化するときに呼び出されます。
|
protected void |
BasicInternalFrameTitlePane.postClosingEvent(JInternalFrame frame)
通常のFrameと同様に処理できるように、フレームにWINDOW_CLOSINGに似たイベントを送信します。
|
コンストラクタと説明 |
---|
BasicInternalFrameTitlePane(JInternalFrame f) |
BasicInternalFrameUI(JInternalFrame b) |
修飾子と型 | メソッドと説明 |
---|---|
protected MouseInputAdapter |
MetalInternalFrameUI.createBorderListener(JInternalFrame w)
TitlePaneにインストールする
MouseInputAdapter を返します。 |
protected JComponent |
MetalInternalFrameUI.createNorthPane(JInternalFrame w) |
コンストラクタと説明 |
---|
MetalInternalFrameTitlePane(JInternalFrame f) |
MetalInternalFrameUI(JInternalFrame b) |
修飾子と型 | メソッドと説明 |
---|---|
protected JComponent |
SynthInternalFrameUI.createNorthPane(JInternalFrame w) |
コンストラクタと説明 |
---|
SynthInternalFrameUI(JInternalFrame b) |
バグまたは機能を送信
詳細なAPIリファレンスおよび開発者ドキュメントについては、Java SEのドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright© 1993, 2014, Oracle and/or its affiliates. All rights reserved.