public interface CustomRowMovable
CustomFieldSelectionModel
if the custom JTable allow users move it's rows then
it must also implement this interface so the move buttons will be addedModifier and Type | Method and Description |
---|---|
int |
moveDown(int index)
Moves the item at the selected index down one place.
|
int[] |
moveDown(int[] indexes)
Moves the items down one place.
|
int |
moveToBottom(int index)
Moves the item at the bottom of the list.
|
int[] |
moveToBottom(int[] indexes)
Moves the items at the bottom of the list.
|
int |
moveToTop(int index)
Moves the item at the top of the list.
|
int[] |
moveToTop(int[] indexes)
Moves the items at the top of the list.
|
int |
moveUp(int index)
Moves the item at the selected index up one place.
|
int[] |
moveUp(int[] indexes)
Moves the items up one place.
|
int moveToTop(int index)
int[] moveToTop(int[] indexes)
int moveToBottom(int index)
int[] moveToBottom(int[] indexes)
int moveUp(int index)
int[] moveUp(int[] indexes)
int moveDown(int index)
int[] moveDown(int[] indexes)
(C) Copyright IBM Corp. 1994, 2015. All Rights Reserved.