C# 클래스 NArrange.Core.CodeElements.GroupElement

Element used to logically group other elements.
상속: CodeElement
파일 보기 프로젝트 열기: MarcStan/NArrange 1 사용 예제들

공개 메소드들

메소드 설명
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.

보호된 메소드들

메소드 설명
DoClone ( ) : CodeElement

Creates a clone of this instance.

메소드 상세

Accept() 공개 메소드

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.
리턴 void

DoClone() 보호된 메소드

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

GroupElement() 공개 메소드

Creates a group element.
public GroupElement ( )

GroupElement() 공개 메소드

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