| パッケージ | 説明 |
|---|---|
| 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 |
DefaultDesktopManager.activateFrame(JInternalFrame f)
fをアクティブにして、フロントに移動します。
|
|
void |
DesktopManager.activateFrame(JInternalFrame f)
通常、フレームがフォーカスを持つことを示します。
|
|
void |
DefaultDesktopManager.closeFrame(JInternalFrame f)
フレームを削除し、必要に応じてその親から
desktopIconを削除します。 |
|
void |
DesktopManager.closeFrame(JInternalFrame f)
通常、フレームがその親から削除されます。
|
|
void |
DefaultDesktopManager.deactivateFrame(JInternalFrame f) |
|
void |
DesktopManager.deactivateFrame(JInternalFrame f)
通常、フレームがフォーカスを失ったことを示します。
|
|
void |
DefaultDesktopManager.deiconifyFrame(JInternalFrame f)
desktopIconをその親から削除して、そのフレームを親に追加します。
|
|
void |
DesktopManager.deiconifyFrame(JInternalFrame f)
通常、既存のアイコン表現をすべて削除し、フレームをその元のサイズと位置に復元します。
|
|
protected Rectangle |
DefaultDesktopManager.getBoundsForIconOf(JInternalFrame f)
iconifyFrame()のコードはこのメソッドを呼び出して、desktopIconの適切な境界を指定します。
|
|
Component |
InternalFrameFocusTraversalPolicy.getInitialComponent(JInternalFrame frame)
JinternalFrameが最初に選択されたときにフォーカスを受け取るComponentを返します。
|
|
protected Rectangle |
DefaultDesktopManager.getPreviousBounds(JInternalFrame f)
コンポーネントの通常の境界をコンポーネント最大化の直前に返します。
|
|
void |
DefaultDesktopManager.iconifyFrame(JInternalFrame f)
フレームをその親から削除して、その
desktopIconを親に追加します。 |
|
void |
DesktopManager.iconifyFrame(JInternalFrame f)
通常、フレームをその親から削除してアイコン表現を追加します。
|
|
void |
DefaultDesktopManager.maximizeFrame(JInternalFrame f)
その親の境界を満たすように、フレームのサイズを変更します。
|
|
void |
DesktopManager.maximizeFrame(JInternalFrame f)
通常、フレームはその親の境界に一致するようにサイズ変更されます。
|
|
void |
DefaultDesktopManager.minimizeFrame(JInternalFrame f)
maximizeFrameの呼出し前のサイズと位置にフレームを復元します。 |
|
void |
DesktopManager.minimizeFrame(JInternalFrame f)
通常、maximizeFrame()の呼出し前のサイズと位置にフレームが復元されることを示します。
|
|
void |
DefaultDesktopManager.openFrame(JInternalFrame f)
このメソッドは通常は呼び出されません。
|
|
void |
DesktopManager.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 |
BasicInternalFrameUI.frame |
|
protected JInternalFrame |
BasicDesktopIconUI.frame |
|
protected JInternalFrame |
BasicInternalFrameTitlePane.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, 2025, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Documentation Redistribution Policyも参照してください。