コード例 #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
ファイル: Structure.cs プロジェクト: JohnChantzis/bark_GUI
 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;
 }