示例#1
0
 /// <summary>
 /// Sets the value of the <c>&lt;Value&gt;</c> element.
 /// </summary>
 /// <param name="val">A BloomsTaxonomyLevelType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this of the content as: "Gets or sets the content value of the &amp;lt;BloomsTaxonomyLevel&amp;gt; element"</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.2</para>
 /// </remarks>
 public void SetValue(BloomsTaxonomyLevelType val)
 {
     SetField(DatamodelDTD.BLOOMSTAXONOMYLEVEL, val);
 }
示例#2
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="value">Gets or sets the content value of the &amp;lt;BloomsTaxonomyLevel&amp;gt; element</param>
 ///
 public BloomsTaxonomyLevel(BloomsTaxonomyLevelType value) : base(DatamodelDTD.BLOOMSTAXONOMYLEVEL)
 {
     this.SetValue(value);
 }
 /// <summary>
 /// Sets the value of the <c>&lt;Value&gt;</c> element.
 /// </summary>
 /// <param name="val">A BloomsTaxonomyLevelType object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this of the content as: "Gets or sets the content value of the &amp;lt;BloomsTaxonomyLevel&amp;gt; element"</para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 2.2</para>
 /// </remarks>
 public void SetValue( BloomsTaxonomyLevelType val )
 {
     SetField( DatamodelDTD.BLOOMSTAXONOMYLEVEL, val );
 }
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="value">Gets or sets the content value of the &amp;lt;BloomsTaxonomyLevel&amp;gt; element</param>
 ///
 public BloomsTaxonomyLevel( BloomsTaxonomyLevelType value )
     : base(DatamodelDTD.BLOOMSTAXONOMYLEVEL)
 {
     this.SetValue( value );
 }
 ///<summary>Adds the value of the <c>&lt;BloomsTaxonomyLevel&gt;</c> element.</summary>
 /// <param name="Value">Gets or sets the content value of the &amp;lt;BloomsTaxonomyLevel&amp;gt; element</param>
 ///<remarks>
 /// <para>This form of <c>setBloomsTaxonomyLevel</c> is provided as a convenience method
 /// that is functionally equivalent to the method <c>AddBloomsTaxonomyLevel</c></para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 2.2</para>
 /// </remarks>
 public void AddBloomsTaxonomyLevel(BloomsTaxonomyLevelType Value)
 {
     AddChild(DatamodelDTD.BLOOMSTAXONOMYLEVELS_BLOOMSTAXONOMYLEVEL, new BloomsTaxonomyLevel(Value));
 }