C# Class TagTool.Commands.CommandContextStack

A stack of command contexts.
Show file Open project: TheGuardians/TagTool Class Usage Examples

Public Methods

Method Description
GetPath ( ) : string

Gets the current path.

Pop ( ) : bool

Pops the current context off the stack, making the previous one active.

Push ( CommandContext context ) : void

Pushes a context onto the stack, making it active.

Method Details

GetPath() public method

Gets the current path.
public GetPath ( ) : string
return string

Pop() public method

Pops the current context off the stack, making the previous one active.
public Pop ( ) : bool
return bool

Push() public method

Pushes a context onto the stack, making it active.
public Push ( CommandContext context ) : void
context CommandContext The context to push.
return void