use of de.mossgrabers.mcu.view.ControlView in project DrivenByMoss by git-moss.
the class MCUControllerSetup method createViews.
/**
* {@inheritDoc}
*/
@Override
protected void createViews() {
for (int index = 0; index < this.numMCUDevices; index++) {
final MCUControlSurface surface = this.getSurface(index);
final ViewManager viewManager = surface.getViewManager();
viewManager.registerView(Views.VIEW_CONTROL, new ControlView(surface, this.model));
}
}
Aggregations