/// <summary>
 /// Sets the value of the <c>&lt;Code&gt;</c> element.
 /// </summary>
 /// <param name="val">A ProgramTypeCode object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "A code to depict the focus of the educational program (replaces deprecated AcademicTrack."</para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.2</para>
 /// </remarks>
 public void SetCode( ProgramTypeCode val )
 {
     SetField( EtranscriptsDTD.ACADEMICFOCUS_CODE, val );
 }
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">A code to depict the focus of the educational program (replaces deprecated AcademicTrack.</param>
 ///
 public AcademicFocus( ProgramTypeCode code )
     : base(EtranscriptsDTD.ACADEMICFOCUS)
 {
     this.SetCode( code );
 }
 /// <summary>
 /// Sets the value of the <c>&lt;Code&gt;</c> element.
 /// </summary>
 /// <param name="val">A ProgramTypeCode object</param>
 /// <remarks>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetCode( ProgramTypeCode val )
 {
     SetField( HrfinDTD.HRPROGRAMTYPE_CODE, val );
 }