Esempio n. 1
0
 ///<summary>Sets the value of the <c>&lt;EnglishProficiency&gt;</c> element.</summary>
 /// <param name="Code">Person's proficiency in English.</param>
 ///<remarks>
 /// <para>This form of <c>setEnglishProficiency</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>EnglishProficiency</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.1</para>
 /// </remarks>
 public void SetEnglishProficiency(EnglishProficiencyCode Code)
 {
     RemoveChild(CommonDTD.DEMOGRAPHICS_ENGLISHPROFICIENCY);
     AddChild(CommonDTD.DEMOGRAPHICS_ENGLISHPROFICIENCY, new EnglishProficiency(Code));
 }
 ///<summary>Sets the value of the <c>&lt;EnglishProficiency&gt;</c> element.</summary>
 /// <param name="Code">Person's proficiency in English.</param>
 ///<remarks>
 /// <para>This form of <c>setEnglishProficiency</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>EnglishProficiency</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.1</para>
 /// </remarks>
 public void SetEnglishProficiency( EnglishProficiencyCode Code )
 {
     RemoveChild( EtranscriptsDTD.DEMOGRAPHICSDATA_ENGLISHPROFICIENCY);
     AddChild( EtranscriptsDTD.DEMOGRAPHICSDATA_ENGLISHPROFICIENCY, new EnglishProficiency( Code ) );
 }
Esempio n. 3
0
 /// <summary>
 /// Sets the value of the <c>Code</c> attribute.
 /// </summary>
 /// <param name="val">A EnglishProficiencyCode object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "Person's proficiency in English."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.1</para>
 /// </remarks>
 public void SetCode(EnglishProficiencyCode val)
 {
     SetField(CommonDTD.ENGLISHPROFICIENCY_CODE, val);
 }
Esempio n. 4
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">Person's proficiency in English.</param>
 ///
 public EnglishProficiency(EnglishProficiencyCode code) : base(CommonDTD.ENGLISHPROFICIENCY)
 {
     this.SetCode(code);
 }
Esempio n. 5
0
 ///<summary>Sets the value of the <c>&lt;EnglishProficiency&gt;</c> element.</summary>
 /// <param name="Code">Person's proficiency in English.</param>
 ///<remarks>
 /// <para>This form of <c>setEnglishProficiency</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>EnglishProficiency</c></para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 1.1</para>
 /// </remarks>
 public void SetEnglishProficiency( EnglishProficiencyCode Code )
 {
     RemoveChild( CommonDTD.DEMOGRAPHICS_ENGLISHPROFICIENCY);
     AddChild( CommonDTD.DEMOGRAPHICS_ENGLISHPROFICIENCY, new EnglishProficiency( Code ) );
 }
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">Person's proficiency in English.</param>
 ///
 public EnglishProficiency( EnglishProficiencyCode code )
     : base(CommonDTD.ENGLISHPROFICIENCY)
 {
     this.SetCode( code );
 }
 /// <summary>
 /// Sets the value of the <c>Code</c> attribute.
 /// </summary>
 /// <param name="val">A EnglishProficiencyCode object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "Person's proficiency in English."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.1</para>
 /// </remarks>
 public void SetCode( EnglishProficiencyCode val )
 {
     SetField( CommonDTD.ENGLISHPROFICIENCY_CODE, val );
 }