コード例 #1
0
ファイル: EntityTypeElement.cs プロジェクト: yungtau/oea
 public EntityTypeElement(string fullName)
     : base(fullName)
 {
     _properties = new NotifyChangedCollection <PropertyElement>();
     AddChildren(_properties);
 }
コード例 #2
0
 public EnumElement(string fullName)
     : base(fullName)
 {
     _items = new NotifyChangedCollection <EnumItemElement>();
     AddChildren(_items);
 }
コード例 #3
0
ファイル: EntityTypeElement.cs プロジェクト: 569550384/Rafy
 public EntityTypeElement(string fullName)
     : base(fullName)
 {
     _properties = new NotifyChangedCollection<PropertyElement>();
     AddChildren(_properties);
 }
コード例 #4
0
ファイル: EnumElement.cs プロジェクト: 569550384/Rafy
 public EnumElement(string fullName)
     : base(fullName)
 {
     _items = new NotifyChangedCollection<EnumItemElement>();
     AddChildren(_items);
 }