use of net.sourceforge.nattable.sort.command.SortColumnCommand in project translationstudio8 by heartsome.
the class SortColumnAction method run.
public void run(NatTable natTable, MouseEvent event) {
int columnPosition = ((NatEventData) event.data).getColumnPosition();
natTable.doCommand(new SortColumnCommand(natTable, columnPosition, accumulate));
}
Aggregations