コード例 #1
0
ファイル: SIF_From.cs プロジェクト: pgodwin/OpenADK-csharp
 ///<summary>Adds the value of the <c>&lt;SIF_Join&gt;</c> element.</summary>
 /// <param name="Type">A Type</param>
 /// <param name="SifJoinOn">A SIF_JoinOn</param>
 ///<remarks>
 /// <para>This form of <c>setSIF_Join</c> is provided as a convenience method
 /// that is functionally equivalent to the method <c>AddSIF_Join</c></para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void AddSIF_Join( SIFJoinType Type, SIF_JoinOn SifJoinOn )
 {
     AddChild( InfraDTD.SIF_FROM_SIF_JOIN, new SIF_Join( Type, SifJoinOn ) );
 }
コード例 #2
0
ファイル: SIF_From.cs プロジェクト: rubitek/OpenADK-csharp
 ///<summary>Adds the value of the <c>&lt;SIF_Join&gt;</c> element.</summary>
 /// <param name="Type">A Type</param>
 /// <param name="SifJoinOn">A SIF_JoinOn</param>
 ///<remarks>
 /// <para>This form of <c>setSIF_Join</c> is provided as a convenience method
 /// that is functionally equivalent to the method <c>AddSIF_Join</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void AddSIF_Join(SIFJoinType Type, SIF_JoinOn SifJoinOn)
 {
     AddChild(InfraDTD.SIF_FROM_SIF_JOIN, new SIF_Join(Type, SifJoinOn));
 }
コード例 #3
0
ファイル: SIF_Join.cs プロジェクト: rubitek/OpenADK-csharp
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="type">A Type</param>
 ///<param name="sifJoinOn">A SIF_JoinOn</param>
 ///
 public SIF_Join(SIFJoinType type, SIF_JoinOn sifJoinOn) : base(InfraDTD.SIF_JOIN)
 {
     this.SetType(type);
     this.AddSIF_JoinOn(sifJoinOn);
 }
コード例 #4
0
ファイル: SIF_Join.cs プロジェクト: rubitek/OpenADK-csharp
 /// <summary>Adds a new <c>&lt;SIF_JoinOn&gt;</c> child element.</summary>
 /// <param name="val">A SIF_JoinOn object</param>
 /// <remarks>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void AddSIF_JoinOn(SIF_JoinOn val)
 {
     AddChild(InfraDTD.SIF_JOIN_SIF_JOINON, val);
 }
コード例 #5
0
ファイル: SIF_Join.cs プロジェクト: pgodwin/OpenADK-csharp
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="type">A Type</param>
 ///<param name="sifJoinOn">A SIF_JoinOn</param>
 ///
 public SIF_Join( SIFJoinType type, SIF_JoinOn sifJoinOn )
     : base(InfraDTD.SIF_JOIN)
 {
     this.SetType( type );
     this.AddSIF_JoinOn( sifJoinOn );
 }
コード例 #6
0
ファイル: SIF_Join.cs プロジェクト: pgodwin/OpenADK-csharp
 /// <summary>
 /// Sets all SIF_JoinOn object instances. All existing 
 /// <c>SIF_JoinOn</c> instances 
 /// are removed and replaced with this list. Calling this method with the 
 /// parameter value set to null removes all <c>SIF_JoinOns</c>.
 /// </summary>
 /// <remarks>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void SetSIF_JoinOns( SIF_JoinOn[] items)
 {
     SetChildren( InfraDTD.SIF_JOIN_SIF_JOINON, items );
 }
コード例 #7
0
ファイル: SIF_Join.cs プロジェクト: pgodwin/OpenADK-csharp
 /// <summary>Adds a new <c>&lt;SIF_JoinOn&gt;</c> child element.</summary>
 /// <param name="val">A SIF_JoinOn object</param>
 /// <remarks>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.0</para>
 /// </remarks>
 public void AddSIF_JoinOn( SIF_JoinOn val )
 {
     AddChild( InfraDTD.SIF_JOIN_SIF_JOINON, val );
 }