C# Class NArrange.Core.CodeElements.GroupElement

Element used to logically group other elements.
Inheritance: CodeElement
Show file Open project: MarcStan/NArrange Class Usage Examples

Public Methods

Method Description
Accept ( ICodeElementVisitor visitor ) : void

Allows an ICodeElementVisitor to process (or visit) this element.

See the Gang of Four Visitor design pattern.

GroupElement ( )

Creates a group element.

GroupElement ( string name )

Creates a group element with the specified name.

Protected Methods

Method Description
DoClone ( ) : CodeElement

Creates a clone of this instance.

Method Details

Accept() public method

Allows an ICodeElementVisitor to process (or visit) this element.
See the Gang of Four Visitor design pattern.
public Accept ( ICodeElementVisitor visitor ) : void
visitor ICodeElementVisitor Visitor to accept the code element.
return void

DoClone() protected method

Creates a clone of this instance.
protected DoClone ( ) : CodeElement
return CodeElement

GroupElement() public method

Creates a group element.
public GroupElement ( )

GroupElement() public method

Creates a group element with the specified name.
public GroupElement ( string name )
name string The group name.