Control Surface API  2.2.2
Setting.java
1 package com.bitwig.extension.controller.api;
2 
8 public interface Setting
9 {
16  String getCategory();
17 
24  String getLabel();
25 
31  void enable();
32 
38  void disable();
39 
45  void show();
46 
52  void hide();
53 }