Bitwig Studio Control Surface API
5.0.11
|
Public Member Functions | |
boolean | canBindTo (Object target) |
HardwareBindingType | addBinding (HardwareBindable target) |
void | clearBindings () |
HardwareBindingType | setBinding (HardwareBindable target) |
Represents the source of a HardwareBinding.
HardwareBindingType addBinding | ( | HardwareBindable | target | ) |
Binds this source to the supplied target and returns the created binding. This can only be called if the canBindTo(Object) returns true.
boolean canBindTo | ( | Object | target | ) |
Checks if it is possible to make a binding from this source to the supplied target object.
void clearBindings | ( | ) |
Clears all bindings from this source to its targets.
HardwareBindingType setBinding | ( | HardwareBindable | target | ) |
Ensures there is a single binding to the supplied target.
This is a convenience method that is equivalent to calling clearBindings() and the addBinding(HardwareBindable)