Interface Subtasks
- All Known Implementing Classes:
SubtasksImpl
public interface Subtasks
Grouping of admin tasks related to the Sub-Tasks section
- Since:
- v4.0
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addSubTaskType
(String subTaskName, String subTaskDescription) Adds a new sub-task type.void
deleteSubTaskType
(String subTaskName) Delete an existing sub-task type.void
disable()
Disables sub-tasks.void
enable()
Enables sub-tasks.boolean
-
Method Details
-
enable
void enable()Enables sub-tasks. -
disable
void disable()Disables sub-tasks. -
isEnabled
boolean isEnabled()- Returns:
- true if sub-tasks are currently enabled.
- Since:
- v4.2
-
addSubTaskType
Adds a new sub-task type. Enables sub-tasks if they are disabled.- Parameters:
subTaskName
- The name of the new sub-task type.subTaskDescription
- The description of the new sub-task type.
-
deleteSubTaskType
Delete an existing sub-task type.- Parameters:
subTaskName
- The name of the sub-task type to be deleted.
-