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

Class/struct code element.
상속: AttributedElement, IGenericElement
파일 보기 프로젝트 열기: MarcStan/NArrange 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

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

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

See the Gang of Four Visitor design pattern.

AddInterface ( InterfaceReference interfaceReference ) : void

Adds an interface implementation to the type definition.

AddTypeParameter ( TypeParameter typeParameter ) : void

Adds a type parameter to the type parameter list.

보호된 메소드들

메소드 설명
DoAttributedClone ( ) : AttributedElement

Clones an attributed element.

메소드 상세

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

AddInterface() 공개 메소드

Adds an interface implementation to the type definition.
public AddInterface ( InterfaceReference interfaceReference ) : void
interfaceReference InterfaceReference The interface reference.
리턴 void

AddTypeParameter() 공개 메소드

Adds a type parameter to the type parameter list.
public AddTypeParameter ( TypeParameter typeParameter ) : void
typeParameter TypeParameter The type parameter to add.
리턴 void

DoAttributedClone() 보호된 메소드

Clones an attributed element.
protected DoAttributedClone ( ) : AttributedElement
리턴 AttributedElement