The StaDyn Programming Language
Source code documentation of StaDyn, a hybrid static and dynamic typing language.
IMemberType.cs
Go to the documentation of this file.
1 // -------------------------------------------------------------------------- //
3 // Project rROTOR //
4 // -------------------------------------------------------------------------- //
5 // File: MemberType.cs //
6 // Authors: Cristina Gonzalez Muņoz - cristi.gm@gmail.com //
7 // Francisco Ortin - francisco.ortin@gmail.com //
8 // Description: //
9 // Represents a class attribute (fields or methods). //
10 // Inheritance: TypeExpression. //
11 // Implements Composite pattern [Composite]. //
12 // -------------------------------------------------------------------------- //
13 // Create date: 22-10-2006 //
14 // Modification date: 09-03-2007 //
16 
17 using System;
18 using System.Collections.Generic;
19 using System.Text;
20 using System.Text.RegularExpressions;
21 
22 using ErrorManagement;
23 
24 namespace TypeSystem {
32  public interface IMemberType {
33 
34  #region Properties
39  get;
40  set;
41  }
42 
43  #endregion
44 
45 
46  }
47 }
AccessModifier MemberInfo
Gets or sets the attribute information of method type
Definition: IMemberType.cs:38
Association Class between ClassType and MethodType (or Fields). Represents the access modifier inform...
Representa a class attribute (fields or methods).
Definition: IMemberType.cs:32