C# Class NArrange.Core.CodeElements.TypeElement

Class/struct code element.
Inheritance: AttributedElement, IGenericElement
Afficher le fichier Open project: MarcStan/NArrange Class Usage Examples

Private Properties

Свойство Type Description

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.

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.

Méthodes protégées

Méthode Description
DoAttributedClone ( ) : AttributedElement

Clones an attributed element.

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

AddInterface() public méthode

Adds an interface implementation to the type definition.
public AddInterface ( InterfaceReference interfaceReference ) : void
interfaceReference InterfaceReference The interface reference.
Résultat void

AddTypeParameter() public méthode

Adds a type parameter to the type parameter list.
public AddTypeParameter ( TypeParameter typeParameter ) : void
typeParameter TypeParameter The type parameter to add.
Résultat void

DoAttributedClone() protected méthode

Clones an attributed element.
protected DoAttributedClone ( ) : AttributedElement
Résultat AttributedElement