C# Class NArrange.Core.CodeElements.GroupElement

Element used to logically group other elements.
Inheritance: CodeElement
Afficher le fichier Open project: MarcStan/NArrange Class Usage Examples

Méthodes publiques

Méthode 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.

Méthodes protégées

Méthode Description
DoClone ( ) : CodeElement

Creates a clone of this instance.

Method Details

Accept() public méthode

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.
Résultat void

DoClone() protected méthode

Creates a clone of this instance.
protected DoClone ( ) : CodeElement
Résultat CodeElement

GroupElement() public méthode

Creates a group element.
public GroupElement ( )

GroupElement() public méthode

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