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

Attribute code element.
상속: TextCodeElement, IAttributeElement
파일 보기 프로젝트 열기: MarcStan/NArrange 1 사용 예제들

공개 메소드들

메소드 설명
Accept ( ICodeElementVisitor visitor ) : void

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

See the Gang of Four Visitor design pattern.

AttributeElement ( )

Creates a new attribute element.

AttributeElement ( string name )

Creates a new attribute element with the specified name.

보호된 메소드들

메소드 설명
DoClone ( ) : CodeElement

Clones 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 Code element visitor.
리턴 void

AttributeElement() 공개 메소드

Creates a new attribute element.
public AttributeElement ( )

AttributeElement() 공개 메소드

Creates a new attribute element with the specified name.
public AttributeElement ( string name )
name string Attribute name.

DoClone() 보호된 메소드

Clones this instance.
protected DoClone ( ) : CodeElement
리턴 CodeElement