List of usage examples for javax.swing.event TableColumnModelEvent getSource
public Object getSource()
From source file:edu.ku.brc.specify.plugins.sgr.SGRResultsDisplay.java
@Override public void columnMoved(TableColumnModelEvent e) { int from = e.getFromIndex(); int to = e.getToIndex(); if (from == to) return;/* www. j ava 2s . c o m*/ System.out.println(e.getSource() + " " + from + " " + to); SGRColumnOrdering.getInstance().moveColumn(from, to); }