|
JavaTM Platform Standard Ed. 6 |
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Object javax.swing.plaf.ComponentUI javax.swing.plaf.TableUI javax.swing.plaf.basic.BasicTableUI
public class BasicTableUI
BasicTableUI の実装です。
入れ子のクラスの概要 | |
---|---|
class |
BasicTableUI.FocusHandler
この内部クラスは「public」とマークされますが、これはコンパイラのバグが原因です。 |
class |
BasicTableUI.KeyHandler
この内部クラスは「public」とマークされますが、これはコンパイラのバグが原因です。 |
class |
BasicTableUI.MouseInputHandler
この内部クラスは「public」とマークされますが、これはコンパイラのバグが原因です。 |
フィールドの概要 | |
---|---|
protected FocusListener |
focusListener
|
protected KeyListener |
keyListener
|
protected MouseInputListener |
mouseInputListener
|
protected CellRendererPane |
rendererPane
|
protected JTable |
table
|
コンストラクタの概要 | |
---|---|
BasicTableUI()
|
メソッドの概要 | |
---|---|
protected FocusListener |
createFocusListener()
JTable でキーボードナビゲーションを処理するためのフォーカスリスナーを作成します。 |
protected KeyListener |
createKeyListener()
JTable でキーボードナビゲーションを処理するためのキーリスナーを作成します。 |
protected MouseInputListener |
createMouseInputListener()
JTable のマウスリスナーを作成します。 |
static ComponentUI |
createUI(JComponent c)
|
int |
getBaseline(JComponent c,
int width,
int height)
ベースラインを返します。 |
Component.BaselineResizeBehavior |
getBaselineResizeBehavior(JComponent c)
コンポーネントのサイズが変化するにつれてベースラインが変化する方法の列挙を返します。 |
Dimension |
getMaximumSize(JComponent c)
テーブルの最大サイズを返します。 |
Dimension |
getMinimumSize(JComponent c)
テーブルの最小サイズを返します。 |
Dimension |
getPreferredSize(JComponent c)
テーブルの適切なサイズを返します。 |
protected void |
installDefaults()
フォント、フォアグラウンド、バックグラウンドなどの JTable プロパティーを初期化します。 |
protected void |
installKeyboardActions()
JTable ですべてのキーボードアクションを登録します。 |
protected void |
installListeners()
JTable にリスナーを接続します。 |
void |
installUI(JComponent c)
Look & Feel に適した、指定されたコンポーネントを構成します。 |
void |
paint(Graphics g,
JComponent c)
installUI() により設定された table のインスタンス表現をペイントします。 |
protected void |
uninstallDefaults()
|
protected void |
uninstallKeyboardActions()
|
protected void |
uninstallListeners()
|
void |
uninstallUI(JComponent c)
installUI 時に、指定されたコンポーネントで構成された内容を取り消します。 |
クラス javax.swing.plaf.ComponentUI から継承されたメソッド |
---|
contains, getAccessibleChild, getAccessibleChildrenCount, update |
クラス java.lang.Object から継承されたメソッド |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
フィールドの詳細 |
---|
protected JTable table
protected CellRendererPane rendererPane
protected KeyListener keyListener
protected FocusListener focusListener
protected MouseInputListener mouseInputListener
コンストラクタの詳細 |
---|
public BasicTableUI()
メソッドの詳細 |
---|
protected KeyListener createKeyListener()
protected FocusListener createFocusListener()
protected MouseInputListener createMouseInputListener()
public static ComponentUI createUI(JComponent c)
public void installUI(JComponent c)
ComponentUI
の記述:ComponentUI
インスタンスが、指定されたコンポーネントの UI 委譲としてインストールされているときに呼び出されます。このメソッドは、次を含む Look & Feel 用のコンポーネントを完全に構成する必要があります。
LayoutManager
をインストールする
PropertyChangeListener
をコンポーネントに作成またはインストールする
ComponentUI
内の installUI
c
- UI 委譲がインストールされているコンポーネントComponentUI.uninstallUI(javax.swing.JComponent)
,
JComponent.setUI(javax.swing.plaf.ComponentUI)
,
JComponent.updateUI()
protected void installDefaults()
installUI(javax.swing.JComponent)
protected void installListeners()
protected void installKeyboardActions()
public void uninstallUI(JComponent c)
ComponentUI
の記述:installUI
時に、指定されたコンポーネントで構成された内容を取り消します。このメソッドは、指定されたコンポーネントの UI 委譲としての UIComponent
インスタンスが削除されているときに呼び出されます。このメソッドは、installUI
によって実行された構成を元に戻す必要があります。この場合、JComponent
インスタンスをクリーンな状態 (余分なリスナーや、Look & Feel 固有のプロパティーオブジェクトが残らないように) にするよう十分注意してください。手順には次のものがあります。
ComponentUI
内の uninstallUI
c
- この UI 委譲を削除するコンポーネント。 この引数は通常無視されるが、 UI オブジェクトに状態がなく、複数のコンポーネントに共有されている場合は 使用されることがあるComponentUI.installUI(javax.swing.JComponent)
,
JComponent.updateUI()
protected void uninstallDefaults()
protected void uninstallListeners()
protected void uninstallKeyboardActions()
public int getBaseline(JComponent c, int width, int height)
ComponentUI
内の getBaseline
c
- 要求される JComponent
ベースラインwidth
- ベースラインを取得する幅height
- ベースラインを取得する高さ
NullPointerException
- c
が null
の場合
IllegalArgumentException
- 幅または高さが 0 より小さい場合JComponent.getBaseline(int, int)
public Component.BaselineResizeBehavior getBaselineResizeBehavior(JComponent c)
ComponentUI
内の getBaselineResizeBehavior
c
- ベースラインのサイズ変更の動作を返す JComponent
NullPointerException
- c
が null
の場合JComponent.getBaseline(int, int)
public Dimension getMinimumSize(JComponent c)
ComponentUI
内の getMinimumSize
c
- 最小サイズを照会されるコンポーネント。 この引数は通常無視されるが、 UI オブジェクトに状態がなく、複数のコンポーネントに共有されている場合は 使用されることがある
Dimension
オブジェクト、または null
JComponent.getMinimumSize()
,
LayoutManager.minimumLayoutSize(java.awt.Container)
,
ComponentUI.getPreferredSize(javax.swing.JComponent)
public Dimension getPreferredSize(JComponent c)
ComponentUI
内の getPreferredSize
c
- 適切なサイズを照会されるコンポーネント。 この引数は通常無視されるが、 UI オブジェクトに状態がなく、複数のコンポーネントに共有されている場合は 使用されることがあるJComponent.getPreferredSize()
,
LayoutManager.preferredLayoutSize(java.awt.Container)
public Dimension getMaximumSize(JComponent c)
ComponentUI
内の getMaximumSize
c
- 最大サイズを照会されるコンポーネント。 この引数は通常無視されるが、 UI オブジェクトに状態がなく、複数のコンポーネントに共有されている場合は 使用されることがある
Dimension
オブジェクト、または null
JComponent.getMaximumSize()
,
LayoutManager2.maximumLayoutSize(java.awt.Container)
public void paint(Graphics g, JComponent c)
table
のインスタンス表現をペイントします。
ComponentUI
内の paint
g
- ペイント対象の Graphics
コンテキストc
- ペイントされるコンポーネント。 この引数は通常無視されるが、 UI オブジェクトに状態がなく、複数のコンポーネントに共有されている場合は 使用されることがあるComponentUI.update(java.awt.Graphics, javax.swing.JComponent)
|
JavaTM Platform Standard Ed. 6 |
|||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
Copyright 2009 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Documentation Redistribution Policy も参照してください。