|
|||||||||||||||||||
| 30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover | |||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| SortableTableModel.java | - | - | - | - |
|
||||||||||||||
| 1 |
/*
|
|
| 2 |
* brownies and its relative products are published under the terms
|
|
| 3 |
* of the Apache Software License.
|
|
| 4 |
*
|
|
| 5 |
* Created on 2004/06/05 3:20:41
|
|
| 6 |
*/
|
|
| 7 |
package org.asyrinx.brownie.swing.table;
|
|
| 8 |
|
|
| 9 |
import javax.swing.table.TableModel;
|
|
| 10 |
|
|
| 11 |
/**
|
|
| 12 |
* @author akima
|
|
| 13 |
*/
|
|
| 14 |
public interface SortableTableModel extends TableModel { |
|
| 15 |
|
|
| 16 |
public void sort(int columnIndex, boolean reverse); |
|
| 17 |
|
|
| 18 |
public int getOriginalRowIndex(int sortedRowIndex); |
|
| 19 |
} |
|
||||||||||