Skip to content

Commit

Permalink
strip java bois from stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
chee committed Feb 21, 2020
1 parent 6159496 commit 7bf6c6c
Show file tree
Hide file tree
Showing 129 changed files with 1,346 additions and 1,346 deletions.
8 changes: 4 additions & 4 deletions bitwig-jsdoc-stubs/AbsoluteHardwarControlBindable.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ AbsoluteHardwarControlBindable.prototype.constructor = AbsoluteHardwarControlBin
* When the binding is no longer needed the {@link HardwareBinding#removeBinding()} method can be called on
* it.
*
* @param {com.bitwig.extension.controller.api.AbsoluteHardwareControl} hardwareControl
* @return {com.bitwig.extension.controller.api.AbsoluteHardwareControlBinding} The newly created binding
* @param {AbsoluteHardwareControl} hardwareControl
* @return {AbsoluteHardwareControlBinding} The newly created binding
*/
AbsoluteHardwarControlBindable.prototype.addBinding = function(hardwareControl) {};

Expand All @@ -31,9 +31,9 @@ AbsoluteHardwarControlBindable.prototype.addBinding = function(hardwareControl)
* When the binding is no longer needed the {@link HardwareBinding#removeBinding()} method can be called on
* it.
*
* @param {com.bitwig.extension.controller.api.AbsoluteHardwareControl} hardwareControl
* @param {AbsoluteHardwareControl} hardwareControl
* @param {double} minNormalizedValue
* @param {double} maxNormalizedValue
* @return {com.bitwig.extension.controller.api.AbsoluteHardwareControlBinding} The newly created binding
* @return {AbsoluteHardwareControlBinding} The newly created binding
*/
AbsoluteHardwarControlBindable.prototype.addBindingWithRange = function(hardwareControl, minNormalizedValue, maxNormalizedValue) {};
18 changes: 9 additions & 9 deletions bitwig-jsdoc-stubs/AbsoluteHardwareControl.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,36 +15,36 @@ AbsoluteHardwareControl.prototype.constructor = AbsoluteHardwareControl;
* Sets the {@link AbsoluteHardwareValueMatcher} that can be used to detect when the user adjusts the
* hardware control's value.
*
* @param {com.bitwig.extension.controller.api.AbsoluteHardwareValueMatcher} matcher
* @param {AbsoluteHardwareValueMatcher} matcher
*/
AbsoluteHardwareControl.prototype.setAdjustValueMatcher = function(matcher) {};

/**
* The current value of this hardware control (0..1)
*
* @return {com.bitwig.extension.controller.api.DoubleValue}
* @return {DoubleValue}
*/
AbsoluteHardwareControl.prototype.value = function() {};

/**
* The value of the target that this hardware control has been bound to (0..1).
*
* @return {com.bitwig.extension.controller.api.DoubleValue}
* @return {DoubleValue}
*/
AbsoluteHardwareControl.prototype.targetValue = function() {};

/**
* Can be called from the {@link #targetValue()} changed callback to check if this control is responsible
* for changing the target value or not.
*
* @return {com.bitwig.extension.controller.api.BooleanValue}
* @return {BooleanValue}
*/
AbsoluteHardwareControl.prototype.isUpdatingTargetValue = function() {};

/**
* Value that indicates if this hardware control has a target value that it changes or not.
*
* @return {com.bitwig.extension.controller.api.BooleanValue}
* @return {BooleanValue}
*/
AbsoluteHardwareControl.prototype.hasTargetValue = function() {};

Expand All @@ -60,10 +60,10 @@ AbsoluteHardwareControl.prototype.disableTakeOver = function() {};
/**
* Adds a new binding from this hardware control to the supplied target.
*
* @param {com.bitwig.extension.controller.api.AbsoluteHardwarControlBindable} target
* @param {AbsoluteHardwarControlBindable} target
* @param {double} minNormalizedValue
* @param {double} maxNormalizedValue
* @return {com.bitwig.extension.controller.api.AbsoluteHardwareControlBinding}
* @return {AbsoluteHardwareControlBinding}
*/
AbsoluteHardwareControl.prototype.addBindingWithRange = function(target, minNormalizedValue, maxNormalizedValue) {};

Expand All @@ -72,9 +72,9 @@ AbsoluteHardwareControl.prototype.addBindingWithRange = function(target, minNorm
* equivalent to calling {@link #clearBindings()} and then
* {@link #addBindingWithRange(AbsoluteHardwarControlBindable, double, double)}
*
* @param {com.bitwig.extension.controller.api.AbsoluteHardwarControlBindable} target
* @param {AbsoluteHardwarControlBindable} target
* @param {double} minNormalizedValue
* @param {double} maxNormalizedValue
* @return {com.bitwig.extension.controller.api.AbsoluteHardwareControlBinding}
* @return {AbsoluteHardwareControlBinding}
*/
AbsoluteHardwareControl.prototype.setBindingWithRange = function(target, minNormalizedValue, maxNormalizedValue) {};
2 changes: 1 addition & 1 deletion bitwig-jsdoc-stubs/Action.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Action.prototype.getName = function() {};
/**
* Returns the category of this action.
*
* @return {com.bitwig.extension.controller.api.ActionCategory} the category string
* @return {ActionCategory} the category string
* @since API version 1
*/
Action.prototype.getCategory = function() {};
Expand Down
2 changes: 1 addition & 1 deletion bitwig-jsdoc-stubs/ActionCategory.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ ActionCategory.prototype.getName = function() {};
/**
* Lists all actions in this category.
*
* @return {com.bitwig.extension.controller.api.Action[]} the array of actions in this category
* @return {Action[]} the array of actions in this category
* @since API version 1
*/
ActionCategory.prototype.getActions = function() {};
60 changes: 30 additions & 30 deletions bitwig-jsdoc-stubs/Application.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Application.prototype.createEffectTrack = function(position) {};
* other (probably more convenient) interfaces methods of the API. In contrast to that, this method
* provides a more generic way to find available application functionality.
*
* @return {com.bitwig.extension.controller.api.Action[]} the list of actions
* @return {Action[]} the list of actions
@since API version 1
*/
Application.prototype.getActions = function() {};
Expand All @@ -68,7 +68,7 @@ Application.prototype.getActions = function() {};
*
* @param id
the action identifier string, must not be `null`
* @return {com.bitwig.extension.controller.api.Action} the action associated with the given id, or null in case there is no action with the given
* @return {Action} the action associated with the given id, or null in case there is no action with the given
identifier.
@since API version 1
*/
Expand All @@ -77,7 +77,7 @@ Application.prototype.getAction = function(id) {};
/**
* Returns a list of action categories that is used by Bitwig Studio to group actions into categories.
*
* @return {com.bitwig.extension.controller.api.ActionCategory[]} the list of action categories
* @return {ActionCategory[]} the list of action categories
@since API version 1
*/
Application.prototype.getActionCategories = function() {};
Expand All @@ -88,7 +88,7 @@ Application.prototype.getActionCategories = function() {};
*
* @param id
the category identifier string, must not be `null`
* @return {com.bitwig.extension.controller.api.ActionCategory} the action associated with the given id, or null in case there is no category with the given
* @return {ActionCategory} the action associated with the given id, or null in case there is no category with the given
identifier
@since API version 1
*/
Expand All @@ -111,15 +111,15 @@ Application.prototype.deactivateEngine = function() {};
/**
* Value that reports whether an audio engine is active or not.
*
* @return {com.bitwig.extension.controller.api.BooleanValue}
* @return {BooleanValue}
* @since API version 2
*/
Application.prototype.hasActiveEngine = function() {};

/**
* Value that reports the name of the current project.
*
* @return {com.bitwig.extension.controller.api.StringValue}
* @return {StringValue}
* @since API version 2
*/
Application.prototype.projectName = function() {};
Expand All @@ -141,7 +141,7 @@ Application.prototype.previousProject = function() {};
/**
* Set BitwigStudio to navigate into the group.
*
* @param {com.bitwig.extension.controller.api.Track} track
* @param {Track} track
* @since API version 2
*/
Application.prototype.navigateIntoTrackGroup = function(track) {};
Expand All @@ -161,7 +161,7 @@ Application.prototype.navigateToParentTrackGroup = function() {};
Application.prototype.undo = function() {};

/**
* @return {com.bitwig.extension.controller.api.HardwareActionBindable}
* @return {HardwareActionBindable}
*/
Application.prototype.undoAction = function() {};

Expand All @@ -173,7 +173,7 @@ Application.prototype.undoAction = function() {};
Application.prototype.redo = function() {};

/**
* @return {com.bitwig.extension.controller.api.HardwareActionBindable}
* @return {HardwareActionBindable}
*/
Application.prototype.redoAction = function() {};

Expand Down Expand Up @@ -204,15 +204,15 @@ Application.prototype.previousPanelLayout = function() {};
/**
* Value that reports the name of the active panel layout.
*
* @return {com.bitwig.extension.controller.api.StringValue}
* @return {StringValue}
* @since API version 2
*/
Application.prototype.panelLayout = function() {};

/**
* Value that reports the name of the active display profile.
*
* @return {com.bitwig.extension.controller.api.StringValue}
* @return {StringValue}
* @since API version 2
*/
Application.prototype.displayProfile = function() {};
Expand Down Expand Up @@ -329,7 +329,7 @@ Application.prototype.escape = function() {};
Application.prototype.selectAll = function() {};

/**
* @return {com.bitwig.extension.controller.api.HardwareActionBindable}
* @return {HardwareActionBindable}
*/
Application.prototype.selectAllAction = function() {};

Expand All @@ -341,7 +341,7 @@ Application.prototype.selectAllAction = function() {};
Application.prototype.selectNone = function() {};

/**
* @return {com.bitwig.extension.controller.api.HardwareActionBindable}
* @return {HardwareActionBindable}
*/
Application.prototype.selectNoneAction = function() {};

Expand All @@ -353,7 +353,7 @@ Application.prototype.selectNoneAction = function() {};
Application.prototype.selectPrevious = function() {};

/**
* @return {com.bitwig.extension.controller.api.HardwareActionBindable}
* @return {HardwareActionBindable}
*/
Application.prototype.selectPreviousAction = function() {};

Expand All @@ -365,7 +365,7 @@ Application.prototype.selectPreviousAction = function() {};
Application.prototype.selectNext = function() {};

/**
* @return {com.bitwig.extension.controller.api.HardwareActionBindable}
* @return {HardwareActionBindable}
*/
Application.prototype.selectNextAction = function() {};

Expand All @@ -377,7 +377,7 @@ Application.prototype.selectNextAction = function() {};
Application.prototype.selectFirst = function() {};

/**
* @return {com.bitwig.extension.controller.api.HardwareActionBindable}
* @return {HardwareActionBindable}
*/
Application.prototype.selectFirstAction = function() {};

Expand All @@ -389,7 +389,7 @@ Application.prototype.selectFirstAction = function() {};
Application.prototype.selectLast = function() {};

/**
* @return {com.bitwig.extension.controller.api.HardwareActionBindable}
* @return {HardwareActionBindable}
*/
Application.prototype.selectLastAction = function() {};

Expand All @@ -401,7 +401,7 @@ Application.prototype.selectLastAction = function() {};
Application.prototype.cut = function() {};

/**
* @return {com.bitwig.extension.controller.api.HardwareActionBindable}
* @return {HardwareActionBindable}
*/
Application.prototype.cutAction = function() {};

Expand All @@ -413,7 +413,7 @@ Application.prototype.cutAction = function() {};
Application.prototype.copy = function() {};

/**
* @return {com.bitwig.extension.controller.api.HardwareActionBindable}
* @return {HardwareActionBindable}
*/
Application.prototype.copyAction = function() {};

Expand All @@ -425,7 +425,7 @@ Application.prototype.copyAction = function() {};
Application.prototype.paste = function() {};

/**
* @return {com.bitwig.extension.controller.api.HardwareActionBindable}
* @return {HardwareActionBindable}
*/
Application.prototype.pasteAction = function() {};

Expand All @@ -437,7 +437,7 @@ Application.prototype.pasteAction = function() {};
Application.prototype.duplicate = function() {};

/**
* @return {com.bitwig.extension.controller.api.HardwareActionBindable}
* @return {HardwareActionBindable}
* @since API version 10
*/
Application.prototype.duplicateAction = function() {};
Expand All @@ -452,7 +452,7 @@ Application.prototype.duplicateAction = function() {};
Application.prototype.remove = function() {};

/**
* @return {com.bitwig.extension.controller.api.HardwareActionBindable}
* @return {HardwareActionBindable}
*/
Application.prototype.removeAction = function() {};

Expand All @@ -471,7 +471,7 @@ Application.prototype.rename = function() {};
Application.prototype.zoomIn = function() {};

/**
* @return {com.bitwig.extension.controller.api.HardwareActionBindable}
* @return {HardwareActionBindable}
*/
Application.prototype.zoomInAction = function() {};

Expand All @@ -483,7 +483,7 @@ Application.prototype.zoomInAction = function() {};
Application.prototype.zoomOut = function() {};

/**
* @return {com.bitwig.extension.controller.api.HardwareActionBindable}
* @return {HardwareActionBindable}
*/
Application.prototype.zoomOutAction = function() {};

Expand All @@ -495,7 +495,7 @@ Application.prototype.zoomOutAction = function() {};
Application.prototype.zoomToSelection = function() {};

/**
* @return {com.bitwig.extension.controller.api.HardwareActionBindable}
* @return {HardwareActionBindable}
*/
Application.prototype.zoomToSelectionAction = function() {};

Expand All @@ -507,7 +507,7 @@ Application.prototype.zoomToSelectionAction = function() {};
Application.prototype.zoomToSelectionOrAll = function() {};

/**
* @return {com.bitwig.extension.controller.api.HardwareActionBindable}
* @return {HardwareActionBindable}
*/
Application.prototype.zoomToSelectionOrAllAction = function() {};

Expand All @@ -519,7 +519,7 @@ Application.prototype.zoomToSelectionOrAllAction = function() {};
Application.prototype.zoomToSelectionOrPrevious = function() {};

/**
* @return {com.bitwig.extension.controller.api.HardwareActionBindable}
* @return {HardwareActionBindable}
*/
Application.prototype.zoomToSelectionOrPreviousAction = function() {};

Expand All @@ -531,7 +531,7 @@ Application.prototype.zoomToSelectionOrPreviousAction = function() {};
Application.prototype.zoomToFit = function() {};

/**
* @return {com.bitwig.extension.controller.api.HardwareActionBindable}
* @return {HardwareActionBindable}
*/
Application.prototype.zoomToFitAction = function() {};

Expand Down Expand Up @@ -574,15 +574,15 @@ Application.prototype.toggleFullScreen = function() {};
* Returns the record quantization grid setting from the preferences.
* Possible values are "OFF", "1/32", "1/16", "1/8", "1/4".
*
* @return {com.bitwig.extension.controller.api.SettableEnumValue}
* @return {SettableEnumValue}
* @since API version 10
*/
Application.prototype.recordQuantizationGrid = function() {};

/**
* Returns a settable value to choose if the record quantization should quantize note length.
*
* @return {com.bitwig.extension.controller.api.SettableBooleanValue}
* @return {SettableBooleanValue}
* @since API version 10
*/
Application.prototype.recordQuantizeNoteLength = function() {};

0 comments on commit 7bf6c6c

Please sign in to comment.