コード例 #1
1
ファイル: DomainRole.cs プロジェクト: Obles/vwdaddin
 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
ファイル: DomainProperty.cs プロジェクト: Obles/vwdaddin
 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
ファイル: ConnectionBuilder.cs プロジェクト: Obles/vwdaddin
 public ConnectionBuilder(DslDocument Doc)
     : base(Doc.CreateElement("ConnectionBuilder"))
 {
 }
コード例 #4
0
ファイル: XmlPropertyData.cs プロジェクト: Obles/vwdaddin
 protected XmlPropertyData(DslDocument Doc)
     : base(Doc.CreateElement("XmlPropertyData"))
 {
 }
コード例 #5
0
 public RolePlayerConnectDirective(DslDocument Doc)
     : base(Doc.CreateElement("RolePlayerConnectDirective"))
 {
 }
コード例 #6
0
ファイル: Designer.cs プロジェクト: Obles/vwdaddin
 public Designer(DslDocument Doc)
     : base(Doc.CreateElement("Designer"))
 {
     this.Xml.SetAttribute("EditorGuid", Guid.NewGuid().ToString());
     this.Xml.SetAttribute("FileExtension", "mydsl3");
 }
コード例 #7
0
ファイル: XmlRelationshipData.cs プロジェクト: Obles/vwdaddin
 protected XmlRelationshipData(DslDocument Doc)
     : base(Doc.CreateElement("XmlRelationshipData"))
 {
 }
コード例 #8
0
ファイル: Dsl.cs プロジェクト: Obles/vwdaddin
 protected Dsl(DslDocument Doc)
     : base(Doc.CreateElement("Dsl"))
 {
     this.Xml.SetAttribute("Id", Guid.NewGuid().ToString());
 }
コード例 #9
0
ファイル: XmlClassData.cs プロジェクト: Obles/vwdaddin
 protected XmlClassData(DslDocument Doc)
     : base(Doc.CreateElement("XmlClassData"))
 {
 }
コード例 #10
0
ファイル: Diagram.cs プロジェクト: Obles/vwdaddin
 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
ファイル: DomainPath.cs プロジェクト: Obles/vwdaddin
 protected DomainPath(DslDocument Doc)
     : base(Doc.CreateElement("DomainPath"))
 {
 }
コード例 #12
0
ファイル: DomainPath.cs プロジェクト: Obles/vwdaddin
 public DomainPath(DslDocument Doc, String path)
     : base(Doc.CreateElement("DomainPath"))
 {
     Value = path;
 }
コード例 #13
0
 protected ElementMergeDirective(DslDocument Doc)
     : base(Doc.CreateElement("ElementMergeDirective"))
 {
 }
コード例 #14
0
ファイル: DomainRole.cs プロジェクト: Obles/vwdaddin
 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"))
 {
 }