Beispiel #1
0
 ///<summary>Sets the value of the <c>&lt;LanguageOfInstruction&gt;</c> element.</summary>
 /// <param name="Code">A Code</param>
 ///<remarks>
 /// <para>This form of <c>setLanguageOfInstruction</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>LanguageOfInstruction</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.6</para>
 /// </remarks>
 public void SetLanguageOfInstruction( AustralianClassificationOfLanguagesType Code )
 {
     RemoveChild( SchoolDTD.SECTIONINFO_LANGUAGEOFINSTRUCTION);
     AddChild( SchoolDTD.SECTIONINFO_LANGUAGEOFINSTRUCTION, new LanguageOfInstruction( Code ) );
 }
Beispiel #2
0
 /// <summary>
 /// Sets the value of the <c>&lt;Parent2Language&gt;</c> element.
 /// </summary>
 /// <param name="val">A AustralianClassificationOfLanguagesType object</param>
 /// <remarks>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.5</para>
 /// </remarks>
 public void SetParent2Language( AustralianClassificationOfLanguagesType val )
 {
     SetField( StudentDTD.MOSTRECENT_PARENT2LANGUAGE, val );
 }
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">A Code</param>
 ///
 public LanguageOfInstruction( AustralianClassificationOfLanguagesType code )
     : base(SchoolDTD.LANGUAGEOFINSTRUCTION)
 {
     this.SetCode( code );
 }
 /// <summary>
 /// Sets the value of the <c>&lt;Code&gt;</c> element.
 /// </summary>
 /// <param name="val">A AustralianClassificationOfLanguagesType object</param>
 /// <remarks>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.6</para>
 /// </remarks>
 public void SetCode( AustralianClassificationOfLanguagesType val )
 {
     SetField( SchoolDTD.LANGUAGEOFINSTRUCTION_CODE, val );
 }
Beispiel #5
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">
 /// The code representing the specific language that an
 /// individual uses to communicate.</param>
 ///<param name="value">Gets or sets the content value of the &amp;lt;Language&amp;gt; element</param>
 ///
 public Language( AustralianClassificationOfLanguagesType code, string value )
     : base(CommonDTD.LANGUAGE)
 {
     this.SetCode( code );
     this.Value = value;
 }
Beispiel #6
0
 /// <summary>
 /// Sets the value of the <c>&lt;Code&gt;</c> element.
 /// </summary>
 /// <param name="val">A AustralianClassificationOfLanguagesType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "
 /// The code representing the specific language that an
 /// individual uses to communicate."</para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.3</para>
 /// </remarks>
 public void SetCode( AustralianClassificationOfLanguagesType val )
 {
     SetField( CommonDTD.LANGUAGE_CODE, val );
 }