use of de.mossgrabers.sl.view.ControlView 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.registerView(Views.VIEW_PLAY, new PlayView(surface, this.model));
viewManager.registerView(Views.VIEW_CONTROL, new ControlView(surface, this.model));
}
Aggregations