示例#1
0
文件: Test.cs 项目: xiluoyouqd/HOPE
 //Implements ICreate.
 public void Initialize(ISemanticTypeSystem sts)
 {
     Relationship = sts.Create("Relationship", this);
     //Additional semantic type initializers.
     Relationship.ForwardName = "Father of";
     Relationship.ReverseName = "Son of";
 }
示例#2
0
文件: Test.cs 项目: xiluoyouqd/HOPE
 //Implements ICreate.
 public void Initialize(ISemanticTypeSystem sts)
 {
     PointA = sts.Create("PointA", this);
     PointB = sts.Create("PointB", this);
     //Additional semantic type initializers.
 }
示例#3
0
文件: Test.cs 项目: xiluoyouqd/HOPE
 //Implements ICreate.
 public void Initialize(ISemanticTypeSystem sts)
 {
     Line = sts.Create("Line", this);
     //Additional semantic type initializers.
 }
示例#4
0
文件: Test.cs 项目: xiluoyouqd/HOPE
 //Implements ICreate.
 public void Initialize(ISemanticTypeSystem sts)
 {
     Integer = sts.Create("Integer", this);
     //Additional semantic type initializers.
 }
示例#5
0
文件: Test.cs 项目: xiluoyouqd/HOPE
 //Implements ICreate.
 public void Initialize(ISemanticTypeSystem sts)
 {
     X = sts.Create("X", this);
     Y = sts.Create("Y", this);
     //Additional semantic type initializers.
 }
示例#6
0
文件: Test.cs 项目: keithshort/HOPE
 //Implements ICreate.
 public void Initialize(ISemanticTypeSystem sts)
 {
     Integer = sts.Create("Integer", this);
     //Additional semantic type initializers.
 }
示例#7
0
文件: Test.cs 项目: xiluoyouqd/HOPE
 //Implements ICreate.
 public void Initialize(ISemanticTypeSystem sts)
 {
     Name         = sts.Create("Name", this);
     Abbreviation = sts.Create("Abbreviation", this);
     //Additional semantic type initializers.
 }
示例#8
0
文件: Test.cs 项目: keithshort/HOPE
 //Implements ICreate.
 public void Initialize(ISemanticTypeSystem sts)
 {
     Name = sts.Create("Name", this);
     Abbreviation = sts.Create("Abbreviation", this);
     //Additional semantic type initializers.
 }
示例#9
0
文件: Test.cs 项目: keithshort/HOPE
 //Implements ICreate.
 public void Initialize(ISemanticTypeSystem sts)
 {
     Point = sts.Create("Point", this);
     //Additional semantic type initializers.
 }
示例#10
0
文件: Test.cs 项目: keithshort/HOPE
 //Implements ICreate.
 public void Initialize(ISemanticTypeSystem sts)
 {
     X = sts.Create("X", this);
     Y = sts.Create("Y", this);
     //Additional semantic type initializers.
 }
示例#11
0
文件: Test.cs 项目: keithshort/HOPE
 //Implements ICreate.
 public void Initialize(ISemanticTypeSystem sts)
 {
     Line = sts.Create("Line", this);
     //Additional semantic type initializers.
 }
示例#12
0
文件: Test.cs 项目: keithshort/HOPE
 //Implements ICreate.
 public void Initialize(ISemanticTypeSystem sts)
 {
     Relationship = sts.Create("Relationship", this);
     //Additional semantic type initializers.
     Relationship.ForwardName = "Father of";
     Relationship.ReverseName = "Son of";
 }