use of de.mossgrabers.controller.novation.sl.view.PlayView in project DrivenByMoss by git-moss.
the class SLControllerSetup method createViews.
/**
* {@inheritDoc}
*/
@Override
protected void createViews() {
final SLControlSurface surface = this.getSurface();
final ViewManager viewManager = surface.getViewManager();
viewManager.register(Views.PLAY, new PlayView(surface, this.model));
viewManager.register(Views.CONTROL, new ControlView(surface, this.model));
}
Aggregations