|
JavaTM 2 Platform Std. Ed. v1.4.0 |
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Object | +--java.awt.Component | +--java.awt.Container | +--javax.swing.JComponent | +--javax.swing.JComboBox
ボタン、または編集可能フィールドとドロップダウンリストを組み合わせたコンポーネントです。ユーザは要求に応じて表示されるドロップダウンリストから値を選択できます。コンボボックスを編集可能にすると、編集可能なフィールドを持つようになり、ユーザが値を自由に入力できるようになります。
標準の Look & Feel (L&F) 表現でこのコンポーネントが使用するキーボードのキーについては、「JComboBox
のキーの割り当て」を参照してください。
警告:
このクラスの直列化オブジェクトは今後リリースされる Swing との互換性はありません。現在サポートされている直列化は、短期間の保管、または同じバージョンの Swing が稼働しているアプリケーション間の RMI に適しています。1.4 からは、すべての JavaBeansTM の長期間の保管が java.beans
パッケージで追加サポートされています。XMLEncoder
を参照してください。
詳細は 「The Java Tutorial」 の「How to Use Combo Boxes」を参照してください。
ComboBoxModel
,
DefaultComboBoxModel
入れ子クラスの概要 | |
protected class |
JComboBox.AccessibleJComboBox
このクラスは JComboBox クラス用のユーザ補助機能のサポートを実装しています。 |
static interface |
JComboBox.KeySelectionManager
KeySelectionManager を定義するインタフェースです。 |
クラス javax.swing.JComponent から継承した入れ子クラス |
|
クラス java.awt.Container から継承した入れ子クラス |
|
クラス java.awt.Component から継承した入れ子クラス |
Component.BltBufferStrategy, Component.FlipBufferStrategy |
フィールドの概要 | |
protected String |
actionCommand
この protected フィールドは実装固有のものです。 |
protected ComboBoxModel |
dataModel
この protected フィールドは実装固有のものです。 |
protected ComboBoxEditor |
editor
この protected フィールドは実装固有のものです。 |
protected boolean |
isEditable
この protected フィールドは実装固有のものです。 |
protected JComboBox.KeySelectionManager |
keySelectionManager
この protected フィールドは実装固有のものです。 |
protected boolean |
lightWeightPopupEnabled
この protected フィールドは実装固有のものです。 |
protected int |
maximumRowCount
この protected フィールドは実装固有のものです。 |
protected ListCellRenderer |
renderer
この protected フィールドは実装固有のものです。 |
protected Object |
selectedItemReminder
この protected フィールドは実装固有のものです。 |
クラス javax.swing.JComponent から継承したフィールド |
accessibleContext, listenerList, TOOL_TIP_TEXT_KEY, ui, UNDEFINED_CONDITION, WHEN_ANCESTOR_OF_FOCUSED_COMPONENT, WHEN_FOCUSED, WHEN_IN_FOCUSED_WINDOW |
クラス java.awt.Component から継承したフィールド |
BOTTOM_ALIGNMENT, CENTER_ALIGNMENT, LEFT_ALIGNMENT, RIGHT_ALIGNMENT, TOP_ALIGNMENT |
インタフェース java.awt.image.ImageObserver から継承したフィールド |
ABORT, ALLBITS, ERROR, FRAMEBITS, HEIGHT, PROPERTIES, SOMEBITS, WIDTH |
コンストラクタの概要 | |
JComboBox()
デフォルトのデータモデルで JComboBox を生成します。 |
|
JComboBox(ComboBoxModel aModel)
項目を既存の ComboBoxModel から取得する JComboBox を生成します。 |
|
JComboBox(Object[] items)
指定された配列に要素を格納する JComboBox を生成します。 |
|
JComboBox(Vector items)
指定された Vector に要素を格納する JComboBox を生成します。 |
メソッドの概要 | |
void |
actionPerformed(ActionEvent e)
このメソッドは public になっていますが、これは実装の副作用によるものです。 |
void |
addActionListener(ActionListener l)
ActionListener を追加します。
|
void |
addItem(Object anObject)
項目を項目リストに追加します。 |
void |
addItemListener(ItemListener aListener)
ItemListener を追加します。
|
void |
addPopupMenuListener(PopupMenuListener l)
コンボボックスのポップアップから通知メッセージを受け取る PopupMenu リスナーを追加します。
|
void |
configureEditor(ComboBoxEditor anEditor,
Object anItem)
指定された項目でエディタを初期化します。 |
protected void |
configurePropertiesFromAction(Action a)
Action インスタンスの値に従って ActionEvent ソースのプロパティを設定するファクトリメソッドです。 |
void |
contentsChanged(ListDataEvent e)
このメソッドは public になっていますが、これは実装の副作用によるものです。 |
protected PropertyChangeListener |
createActionPropertyChangeListener(Action a)
プロパティが Action インスタンスを変更した時に ActionEvent ソースの更新に使用する PropertyChangeListener を生成するファクトリメソッドです。 |
protected JComboBox.KeySelectionManager |
createDefaultKeySelectionManager()
デフォルトのキー選択マネージャのインスタンスを返します。 |
protected void |
fireActionEvent()
このイベントタイプで通知を登録したすべてのリスナーに通知します。 |
protected void |
fireItemStateChanged(ItemEvent e)
このイベントタイプで通知を登録したすべてのリスナーに通知します。 |
void |
firePopupMenuCanceled()
コンボボックスのポップアップ部分が取り消されたことを PopupMenuListener に通知します。
|
void |
firePopupMenuWillBecomeInvisible()
コンボボックスのポップアップ部分が不可視状態になったことを PopupMenuListener に通知します。
|
void |
firePopupMenuWillBecomeVisible()
コンボボックスのポップアップ部分が可視状態になったことを PopupMenuListener に通知します。
|
AccessibleContext |
getAccessibleContext()
この JComboBox に関連付けられた AccessibleContext を返します。 |
Action |
getAction()
この ActionEvent ソースに現在設定されている Action を返します。 |
String |
getActionCommand()
アクションリスナーに送られるイベントに含まれているアクションコマンドを返します。 |
ActionListener[] |
getActionListeners()
addActionListener() でこの JComboBox に追加される、すべての ActionListener の配列を返します。 |
ComboBoxEditor |
getEditor()
選択された項目を JComboBox フィールドで描画および編集するために使用するエディタを返します。 |
Object |
getItemAt(int index)
指定されたインデックスのリスト項目を返します。 |
int |
getItemCount()
リスト内の項目の数を返します。 |
ItemListener[] |
getItemListeners()
addItemListener() でこの JComboBox に追加される、すべての ItemListener の配列を返します。 |
JComboBox.KeySelectionManager |
getKeySelectionManager()
リストのキー選択マネージャを返します。 |
int |
getMaximumRowCount()
コンボボックスがスクロールバーを使用しないで表示できる最大の項目数を返します。 |
ComboBoxModel |
getModel()
JComboBox によって現在使用されているデータモデルを返します。 |
PopupMenuListener[] |
getPopupMenuListeners()
addPopupMenuListener() でこの JComboBox に追加される、すべての PopupMenuListener の配列を返します。 |
Object |
getPrototypeDisplayValue()
表示高さと表示幅の計算に使用されるオブジェクトである「表示プロトタイプ」値を返します。 |
ListCellRenderer |
getRenderer()
選択された項目を JComboBox フィールドで表示するのに使われるレンダリングを返します。 |
int |
getSelectedIndex()
指定された項目に一致する、リスト内の最初の項目を返します。 |
Object |
getSelectedItem()
現在選択されている項目を返します。 |
Object[] |
getSelectedObjects()
選択されている項目を含む配列を返します。 |
ComboBoxUI |
getUI()
このコンポーネントを描画する L&F オブジェクトを返します。 |
String |
getUIClassID()
このコンポーネントを描画する L&F クラスの名前を返します。 |
void |
hidePopup()
コンボボックスにポップアップウィンドウを閉じさせます。 |
void |
insertItemAt(Object anObject,
int index)
項目を項目リストのインデックスで指定された位置に追加します。 |
protected void |
installAncestorListener()
|
void |
intervalAdded(ListDataEvent e)
このメソッドは public になっていますが、これは実装の副作用によるものです。 |
void |
intervalRemoved(ListDataEvent e)
このメソッドは public になっていますが、これは実装の副作用によるものです。 |
boolean |
isEditable()
JComboBox が編集可能な場合は true を返します。 |
boolean |
isLightWeightPopupEnabled()
lightWeightPopupEnabled プロパティの値を返します。 |
boolean |
isPopupVisible()
ポップアップの可視性を判定します。 |
protected String |
paramString()
この JComboBox の文字列表現を返します。 |
void |
processKeyEvent(KeyEvent e)
Tab キーを探しながら、 KeyEvent を処理します。 |
void |
removeActionListener(ActionListener l)
ActionListener を削除します。 |
void |
removeAllItems()
項目リストからすべての項目を削除します。 |
void |
removeItem(Object anObject)
項目を項目リストから削除します。 |
void |
removeItemAt(int anIndex)
anIndex 位置の項目を削除します。 |
void |
removeItemListener(ItemListener aListener)
ItemListener を削除します。 |
void |
removePopupMenuListener(PopupMenuListener l)
PopupMenuListener を削除します。 |
protected void |
selectedItemChanged()
この protected メソッドは実装固有のものです。 |
boolean |
selectWithKeyChar(char keyChar)
指定されたキーボードの文字に対応するリスト項目を選択し、その文字に対応する項目がある場合に true を返します。 |
void |
setAction(Action a)
ActionEvent ソースに Action を設定します。 |
void |
setActionCommand(String aCommand)
アクションリスナーに送られるイベントに含まれなければならないアクションコマンドを設定します。 |
void |
setEditable(boolean aFlag)
JComboBox フィールドが編集可能かどうかを指定します。 |
void |
setEditor(ComboBoxEditor anEditor)
選択された項目を JComboBox フィールドでペイントおよび編集するために使用されるエディタを設定します。 |
void |
setEnabled(boolean b)
項目を選択できるようにコンボボックスを有効にします。 |
void |
setKeySelectionManager(JComboBox.KeySelectionManager aManager)
キーボードの文字をリストの選択に変換するオブジェクトを設定します。 |
void |
setLightWeightPopupEnabled(boolean aFlag)
lightWeightPopupEnabled プロパティを設定します。 |
void |
setMaximumRowCount(int count)
JComboBox が表示する最大の行数を設定します。 |
void |
setModel(ComboBoxModel aModel)
JComboBox が項目のリストを取得するために使用するデータモデルを設定します。 |
void |
setPopupVisible(boolean v)
ポップアップの可視性を設定します。 |
void |
setPrototypeDisplayValue(Object prototypeDisplayValue)
UI 部分の表示サイズ計算に使用される表示プロトタイプ値を設定します。 |
void |
setRenderer(ListCellRenderer aRenderer)
JComboBox フィールドのリストから選択されたリスト項目と項目をペイントするレンダリングを設定します。 |
void |
setSelectedIndex(int anIndex)
インデックス anIndex にある項目を選択します。 |
void |
setSelectedItem(Object anObject)
コンボボックス表示領域の選択された項目を引数のオブジェクトに設定します。 |
void |
setUI(ComboBoxUI ui)
このコンポーネントを描画する L&F オブジェクトを設定します。 |
void |
showPopup()
コンボボックスにポップアップウィンドウを表示させます。 |
void |
updateUI()
現在の Look & Feel からの値で UI プロパティをリセットします。 |
クラス java.lang.Object から継承したメソッド |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
フィールドの詳細 |
protected ComboBoxModel dataModel
getModel()
,
setModel(javax.swing.ComboBoxModel)
protected ListCellRenderer renderer
getRenderer()
,
setRenderer(javax.swing.ListCellRenderer)
protected ComboBoxEditor editor
getEditor()
,
setEditor(javax.swing.ComboBoxEditor)
protected int maximumRowCount
getMaximumRowCount()
,
setMaximumRowCount(int)
protected boolean isEditable
isEditable
,
setEditable(boolean)
protected JComboBox.KeySelectionManager keySelectionManager
setKeySelectionManager(javax.swing.JComboBox.KeySelectionManager)
,
getKeySelectionManager()
protected String actionCommand
setActionCommand(java.lang.String)
,
getActionCommand()
protected boolean lightWeightPopupEnabled
setLightWeightPopupEnabled(boolean)
,
isLightWeightPopupEnabled()
protected Object selectedItemReminder
コンストラクタの詳細 |
public JComboBox(ComboBoxModel aModel)
ComboBoxModel
から取得する JComboBox
を生成します。ComboBoxModel
が提供されるため、このコンストラクタを使って生成されたコンボボックスは、デフォルトのコンボボックスモデルを生成せず、挿入、削除、および追加の各メソッドの動作方法に強い影響を与えます。
aModel
- 表示された項目のリストを提供する ComboBoxModel
DefaultComboBoxModel
public JComboBox(Object[] items)
JComboBox
を生成します。デフォルトでは、配列の最初の項目と、それに伴うデータモデルが選択されます。
items
- コンボボックスに挿入するオブジェクトの配列DefaultComboBoxModel
public JComboBox(Vector items)
JComboBox
を生成します。デフォルトでは、ベクタの最初の項目と、それに伴うデータモデルが選択されます。
items
- コンボボックスに挿入するベクタの配列DefaultComboBoxModel
public JComboBox()
JComboBox
を生成します。デフォルトのデータモデルは、オブジェクトの空リストです。addItem
を使って項目を追加します。デフォルトでは、データモデルの最初の項目が選択されます。
DefaultComboBoxModel
メソッドの詳細 |
protected void installAncestorListener()
public void setUI(ComboBoxUI ui)
ui
- ComboBoxUI
L&F オブジェクトUIDefaults.getUI(javax.swing.JComponent)
public void updateUI()
JComponent
内の updateUI
JComponent.updateUI()
public String getUIClassID()
JComponent
内の getUIClassID
JComponent.getUIClassID()
,
UIDefaults.getUI(javax.swing.JComponent)
public ComboBoxUI getUI()
public void setModel(ComboBoxModel aModel)
JComboBox
が項目のリストを取得するために使用するデータモデルを設定します。
aModel
- 表示された項目のリストを提供する ComboBoxModel
public ComboBoxModel getModel()
JComboBox
によって現在使用されているデータモデルを返します。
ComboBoxModel
public void setLightWeightPopupEnabled(boolean aFlag)
lightWeightPopupEnabled
プロパティを設定します。このプロパティは、JComboBox
の格納先として軽量 Component
を使用するか、それとも Panel
や Window
などの重量 Component
を使用するかどうかについてのヒントを提供します。どちらを使用するかを決定するのは、最終的には JComboBox
です。軽量ウィンドウは重量ウィンドウよりも効率的ですが、GUI での軽量コンポーネントと重量コンポーネントの混合はあまり良いことではありません。アプリケーションで両方のコンポーネントが使われている場合、軽量ポップアップを無効化します。lightWeightPopupEnabled
プロパティのデフォルト値は、Look & Feel で他の値が指定されていなければ true
になります。一部の Look & Feel ではこのプロパティの値に関係なく常に重量ポップアップが使用されます。
The Swing Connection の Mixing Heavy and Light Components を参照してください。このメソッドはプロパティ変更イベントをトリガします。
aFlag
- true
の場合は軽量ポップアップが要求されます。public boolean isLightWeightPopupEnabled()
lightWeightPopupEnabled
プロパティの値を返します。
lightWeightPopupEnabled
プロパティの値setLightWeightPopupEnabled(boolean)
public void setEditable(boolean aFlag)
JComboBox
フィールドが編集可能かどうかを指定します。編集可能な JComboBox
では、ユーザはフィールドに入力するか、またはフィールドを初期化するためにリストから項目を選択でき、そのあとにその項目を編集できます。編集はフィールドに対してだけ可能であり、リスト項目は変更されません。編集が不可能な JComboBox
は選択された項目をフィールドに表示しますが、その選択は編集できません。
aFlag
- boolean 値。true はフィールドが編集可能であることを示すpublic boolean isEditable()
JComboBox
が編集可能な場合は true を返します。デフォルトでは、コンボボックスは編集不可です。
JComboBox
が編集可能な場合は true、そうでない場合は falsepublic void setMaximumRowCount(int count)
JComboBox
が表示する最大の行数を設定します。モデル内のオブジェクト数が count より大きい場合は、コンボボックスはスクロールバーを使用します。
count
- スクロールバーを使用しないでリストに表示できる最大の項目数を指定する整数値public int getMaximumRowCount()
public void setRenderer(ListCellRenderer aRenderer)
デフォルトのレンダリングでは文字列またはアイコンが表示されます。他のレンダリングではグラフィックイメージと複合アイテムを使用できます。
選択された項目を表示するには、リストオブジェクトおよびインデックス -1 を渡して aRenderer.getListCellRendererComponent
を呼び出します。
aRenderer
- 選択された項目を表示する ListCellRenderer
setEditor(javax.swing.ComboBoxEditor)
public ListCellRenderer getRenderer()
JComboBox
フィールドで表示するのに使われるレンダリングを返します。
ListCellRenderer
public void setEditor(ComboBoxEditor anEditor)
JComboBox
フィールドでペイントおよび編集するために使用されるエディタを設定します。エディタは、受け取る JComboBox
が編集可能な場合だけ使用されます。編集できない場合は、コンボボックスはレンダリングを使用して選択された項目を描画します。
anEditor
- 選択された項目を表示する ComboBoxEditor
setRenderer(javax.swing.ListCellRenderer)
public ComboBoxEditor getEditor()
JComboBox
フィールドで描画および編集するために使用するエディタを返します。
ComboBoxEditor
public void setSelectedItem(Object anObject)
anObject
がリストにある場合、表示領域には選択された anObject
を表示します。
anObject
がリストに なく 、コンボボックスが編集不可の場合、現在の選択は変更されません。コンボボックスが編集可能な場合、選択は anObject
に変更されます。
これによって選択項目が変更される場合は、コンボボックスに追加される ItemListener
に、1 つまたは 2 つの ItemEvent
が通知されます。現在選択されている項目がある場合、ItemEvent
がトリガされ、状態が ItemEvent.DESELECTED
に変更されます。anObject
がリストにあり、現在選択されていない場合は、ItemEvent
がトリガされ、状態は ItemEvent.SELECTED
に変更されます。
コンボボックスに追加された ActionListener
は、このメソッドが呼び出される時に ActionEvent
で通知されます。
anObject
- 選択するリストオブジェクト。選択をクリアする場合は null
を指定public Object getSelectedItem()
コンボボックスが編集可能な場合、この値は addItem
、insertItemAt
、またはデータコンストラクタではコンボボックスに追加されません。
setSelectedItem(java.lang.Object)
public void setSelectedIndex(int anIndex)
anIndex
にある項目を選択します。
anIndex
- 選択するリスト項目を指定する整数値。0 はリスト内の最初の項目を指定。-1 は選択しないことを示す
IllegalArgumentException
- anIndex
が -1 より小さい場合、あるいは anIndex
がサイズに等しいかそれより大きい場合public int getSelectedIndex()
JComboBox
がリストにない項目の選択を許可する場合、その結果が常に定義されるとは限りません。項目が選択されていない場合、またはユーザがリストにない項目を指定した場合は、-1 が返されます。
public Object getPrototypeDisplayValue()
prototypeDisplayValue
プロパティの値setPrototypeDisplayValue(java.lang.Object)
public void setPrototypeDisplayValue(Object prototypeDisplayValue)
表示プロトタイプ値が指定されると、その値を使用してレンダリングが設定され、コンボボックスの適切なサイズが計算されます。コンボボックスに大量のデータが表示される場合は、適切な表示サイズ値の指定が有効になります。表示プロトタイプ値が指定されていない場合、レンダリングでモデルごとに値を指定して適切サイズを計算しなければならず、相対的に処理ステップが多くなります。
prototypeDisplayValue
- getPrototypeDisplayValue()
public void addItem(Object anObject)
JComboBox
が可変データモデルを使用する場合にだけ有効です。
警告: String オブジェクトを重複して追加すると、フォーカスおよびキーボードナビゲーションの問題が発生する可能性があります。回避策として、String オブジェクトの代わりに新しいオブジェクトを追加して、toString() メソッドを確実に定義します。次に例を示します。
comboBox.addItem(makeObj("Item 1")); comboBox.addItem(makeObj("Item 1")); ... private Object makeObj(final String item) { return new Object() { public String toString() { return item; } }; }
anObject
- リストに追加する ObjectMutableComboBoxModel
public void insertItemAt(Object anObject, int index)
JComboBox
が可変データモデルを使用する場合にだけ有効です。
anObject
- リストに追加する Object
index
- 項目を追加する位置を指定する整数値MutableComboBoxModel
public void removeItem(Object anObject)
JComboBox
が可変データモデルを使用する場合にだけ有効です。
anObject
- 項目リストから削除するオブジェクトMutableComboBoxModel
public void removeItemAt(int anIndex)
anIndex
位置の項目を削除します。このメソッドは JComboBox
が可変データモデルを使用する場合にだけ有効です。
anIndex
- 削除する項目のインデックスを指定する整数値。0 はリスト内の最初の項目を示すMutableComboBoxModel
public void removeAllItems()
public void showPopup()
setPopupVisible(boolean)
public void hidePopup()
setPopupVisible(boolean)
public void setPopupVisible(boolean v)
public boolean isPopupVisible()
public void addItemListener(ItemListener aListener)
ItemListener
を追加します。
aListener
は選択した項目が変更されると 1 つまたは 2 つの ItemEvent
を受信します。
ItemSelectable
内の addItemListener
aListener
- 通知される ItemListener
setSelectedItem(java.lang.Object)
public void removeItemListener(ItemListener aListener)
ItemListener
を削除します。
ItemSelectable
内の removeItemListener
aListener
- 削除される ItemListener
ItemEvent
public ItemListener[] getItemListeners()
ItemListener
の配列を返します。
ItemListener
。リスナーが追加されていない場合は空の配列public void addActionListener(ActionListener l)
ActionListener
を追加します。
ActionListener
は選択が行われたときに ActionEvent
を受信します。コンボボックスが編集可能な場合は、編集が停止されると ActionEvent
がトリガされます。
l
- 通知される ActionListener
setSelectedItem(java.lang.Object)
public void removeActionListener(ActionListener l)
ActionListener
を削除します。
l
- 削除される ActionListener
public ActionListener[] getActionListeners()
ActionListener
の配列を返します。
ActionListener
。リスナーが追加されていない場合は空の配列public void addPopupMenuListener(PopupMenuListener l)
PopupMenu
リスナーを追加します。
Java 2 のすべての標準 Look & Feel では、コンボボックスのポップアップリスト部分は JPopupMenu
として実装されます。カスタム Look & Feel では実装形態が異なり、通知を受信しません。
l
- 追加する PopupMenuListener
public void removePopupMenuListener(PopupMenuListener l)
PopupMenuListener
を削除します。
l
- 削除する PopupMenuListener
addPopupMenuListener(javax.swing.event.PopupMenuListener)
public PopupMenuListener[] getPopupMenuListeners()
PopupMenuListener
の配列を返します。
PopupMenuListener
。リスナーが追加されていない場合は空の配列public void firePopupMenuWillBecomeVisible()
PopupMenuListener
に通知します。
このメソッドは public ですが UI 委譲以外からは呼び出さないでください。
addPopupMenuListener(javax.swing.event.PopupMenuListener)
public void firePopupMenuWillBecomeInvisible()
PopupMenuListener
に通知します。
このメソッドは public ですが UI 委譲以外からは呼び出さないでください。
addPopupMenuListener(javax.swing.event.PopupMenuListener)
public void firePopupMenuCanceled()
PopupMenuListener
に通知します。
このメソッドは public ですが UI 委譲以外からは呼び出さないでください。
addPopupMenuListener(javax.swing.event.PopupMenuListener)
public void setActionCommand(String aCommand)
aCommand
- アクションリスナーに送られる「コマンド」を含む文字列。リスナーは、受信するコマンドに応じて異なる処理を実行できるpublic String getActionCommand()
public void setAction(Action a)
ActionEvent
ソースに Action
を設定します。新しい Action
は設定済みの Action
と置き換わりますが、addActionListener
で独立して追加された ActionListener
には影響しません。Action
がすでに ActionEvent
ソースにすでに登録されている ActionListener
である場合は、再登録されません。
Action
を設定すると、ActionEvent
ソースのプロパティが、Action
の値から直ちに設定され (configurePropertiesFromAction
メソッドで実行)、続いて createActionPropertyChangeListener
メソッドが作成した PropertyChangeListener
により、Action
のプロパティの変更に従って更新されます。
a
- JComboBox
の Action
、または null
Action
,
getAction()
,
configurePropertiesFromAction(javax.swing.Action)
,
createActionPropertyChangeListener(javax.swing.Action)
public Action getAction()
ActionEvent
ソースに現在設定されている Action
を返します。Action
が設定されていない場合は、null
が返されます。
ActionEvent
ソースの Action
、または null
Action
,
setAction(javax.swing.Action)
protected void configurePropertiesFromAction(Action a)
Action
インスタンスの値に従って ActionEvent
ソースのプロパティを設定するファクトリメソッドです。設定されるプロパティはサブクラスによって異なります。デフォルトでは、設定されるプロパティは Enabled
および ToolTipText
です。
a
- プロパティを取得する Action
、または null
Action
,
setAction(javax.swing.Action)
protected PropertyChangeListener createActionPropertyChangeListener(Action a)
Action
インスタンスを変更した時に ActionEvent
ソースの更新に使用する PropertyChangeListener
を生成するファクトリメソッドです。サブクラスが最新の状態で保持する必要のあるプロパティのセットがデフォルトプロパティ (Text、Icon、Enabled、ToolTipText) と異なる場合は、独自の PropertyChangeListener
を提供するためにこのメソッドをオーバーライドできます。PropertyChangeListeners
が ActionEvent
ソースへの強参照を保持しないようにしてください。強参照がある場合、ActionEvent
ソースとその包含関係の階層のガベージコレクションを妨害する可能性があります。
Action
,
setAction(javax.swing.Action)
protected void fireItemStateChanged(ItemEvent e)
e
- 対象のイベントEventListenerList
protected void fireActionEvent()
EventListenerList
protected void selectedItemChanged()
public Object[] getSelectedObjects()
ItemSelectable
との互換性のために実装されます。
ItemSelectable
内の getSelectedObjects
Object
の配列public void actionPerformed(ActionEvent e)
ActionListener
内の actionPerformed
public void contentsChanged(ListDataEvent e)
ListDataListener
内の contentsChanged
e
- イベント情報をカプセル化する ListDataEvent
public void intervalAdded(ListDataEvent e)
ListDataListener
内の intervalAdded
e
- イベント情報をカプセル化する ListDataEvent
public void intervalRemoved(ListDataEvent e)
ListDataListener
内の intervalRemoved
e
- イベント情報をカプセル化する ListDataEvent
public boolean selectWithKeyChar(char keyChar)
keyChar
- 文字。通常はユーザが押したキーボードのキーpublic void setEnabled(boolean b)
JComponent
内の setEnabled
b
- boolean 値。true の場合はコンポーネントは使用可能で、false の場合は使用不可Component.isEnabled()
,
Component.isLightweight()
public void configureEditor(ComboBoxEditor anEditor, Object anItem)
anEditor
- コンボボックスのフィールドにリスト項目を表示し、その編集を可能にする ComboBoxEditor
anItem
- フィールドで表示および編集を行うオブジェクトpublic void processKeyEvent(KeyEvent e)
KeyEvent
を処理します。Tab キーが見つかると、ポップアップウィンドウが閉じます。
JComponent
内の processKeyEvent
e
- 押されたキーボードのキーを含む KeyEvent
KeyEvent
,
KeyListener
,
Component.addKeyListener(java.awt.event.KeyListener)
,
Component.enableEvents(long)
,
Component.isShowing()
public void setKeySelectionManager(JComboBox.KeySelectionManager aManager)
public JComboBox.KeySelectionManager getKeySelectionManager()
KeySelectionManager
public int getItemCount()
public Object getItemAt(int index)
index
が範囲外の場合、つまりゼロよりも小さいか、サイズ以上の場合は、null
を返します。
index
- リスト位置を示す整数値。最初の項目はゼロで始まる
Object
。範囲外の場合は null
protected JComboBox.KeySelectionManager createDefaultKeySelectionManager()
KeySelectionManager
setKeySelectionManager(javax.swing.JComboBox.KeySelectionManager)
protected String paramString()
JComboBox
の文字列表現を返します。このメソッドはデバッグ専用であり、返される文字列の内容および形式は実装によって異なります。返される文字列は空の場合がありますが、null
にはなりません。
JComponent
内の paramString
JComboBox
の文字列表現public AccessibleContext getAccessibleContext()
Accessible
内の getAccessibleContext
JComponent
内の getAccessibleContext
|
JavaTM 2 Platform Std. Ed. v1.4.0 |
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
Java、Java 2D、および JDBC は米国ならびにその他の国における米国 Sun Microsystems, Inc. の商標もしくは登録商標です。
Copyright 1993-2002 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.