JavaTM 2 Platform
Standard Ed. 6

javax.swing.event
接口 ListDataListener

所有超级接口:
EventListener
所有已知实现类:
BasicComboBoxUI.ListDataHandler, BasicComboPopup.ListDataHandler, BasicListUI.ListDataHandler, JComboBox, JList.AccessibleJList

public interface ListDataListener
extends EventListener

ListDataListener


方法摘要
 void contentsChanged(ListDataEvent e)
          在列表的内容以某种太过复杂以至用以前的方法难以描述的方式发生更改时发送。
 void intervalAdded(ListDataEvent e)
          在已将 index0,index1 区间中的索引插入数据模型中之后发送。
 void intervalRemoved(ListDataEvent e)
          在已将 index0,index1 区间中的索引从数据模型中移除后发送。
 

方法详细信息

intervalAdded

void intervalAdded(ListDataEvent e)
在已将 index0,index1 区间中的索引插入数据模型中之后发送。新区间既包括 index0 也包括 index1。

参数:
e - 封装事件信息的 ListDataEvent

intervalRemoved

void intervalRemoved(ListDataEvent e)
在已将 index0,index1 区间中的索引从数据模型中移除后发送。该区间既包括 index0 也包括 index1。

参数:
e - 封装事件信息的 ListDataEvent

contentsChanged

void contentsChanged(ListDataEvent e)
在列表的内容以某种太过复杂以至用以前的方法难以描述的方式发生更改时发送。例如,在已经替换某个项时发送此方法。Index0 和 index1 括出了该范围。

参数:
e - 封装事件信息的 ListDataEvent

JavaTM 2 Platform
Standard Ed. 6

提交错误或意见

版权所有 2008 Sun Microsystems, Inc. 保留所有权利。请遵守GNU General Public License, version 2 only