Moved table UI classes into their own package
This commit is contained in:
parent
ccff62d261
commit
6ca3fad77b
6 changed files with 161 additions and 98 deletions
|
|
@ -0,0 +1,9 @@
|
|||
package net.vhati.modmanager.ui.table;
|
||||
|
||||
|
||||
public interface Reorderable {
|
||||
/**
|
||||
* Moves an element at fromIndex to toIndex.
|
||||
*/
|
||||
public void reorder( int fromIndex, int toIndex );
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue