-
- All Superinterfaces:
-
EventListener
- 所有已知实现类:
-
BasicComboPopup.ListSelectionHandler
,BasicFileChooserUI.SelectionListener
,BasicListUI.ListSelectionHandler
,DefaultTableColumnModel
,JList.AccessibleJList
,JTable
,JTable.AccessibleJTable
public interface ListSelectionListener extends EventListener
列表选择值更改时通知的侦听器。- 另请参见:
-
ListSelectionModel
-
-
方法摘要
所有方法 实例方法 抽象方法 变量和类型 方法 描述 void
valueChanged(ListSelectionEvent e)
只要选择的值发生变化,就会调用。
-
-
-
方法详细信息
-
valueChanged
void valueChanged(ListSelectionEvent e)
只要选择的值发生变化,就会调用。- 参数
-
e
- the event that characterizes the change.
-
-