Пример #1
1
 public DomainRole(DslDocument Doc, String Name, String DisplayName, String PropertyName, String PropertyDisplayName, Multiplicity Multiplicity)
     : base(Doc.CreateElement("DomainRole"))
 {
     this.Xml.SetAttribute("Id", Guid.NewGuid().ToString());
     this.Xml.SetAttribute("Name", Name);
     this.Xml.SetAttribute("DisplayName", DisplayName);
     this.Xml.SetAttribute("PropertyName", PropertyName);
     this.Xml.SetAttribute("PropertyDisplayName", PropertyDisplayName);
     this.Xml.SetAttribute("Multiplicity", Multiplicity.ToString());
     this.RolePlayer = Name;
 }
Пример #2
0
 public DomainProperty(DslDocument Doc, String Type, String Name, String DisplayName)
     : base(Doc.CreateElement("DomainProperty"))
 {
     this.Xml.SetAttribute("Id", Guid.NewGuid().ToString());
     this.Xml.SetAttribute("Name", Name);
     this.Xml.SetAttribute("DisplayName", DisplayName);
     this.Type = Type;
 }
Пример #3
0
 public ConnectionBuilder(DslDocument Doc)
     : base(Doc.CreateElement("ConnectionBuilder"))
 {
 }
Пример #4
0
 protected XmlPropertyData(DslDocument Doc)
     : base(Doc.CreateElement("XmlPropertyData"))
 {
 }
Пример #5
0
 public RolePlayerConnectDirective(DslDocument Doc)
     : base(Doc.CreateElement("RolePlayerConnectDirective"))
 {
 }
Пример #6
0
 public Designer(DslDocument Doc)
     : base(Doc.CreateElement("Designer"))
 {
     this.Xml.SetAttribute("EditorGuid", Guid.NewGuid().ToString());
     this.Xml.SetAttribute("FileExtension", "mydsl3");
 }
Пример #7
0
 protected XmlRelationshipData(DslDocument Doc)
     : base(Doc.CreateElement("XmlRelationshipData"))
 {
 }
Пример #8
0
 protected Dsl(DslDocument Doc)
     : base(Doc.CreateElement("Dsl"))
 {
     this.Xml.SetAttribute("Id", Guid.NewGuid().ToString());
 }
Пример #9
0
 protected XmlClassData(DslDocument Doc)
     : base(Doc.CreateElement("XmlClassData"))
 {
 }
Пример #10
0
 public Diagram(DslDocument Doc)
     : base(Doc.CreateElement("Diagram"))
 {
     this.Xml.SetAttribute("Id", Guid.NewGuid().ToString());
     this.Xml.SetAttribute("Namespace", this.OwnerDocument.Dsl.Xml.GetAttribute("Namespace"));
 }
Пример #11
0
 protected DomainPath(DslDocument Doc)
     : base(Doc.CreateElement("DomainPath"))
 {
 }
Пример #12
0
 public DomainPath(DslDocument Doc, String path)
     : base(Doc.CreateElement("DomainPath"))
 {
     Value = path;
 }
Пример #13
0
 protected ElementMergeDirective(DslDocument Doc)
     : base(Doc.CreateElement("ElementMergeDirective"))
 {
 }
Пример #14
0
 public DomainRole(DslDocument Doc)
     : base(Doc.CreateElement("DomainRole"))
 {
     this.Xml.SetAttribute("Id", Guid.NewGuid().ToString());
 }
Пример #15
0
 protected XmlSerializationBehavior(DslDocument Doc)
     : base(Doc.CreateElement("XmlSerializationBehavior"))
 {
 }