📄 tablesortdecorator.java
字号:
import javax.swing.table.TableModel;
public abstract class TableSortDecorator extends
TableModelDecorator {
// Extensions of TableSortDecorator must implement the
// abstract sort method, in addition to tableChanged. The
// latter is required because TableModelDecorator
// implements the TableModelListener interface.
abstract public void sort(int column);
public TableSortDecorator(TableModel realModel) {
super(realModel);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -