///<summary>Sets the value of the <c>&lt;GradeClassification&gt;</c> element.</summary>
 /// <param name="Code">The type of school grade level classification this is. Source: 0038 (Applicable Grades) [NCES Handbooks]</param>
 ///<remarks>
 /// <para>This form of <c>setGradeClassification</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>GradeClassification</c></para>
 /// <para>Version: 1.5r1</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetGradeClassification(GradeClassificationCode Code)
 {
     RemoveChild(StudentDTD.STAFFASSIGNMENT_GRADECLASSIFICATION);
     AddChild(StudentDTD.STAFFASSIGNMENT_GRADECLASSIFICATION, new GradeClassification(Code));
 }
 ///<summary>Sets the value of the <c>&lt;GradeClassification&gt;</c> element.</summary>
 /// <param name="Code">The type of school grade level classification this is. Source: 0038 (Applicable Grades) [NCES Handbooks]</param>
 ///<remarks>
 /// <para>This form of <c>setGradeClassification</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>GradeClassification</c></para>
 /// <para>Version: 1.5r1</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetGradeClassification( GradeClassificationCode Code )
 {
     RemoveChild( StudentDTD.STAFFASSIGNMENT_GRADECLASSIFICATION);
     AddChild( StudentDTD.STAFFASSIGNMENT_GRADECLASSIFICATION, new GradeClassification( Code ) );
 }
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">The type of school grade level classification this is. Source: 0038 (Applicable Grades) [NCES Handbooks]</param>
 ///
 public GradeClassification( GradeClassificationCode code )
     : base(StudentDTD.GRADECLASSIFICATION)
 {
     this.SetCode( code );
 }
 /// <summary>
 /// Sets the value of the <c>Code</c> attribute.
 /// </summary>
 /// <param name="val">A GradeClassificationCode object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "The type of school grade level classification this is. Source: 0038 (Applicable Grades) [NCES Handbooks]"</para>
 /// <para>Version: 1.5r1</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetCode( GradeClassificationCode val )
 {
     SetField( StudentDTD.GRADECLASSIFICATION_CODE, val );
 }
 /// <summary>
 /// Sets the value of the <c>Code</c> attribute.
 /// </summary>
 /// <param name="val">A GradeClassificationCode object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "The type of school grade level classification this is. Source: 0038 (Applicable Grades) [NCES Handbooks]"</para>
 /// <para>Version: 1.5r1</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetCode(GradeClassificationCode val)
 {
     SetField(StudentDTD.GRADECLASSIFICATION_CODE, val);
 }
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="code">The type of school grade level classification this is. Source: 0038 (Applicable Grades) [NCES Handbooks]</param>
 ///
 public GradeClassification(GradeClassificationCode code) : base(StudentDTD.GRADECLASSIFICATION)
 {
     this.SetCode(code);
 }