use of blue.ui.core.score.soundLayer.SoundLayerListPanel in project blue by kunstmusik.
the class PolyObjectUIProvider method getLayerGroupHeaderPanel.
@Override
public JComponent getLayerGroupHeaderPanel(LayerGroup layerGroup, TimeState timeState, BlueData data, InstanceContent ic) {
JComponent returnValue = null;
if (layerGroup instanceof PolyObject) {
SoundLayerListPanel panel = new SoundLayerListPanel();
panel.setPolyObject((PolyObject) layerGroup);
returnValue = panel;
}
return returnValue;
}
Aggregations