/// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="refId">ID for the standards document</param>
 ///<param name="language">A Language</param>
 ///<param name="title">Name of standard document, i.e., "Washington Essential Academic Learning Requirements."</param>
 ///<param name="organizations">Name of organization represented by the document, i.e., "National Council of Teachers of Mathematics (NCTM)," "Washington," "Seattle School District."</param>
 ///<param name="subjectAreas">For a description of this element, see 5.1.30 SubjectArea.</param>
 ///<param name="documentStatus">ValuesDraft,AdoptedArchivedUnknown</param>
 ///<param name="learningStandardItemRefId">Link to the first/top LearningStandardItem in the Standard hierarchy</param>
 ///
 public LearningStandardDocument( string refId, LanguageCode language, string title, Organization organizations, SubjectAreas subjectAreas, DocumentStatus documentStatus, string learningStandardItemRefId )
     : base(Adk.SifVersion, InstrDTD.LEARNINGSTANDARDDOCUMENT)
 {
     this.RefId = refId;
     this.SetLanguage( language );
     this.Title = title;
     this.Organizations =  new Organizations( organizations );
     this.SubjectAreas = subjectAreas;
     this.SetDocumentStatus( documentStatus );
     this.LearningStandardItemRefId = learningStandardItemRefId;
 }
 /// <summary>
 /// Sets the value of the <c>&lt;DocumentStatus&gt;</c> element.
 /// </summary>
 /// <param name="val">A DocumentStatus object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "ValuesDraft,AdoptedArchivedUnknown"</para>
 /// <para>Version: 2.5</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetDocumentStatus( DocumentStatus val )
 {
     SetField( InstrDTD.LEARNINGSTANDARDDOCUMENT_DOCUMENTSTATUS, val );
 }
예제 #3
0
 /// <summary>
 /// Constructor that accepts values for all mandatory fields
 /// </summary>
 ///<param name="refId">ID for the standards document</param>
 ///<param name="language">A Language</param>
 ///<param name="title">Name of standard document, i.e., "Washington Essential Academic Learning Requirements."</param>
 ///<param name="organizations">Name of organization represented by the document, i.e., "National Council of Teachers of Mathematics (NCTM)," "Washington," "Seattle School District."</param>
 ///<param name="subjectAreas">For a description of this element, see 5.1.30 SubjectArea.</param>
 ///<param name="documentStatus">ValuesDraft,AdoptedArchivedUnknown</param>
 ///<param name="learningStandardItemRefId">Link to the first/top LearningStandardItem in the Standard hierarchy</param>
 ///
 public LearningStandardDocument(string refId, LanguageCode language, string title, Organization organizations, SubjectAreas subjectAreas, DocumentStatus documentStatus, string learningStandardItemRefId) : base(Adk.SifVersion, InstrDTD.LEARNINGSTANDARDDOCUMENT)
 {
     this.RefId = refId;
     this.SetLanguage(language);
     this.Title         = title;
     this.Organizations = new Organizations(organizations);
     this.SubjectAreas  = subjectAreas;
     this.SetDocumentStatus(documentStatus);
     this.LearningStandardItemRefId = learningStandardItemRefId;
 }
예제 #4
0
 /// <summary>
 /// Sets the value of the <c>&lt;DocumentStatus&gt;</c> element.
 /// </summary>
 /// <param name="val">A DocumentStatus object</param>
 /// <remarks>
 /// <para>The SIF specification defines the meaning of this element as: "ValuesDraft,AdoptedArchivedUnknown"</para>
 /// <para>Version: 2.6</para>
 /// <para>Since: 1.5r1</para>
 /// </remarks>
 public void SetDocumentStatus(DocumentStatus val)
 {
     SetField(InstrDTD.LEARNINGSTANDARDDOCUMENT_DOCUMENTSTATUS, val);
 }