Пример #1
0
 //Constructor
 public ElementVariable(SimpleType simpleType, string defaultValue)
 {
     CurrentElementType = EType.Variable;
     SimpleType = simpleType;
     DefaultValue = defaultValue;
 }
Пример #2
0
 //Constructor
 public ElementReference(SimpleType simpleType)
 {
     CurrentElementType = EType.Reference;
     SimpleType = simpleType;
 }
Пример #3
0
 public static void Add(SimpleType type)
 {
     _types.Add(type); _simpleTypes.Add(type);
 }
Пример #4
0
 //Constructor
 public ElementKeyword(SimpleType simpleType, string defaultValue)
 {
     CurrentElementType = EType.Keyword;
     SimpleType = simpleType;
     DefaultValue = defaultValue;
 }
Пример #5
0
 //Constructor
 public ElementConstant(SimpleType simpleType, string defaultValue)
 {
     CurrentElementType = EType.Constant;
     SimpleType = simpleType;
     DefaultValue = defaultValue;
 }