Interface ICommandFactory
- Namespace
- BOOSE
- Assembly
- BOOSE.dll
To add commands to BOOSE you must create a CommandFactory that uses this interface. You should extend the existing BOOSE:CommandFactory (which implements this interface) and then implement the MakeCommand() method. It shoudld create a new command object based on the string passed. Any standard BOOSE commands can then be made by calling base.MakeCommand();
public interface ICommandFactory
Methods
MakeCommand(string)
Make a BOOSE Command based on the string passed to it.
ICommand MakeCommand(string commandType)
Parameters
commandType
string
Returns
- ICommand
Reference to new Command object.