//Implements ICreate. public void Initialize(ISemanticTypeSystem sts) { Relationship = sts.Create("Relationship", this); //Additional semantic type initializers. Relationship.ForwardName = "Father of"; Relationship.ReverseName = "Son of"; }
//Implements ICreate. public void Initialize(ISemanticTypeSystem sts) { PointA = sts.Create("PointA", this); PointB = sts.Create("PointB", this); //Additional semantic type initializers. }
//Implements ICreate. public void Initialize(ISemanticTypeSystem sts) { Line = sts.Create("Line", this); //Additional semantic type initializers. }
//Implements ICreate. public void Initialize(ISemanticTypeSystem sts) { Integer = sts.Create("Integer", this); //Additional semantic type initializers. }
//Implements ICreate. public void Initialize(ISemanticTypeSystem sts) { X = sts.Create("X", this); Y = sts.Create("Y", this); //Additional semantic type initializers. }
//Implements ICreate. public void Initialize(ISemanticTypeSystem sts) { Name = sts.Create("Name", this); Abbreviation = sts.Create("Abbreviation", this); //Additional semantic type initializers. }
//Implements ICreate. public void Initialize(ISemanticTypeSystem sts) { Point = sts.Create("Point", this); //Additional semantic type initializers. }