| |
|
| java.lang.Object com.jgoodies.binding.tests.event.ListDataReport
ListDataReport | final public class ListDataReport implements ListDataListener(Code) | | A ListDataListener that stores the received ListDataEvents.
author: Karsten Lentzsch version: $Revision: 1.9 $ |
clearEventList | public void clearEventList()(Code) | | |
contentsChanged | public void contentsChanged(ListDataEvent evt)(Code) | | Sent when the contents of the list has changed in a way
that's too complex to characterize with the previous
methods. For example, this is sent when an item has been
replaced. Index0 and index1 bracket the change.
Parameters: evt - a ListDataEvent encapsulating theevent information |
equals | public boolean equals(Object o)(Code) | | Compares this report's event list with the event list
of the given object and ignores the source of the contained
ListDataEvents that may differ.
Parameters: o - the object to compare with true if equal, false if not See Also: java.util.AbstractList.equals(Object) |
eventCount | public int eventCount()(Code) | | |
eventCountAdd | public int eventCountAdd()(Code) | | |
eventCountChange | public int eventCountChange()(Code) | | |
eventCountRemove | public int eventCountRemove()(Code) | | |
hasEvents | public boolean hasEvents()(Code) | | |
hashCode | public int hashCode()(Code) | | Poor but valid implementation. Won't be used.
this reports hash code |
intervalAdded | public void intervalAdded(ListDataEvent evt)(Code) | | Sent after the indices in the index0,index1
interval have been inserted in the data model.
The new interval includes both index0 and index1.
Parameters: evt - a ListDataEvent encapsulating theevent information |
intervalRemoved | public void intervalRemoved(ListDataEvent evt)(Code) | | Sent after the indices in the index0,index1 interval
have been removed from the data model. The interval
includes both index0 and index1.
Parameters: evt - a ListDataEvent encapsulating theevent information |
|
|
|