use of blue.projects.BlueProject in project blue by kunstmusik.
the class MarkersTopComponent method reinitialize.
protected void reinitialize() {
BlueProject project = BlueProjectManager.getInstance().getCurrentProject();
BlueData currentData = null;
if (project != null) {
currentData = project.getData();
}
this.data = currentData;
markersTable.setModel(currentData.getMarkersList());
markersTable.getColumnModel().getColumn(0).setPreferredWidth(100);
}
Aggregations