コード例 #1
0
 /// <summary>
 /// Sets the value of the <c>&lt;Code&gt;</c> element.
 /// </summary>
 /// <param name="val">A FrequencyTimeCode object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "Code for the frequency that the service is provided."</para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetCode( FrequencyTimeCode val )
 {
     SetField( CommonDTD.FREQUENCYTIME_CODE, val );
 }
コード例 #2
0
 /// <summary>
 /// Sets the value of the <c>&lt;Code&gt;</c> element.
 /// </summary>
 /// <param name="val">A FrequencyTimeCode object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "Code for the frequency that the service is provided."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetCode(FrequencyTimeCode val)
 {
     SetField(CommonDTD.FREQUENCYTIME_CODE, val);
 }
コード例 #3
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="measurementTool">The specific tool that will be used to gather data about how the student is improving.</param>
 ///<param name="frequencyofMeasure">The frequency of the measuement.</param>
 ///
 public MeasurementsRTI( string measurementTool, FrequencyTimeCode frequencyofMeasure )
     : base(InstrDTD.MEASUREMENTSRTI)
 {
     this.MeasurementTool = measurementTool;
     this.SetFrequencyofMeasure( frequencyofMeasure );
 }
コード例 #4
0
ファイル: RTIResults.cs プロジェクト: rafidzal/OpenADK-csharp
 ///<summary>Sets the value of the <c>&lt;Measurements&gt;</c> element.</summary>
 /// <param name="MeasurementTool">The specific tool that will be used to gather data about how the student is improving.</param>
 /// <param name="FrequencyofMeasure">The frequency of the measuement.</param>
 ///<remarks>
 /// <para>This form of <c>setMeasurements</c> is provided as a convenience method
 /// that is functionally equivalent to the <c>Measurements</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.6</para>
 /// </remarks>
 public void SetMeasurements( string MeasurementTool, FrequencyTimeCode FrequencyofMeasure )
 {
     RemoveChild( InstrDTD.RTIRESULTS_MEASUREMENTS);
     AddChild( InstrDTD.RTIRESULTS_MEASUREMENTS, new MeasurementsRTI( MeasurementTool, FrequencyofMeasure ) );
 }
コード例 #5
0
 /// <summary>
 /// Sets the value of the <c>&lt;FrequencyofMeasure&gt;</c> element.
 /// </summary>
 /// <param name="val">A FrequencyTimeCode object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "The frequency of the measuement."</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.6</para>
 /// </remarks>
 public void SetFrequencyofMeasure( FrequencyTimeCode val )
 {
     SetField( InstrDTD.MEASUREMENTSRTI_FREQUENCYOFMEASURE, val );
 }