TaggerView view;
public TaggerTrackTable(TaggerView view, PhoenixCore core) {
super();
this.view = view;
this.core = core;
setModel(new TaggerTrackTableModel());
addMouseListener(new TableMouseListener(core));
getSelectionModel().addListSelectionListener(new SelectionListener(this));
getSelectionModel().setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION);
getColumn("S").setMaxWidth(25);
}