Class CommandLineActionManager
- java.lang.Object
-
- com.nomagic.magicdraw.commandline.CommandLineActionManager
-
@OpenApi public final class CommandLineActionManager extends java.lang.Object
Manager registers available command line actions.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addAction(CommandLineAction action)
Register command line action.static CommandLineActionManager
getInstance()
Get manager instance.void
removeAction(CommandLineAction action)
Remove command line action.
-
-
-
Method Detail
-
getInstance
@OpenApi public static CommandLineActionManager getInstance()
Get manager instance.- Returns:
- manager.
-
addAction
@OpenApi public void addAction(CommandLineAction action)
Register command line action.- Parameters:
action
- command line action to register.
-
removeAction
@OpenApi public void removeAction(CommandLineAction action)
Remove command line action.- Parameters:
action
- command line action to remove.
-
-