예제 #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";
 }