/* * Copyright 2012 Shared Learning Collaborative, LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2012.04.20 at 03:09:04 PM EDT // package org.slc.sli.sample.entities; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * This entity represents subtests that assess specific learning objectives. * * * <p>Java class for ObjectiveAssessment complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="ObjectiveAssessment"> * <complexContent> * <extension base="{http://ed-fi.org/0100}ComplexObjectType"> * <sequence> * <element name="IdentificationCode" type="{http://ed-fi.org/0100}IdentificationCode"/> * <element name="MaxRawScore" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> * <element name="AssessmentPerformanceLevel" type="{http://ed-fi.org/0100}AssessmentPerformanceLevel" maxOccurs="unbounded" minOccurs="0"/> * <element name="PercentOfAssessment" type="{http://ed-fi.org/0100}percent" minOccurs="0"/> * <element name="Nomenclature" type="{http://ed-fi.org/0100}Nomenclature" minOccurs="0"/> * <element name="AssessmentItemReference" type="{http://ed-fi.org/0100}ReferenceType" maxOccurs="unbounded" minOccurs="0"/> * <element name="LearningObjectiveReference" type="{http://ed-fi.org/0100}LearningObjectiveReferenceType" maxOccurs="unbounded" minOccurs="0"/> * <element name="LearningStandardReference" type="{http://ed-fi.org/0100}LearningStandardReferenceType" maxOccurs="unbounded" minOccurs="0"/> * <element name="ObjectiveAssessmentReference" type="{http://ed-fi.org/0100}ReferenceType" maxOccurs="unbounded" minOccurs="0"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ObjectiveAssessment", propOrder = { "identificationCode", "maxRawScore", "assessmentPerformanceLevel", "percentOfAssessment", "nomenclature", "assessmentItemReference", "learningObjectiveReference", "learningStandardReference", "objectiveAssessmentReference" }) public class ObjectiveAssessment extends ComplexObjectType { @XmlElement(name = "IdentificationCode", required = true) protected String identificationCode; @XmlElement(name = "MaxRawScore") protected Integer maxRawScore; @XmlElement(name = "AssessmentPerformanceLevel") protected List<AssessmentPerformanceLevel> assessmentPerformanceLevel; @XmlElement(name = "PercentOfAssessment") protected Integer percentOfAssessment; @XmlElement(name = "Nomenclature") protected String nomenclature; @XmlElement(name = "AssessmentItemReference") protected List<ReferenceType> assessmentItemReference; @XmlElement(name = "LearningObjectiveReference") protected List<LearningObjectiveReferenceType> learningObjectiveReference; @XmlElement(name = "LearningStandardReference") protected List<LearningStandardReferenceType> learningStandardReference; @XmlElement(name = "ObjectiveAssessmentReference") protected List<ReferenceType> objectiveAssessmentReference; /** * Gets the value of the identificationCode property. * * @return * possible object is * {@link String } * */ public String getIdentificationCode() { return identificationCode; } /** * Sets the value of the identificationCode property. * * @param value * allowed object is * {@link String } * */ public void setIdentificationCode(String value) { this.identificationCode = value; } /** * Gets the value of the maxRawScore property. * * @return * possible object is * {@link Integer } * */ public Integer getMaxRawScore() { return maxRawScore; } /** * Sets the value of the maxRawScore property. * * @param value * allowed object is * {@link Integer } * */ public void setMaxRawScore(Integer value) { this.maxRawScore = value; } /** * Gets the value of the assessmentPerformanceLevel property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the assessmentPerformanceLevel property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAssessmentPerformanceLevel().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link AssessmentPerformanceLevel } * * */ public List<AssessmentPerformanceLevel> getAssessmentPerformanceLevel() { if (assessmentPerformanceLevel == null) { assessmentPerformanceLevel = new ArrayList<AssessmentPerformanceLevel>(); } return this.assessmentPerformanceLevel; } /** * Gets the value of the percentOfAssessment property. * * @return * possible object is * {@link Integer } * */ public Integer getPercentOfAssessment() { return percentOfAssessment; } /** * Sets the value of the percentOfAssessment property. * * @param value * allowed object is * {@link Integer } * */ public void setPercentOfAssessment(Integer value) { this.percentOfAssessment = value; } /** * Gets the value of the nomenclature property. * * @return * possible object is * {@link String } * */ public String getNomenclature() { return nomenclature; } /** * Sets the value of the nomenclature property. * * @param value * allowed object is * {@link String } * */ public void setNomenclature(String value) { this.nomenclature = value; } /** * Gets the value of the assessmentItemReference property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the assessmentItemReference property. * * <p> * For example, to add a new item, do as follows: * <pre> * getAssessmentItemReference().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ReferenceType } * * */ public List<ReferenceType> getAssessmentItemReference() { if (assessmentItemReference == null) { assessmentItemReference = new ArrayList<ReferenceType>(); } return this.assessmentItemReference; } /** * Gets the value of the learningObjectiveReference property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the learningObjectiveReference property. * * <p> * For example, to add a new item, do as follows: * <pre> * getLearningObjectiveReference().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link LearningObjectiveReferenceType } * * */ public List<LearningObjectiveReferenceType> getLearningObjectiveReference() { if (learningObjectiveReference == null) { learningObjectiveReference = new ArrayList<LearningObjectiveReferenceType>(); } return this.learningObjectiveReference; } /** * Gets the value of the learningStandardReference property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the learningStandardReference property. * * <p> * For example, to add a new item, do as follows: * <pre> * getLearningStandardReference().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link LearningStandardReferenceType } * * */ public List<LearningStandardReferenceType> getLearningStandardReference() { if (learningStandardReference == null) { learningStandardReference = new ArrayList<LearningStandardReferenceType>(); } return this.learningStandardReference; } /** * Gets the value of the objectiveAssessmentReference property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the objectiveAssessmentReference property. * * <p> * For example, to add a new item, do as follows: * <pre> * getObjectiveAssessmentReference().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ReferenceType } * * */ public List<ReferenceType> getObjectiveAssessmentReference() { if (objectiveAssessmentReference == null) { objectiveAssessmentReference = new ArrayList<ReferenceType>(); } return this.objectiveAssessmentReference; } }