java.lang.Object | ||
↳ | java.util.EventObject | |
↳ | javax.swing.event.RowSorterEvent |
RowSorterEvent
provides notification of changes to
a RowSorter
. Two types of notification are possible:
Type.SORT_ORDER_CHANGED
: indicates the sort order has
changed. This is typically followed by a notification of:
Type.SORTED
: indicates the contents of the model have
been transformed in some way. For example, the contents may have
been sorted or filtered.
Nested Classes | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
RowSorterEvent.Type | Enumeration of the types of RowSorterEvent s. |
[Expand]
Inherited Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Creates a
RowSorterEvent of type
SORT_ORDER_CHANGED . | |||||||||||
Creates a
RowSorterEvent . |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns the location of
index in terms of the
model prior to the sort. | |||||||||||
Returns the number of rows before the sort.
| |||||||||||
Returns the source of the event as a
RowSorter . | |||||||||||
Returns the type of event.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Creates a RowSorterEvent
of type
SORT_ORDER_CHANGED
.
source | the source of the change |
---|
IllegalArgumentException | if source is
null
|
---|
Creates a RowSorterEvent
.
source | the source of the change |
---|---|
type | the type of event |
previousRowIndexToModel | the mapping from model indices to
view indices prior to the sort, may be null |
IllegalArgumentException | if source or type is
null
|
---|
Returns the location of index
in terms of the
model prior to the sort. This method is only useful for events
of type SORTED
. This method will return -1 if the
index is not valid, or the locations prior to the sort have not
been provided.
index | the index in terms of the view |
---|
Returns the number of rows before the sort. This method is only
useful for events of type SORTED
and if the
last locations have not been provided will return 0.
Returns the source of the event as a RowSorter
.
RowSorter