Interface ActionCategory
public interface ActionCategory
Instances of this interface are used to categorize actions in Bitwig Studio. The list of action categories
provided by Bitwig Studio can be queried by calling
Application.getActionCategories(). To receive a
specific action category call Application.getActionCategory(String).- Since:
- API version 1
- See Also:
-
Method Summary
-
Method Details
-
getId
String getId()Returns a string the identifies this action category uniquely.- Returns:
- the identifier string
- Since:
- API version 1
-
getName
String getName()Returns the name of this action category.- Returns:
- the name string
- Since:
- API version 1
-
getActions
Action[] getActions()Lists all actions in this category.- Returns:
- the array of actions in this category
- Since:
- API version 1
-