Beispiel #1
0
 ///<summary>Sets the value of the <c>&lt;Evaluation&gt;</c> element.</summary>
 /// <param name="EvaluationType">A qualifer for what type of evaluation this is.  Valid values are "Inline" and "RefId".  Inline values are contained in the optional Description element, RefIds are contained in the AssessmentRefId element.</param>
 ///<remarks>
 /// <para>This form of <c>setEvaluation</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>Evaluation</c></para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetEvaluation( EvaluationType EvaluationType )
 {
     RemoveChild( InstrDTD.ACTIVITY_EVALUATION);
     AddChild( InstrDTD.ACTIVITY_EVALUATION, new Evaluation( EvaluationType ) );
 }
Beispiel #2
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="evaluationType">A qualifer for what type of evaluation this is.  Valid values are "Inline" and "RefId".  Inline values are contained in the optional Description element, RefIds are contained in the AssessmentRefId element.</param>
 ///
 public Evaluation( EvaluationType evaluationType )
     : base(InstrDTD.EVALUATION)
 {
     this.SetEvaluationType( evaluationType );
 }
Beispiel #3
0
 /// <summary>
 /// Sets the value of the <c>EvaluationType</c> attribute.
 /// </summary>
 /// <param name="val">A EvaluationType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "A qualifer for what type of evaluation this is.  Valid values are "Inline" and "RefId".  Inline values are contained in the optional Description element, RefIds are contained in the AssessmentRefId element."</para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetEvaluationType( EvaluationType val )
 {
     SetField( InstrDTD.EVALUATION_EVALUATIONTYPE, val );
 }
Beispiel #4
0
 /// <summary>
 /// Sets the value of the <c>EvaluationType</c> attribute.
 /// </summary>
 /// <param name="val">A EvaluationType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this attribute as: "A qualifer for what type of evaluation this is.  Valid values are "Inline" and "RefId".  Inline values are contained in the optional Description element, RefIds are contained in the AssessmentRefId element."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetEvaluationType(EvaluationType val)
 {
     SetField(InstrDTD.EVALUATION_EVALUATIONTYPE, val);
 }
Beispiel #5
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="evaluationType">A qualifer for what type of evaluation this is.  Valid values are "Inline" and "RefId".  Inline values are contained in the optional Description element, RefIds are contained in the AssessmentRefId element.</param>
 ///
 public Evaluation(EvaluationType evaluationType) : base(InstrDTD.EVALUATION)
 {
     this.SetEvaluationType(evaluationType);
 }
Beispiel #6
0
 ///<summary>Sets the value of the <c>&lt;Evaluation&gt;</c> element.</summary>
 /// <param name="EvaluationType">A qualifer for what type of evaluation this is.  Valid values are "Inline" and "RefId".  Inline values are contained in the optional Description element, RefIds are contained in the AssessmentRefId element.</param>
 ///<remarks>
 /// <para>This form of <c>setEvaluation</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>Evaluation</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetEvaluation(EvaluationType EvaluationType)
 {
     RemoveChild(InstrDTD.ACTIVITY_EVALUATION);
     AddChild(InstrDTD.ACTIVITY_EVALUATION, new Evaluation(EvaluationType));
 }