All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gov.nasa.arc.pds.xml.generated.ContextArea Maven / Gradle / Ivy

There is a newer version: 2.8.4
Show newest version
//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.4 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2021.12.10 at 07:24:03 AM GMT 
//


package gov.nasa.arc.pds.xml.generated;

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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * The Context Area provides context information
 *         for a product.
 * 
 * 

Java class for Context_Area complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="Context_Area">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="comment" type="{http://pds.nasa.gov/pds4/pds/v1}comment" minOccurs="0"/>
 *         <element name="Time_Coordinates" type="{http://pds.nasa.gov/pds4/pds/v1}Time_Coordinates" minOccurs="0"/>
 *         <element name="Primary_Result_Summary" type="{http://pds.nasa.gov/pds4/pds/v1}Primary_Result_Summary" minOccurs="0"/>
 *         <element name="Investigation_Area" type="{http://pds.nasa.gov/pds4/pds/v1}Investigation_Area" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Observing_System" type="{http://pds.nasa.gov/pds4/pds/v1}Observing_System" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Target_Identification" type="{http://pds.nasa.gov/pds4/pds/v1}Target_Identification" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Mission_Area" type="{http://pds.nasa.gov/pds4/pds/v1}Mission_Area" minOccurs="0"/>
 *         <element name="Discipline_Area" type="{http://pds.nasa.gov/pds4/pds/v1}Discipline_Area" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Context_Area", propOrder = { "comment", "timeCoordinates", "primaryResultSummary", "investigationAreas", "observingSystems", "targetIdentifications", "missionArea", "disciplineArea" }) @XmlSeeAlso({ ObservationArea.class }) public class ContextArea { protected String comment; @XmlElement(name = "Time_Coordinates") protected TimeCoordinates timeCoordinates; @XmlElement(name = "Primary_Result_Summary") protected PrimaryResultSummary primaryResultSummary; @XmlElement(name = "Investigation_Area") protected List investigationAreas; @XmlElement(name = "Observing_System") protected List observingSystems; @XmlElement(name = "Target_Identification") protected List targetIdentifications; @XmlElement(name = "Mission_Area") protected MissionArea missionArea; @XmlElement(name = "Discipline_Area") protected DisciplineArea disciplineArea; /** * Gets the value of the comment property. * * @return * possible object is * {@link String } * */ public String getComment() { return comment; } /** * Sets the value of the comment property. * * @param value * allowed object is * {@link String } * */ public void setComment(String value) { this.comment = value; } /** * Gets the value of the timeCoordinates property. * * @return * possible object is * {@link TimeCoordinates } * */ public TimeCoordinates getTimeCoordinates() { return timeCoordinates; } /** * Sets the value of the timeCoordinates property. * * @param value * allowed object is * {@link TimeCoordinates } * */ public void setTimeCoordinates(TimeCoordinates value) { this.timeCoordinates = value; } /** * Gets the value of the primaryResultSummary property. * * @return * possible object is * {@link PrimaryResultSummary } * */ public PrimaryResultSummary getPrimaryResultSummary() { return primaryResultSummary; } /** * Sets the value of the primaryResultSummary property. * * @param value * allowed object is * {@link PrimaryResultSummary } * */ public void setPrimaryResultSummary(PrimaryResultSummary value) { this.primaryResultSummary = value; } /** * Gets the value of the investigationAreas property. * *

* 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 set method for the investigationAreas property. * *

* For example, to add a new item, do as follows: *

     *    getInvestigationAreas().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link InvestigationArea } * * */ public List getInvestigationAreas() { if (investigationAreas == null) { investigationAreas = new ArrayList(); } return this.investigationAreas; } /** * Gets the value of the observingSystems property. * *

* 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 set method for the observingSystems property. * *

* For example, to add a new item, do as follows: *

     *    getObservingSystems().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ObservingSystem } * * */ public List getObservingSystems() { if (observingSystems == null) { observingSystems = new ArrayList(); } return this.observingSystems; } /** * Gets the value of the targetIdentifications property. * *

* 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 set method for the targetIdentifications property. * *

* For example, to add a new item, do as follows: *

     *    getTargetIdentifications().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TargetIdentification } * * */ public List getTargetIdentifications() { if (targetIdentifications == null) { targetIdentifications = new ArrayList(); } return this.targetIdentifications; } /** * Gets the value of the missionArea property. * * @return * possible object is * {@link MissionArea } * */ public MissionArea getMissionArea() { return missionArea; } /** * Sets the value of the missionArea property. * * @param value * allowed object is * {@link MissionArea } * */ public void setMissionArea(MissionArea value) { this.missionArea = value; } /** * Gets the value of the disciplineArea property. * * @return * possible object is * {@link DisciplineArea } * */ public DisciplineArea getDisciplineArea() { return disciplineArea; } /** * Sets the value of the disciplineArea property. * * @param value * allowed object is * {@link DisciplineArea } * */ public void setDisciplineArea(DisciplineArea value) { this.disciplineArea = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy