/// <summary> /// Sets the value of the <c><Value></c> element. /// </summary> /// <param name="val">A GeneralSubjects object</param> /// <remarks> /// <para>The SIF specification defines the meaning of this of the content as: "Gets or sets the content value of the &lt;SubjectArea&gt; element"</para> /// <para>Version: 2.5</para> /// <para>Since: 2.0</para> /// </remarks> public void SetValue( GeneralSubjects val ) { SetField( CommonDTD.SUBJECTAREA, val ); }
/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="value">Gets or sets the content value of the &lt;SubjectArea&gt; element</param> /// public SubjectArea( GeneralSubjects value ) : base(CommonDTD.SUBJECTAREA) { this.SetValue( value ); }
/// <summary> /// Sets the value of the <c><Value></c> element. /// </summary> /// <param name="val">A GeneralSubjects object</param> /// <remarks> /// <para>The SIF specification defines the meaning of this of the content as: "Gets or sets the content value of the &lt;SubjectArea&gt; element"</para> /// <para>Version: 2.6</para> /// <para>Since: 2.0</para> /// </remarks> public void SetValue(GeneralSubjects val) { SetField(CommonDTD.SUBJECTAREA, val); }
/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="value">Gets or sets the content value of the &lt;SubjectArea&gt; element</param> /// public SubjectArea(GeneralSubjects value) : base(CommonDTD.SUBJECTAREA) { this.SetValue(value); }
///<summary>Adds the value of the <c><SubjectArea></c> element.</summary> /// <param name="Value">Gets or sets the content value of the &lt;SubjectArea&gt; element</param> ///<remarks> /// <para>This form of <c>setSubjectArea</c> is provided as a convenience method /// that is functionally equivalent to the method <c>AddSubjectArea</c></para> /// <para>Version: 2.6</para> /// <para>Since: 2.0</para> /// </remarks> public void AddSubjectArea(GeneralSubjects Value) { AddChild(CommonDTD.SUBJECTAREALIST_SUBJECTAREA, new SubjectArea(Value)); }
/// <summary> /// Constructor that accepts values for all mandatory fields /// </summary> ///<param name="modification">How is the National Curriculum used for this learner?</param> ///<param name="subject">National Curriculum subject(s) for which modification or disapplication applies.</param> /// public NationalCurriculum( Modification modification, GeneralSubjects subject ) : base(LearnerDTD.NATIONALCURRICULUM) { this.SetModification( modification ); this.SetSubject( subject ); }
/// <summary> /// Sets the value of the <c><Subject></c> element. /// </summary> /// <param name="val">A GeneralSubjects object</param> /// <remarks> /// <para>The SIF specification defines the meaning of this element as: "National Curriculum subject(s) for which modification or disapplication applies."</para> /// <para>Version: 2.5</para> /// <para>Since: 2.0</para> /// </remarks> public void SetSubject( GeneralSubjects val ) { SetField( LearnerDTD.NATIONALCURRICULUM_SUBJECT, val ); }