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

gov.nasa.arc.pds.xml.generated.DDClass 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.XmlElements;
import javax.xml.bind.annotation.XmlID;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * The DD_Class class defines a class for a data
 *         dictionary.
 * 
 * 

Java class for DD_Class complex type. * *

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

 * <complexType name="DD_Class">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="name" type="{http://pds.nasa.gov/pds4/pds/v1}name"/>
 *         <element name="version_id" type="{http://pds.nasa.gov/pds4/pds/v1}version_id"/>
 *         <element name="local_identifier" type="{http://pds.nasa.gov/pds4/pds/v1}local_identifier"/>
 *         <element name="submitter_name" type="{http://pds.nasa.gov/pds4/pds/v1}submitter_name"/>
 *         <element name="definition" type="{http://pds.nasa.gov/pds4/pds/v1}definition"/>
 *         <element name="abstract_flag" type="{http://pds.nasa.gov/pds4/pds/v1}abstract_flag" minOccurs="0"/>
 *         <element name="element_flag" type="{http://pds.nasa.gov/pds4/pds/v1}element_flag" minOccurs="0"/>
 *         <element ref="{http://pds.nasa.gov/pds4/pds/v1}Internal_Reference" maxOccurs="unbounded" minOccurs="0"/>
 *         <choice maxOccurs="unbounded">
 *           <element name="DD_Associate_External_Class" type="{http://pds.nasa.gov/pds4/pds/v1}DD_Associate_External_Class"/>
 *           <element name="DD_Association" type="{http://pds.nasa.gov/pds4/pds/v1}DD_Association"/>
 *           <element name="DD_Association_External" type="{http://pds.nasa.gov/pds4/pds/v1}DD_Association_External"/>
 *         </choice>
 *         <element name="Terminological_Entry" type="{http://pds.nasa.gov/pds4/pds/v1}Terminological_Entry" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "DD_Class", propOrder = { "name", "versionId", "localIdentifier", "submitterName", "definition", "abstractFlag", "elementFlag", "internalReferences", "ddAssociateExternalClassesAndDDAssociationsAndDDAssociationExternals", "terminologicalEntries" }) public class DDClass { @XmlElement(required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String name; @XmlElement(name = "version_id", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String versionId; @XmlElement(name = "local_identifier", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlID @XmlSchemaType(name = "ID") protected String localIdentifier; @XmlElement(name = "submitter_name", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String submitterName; @XmlElement(required = true) protected String definition; @XmlElement(name = "abstract_flag") protected Boolean abstractFlag; @XmlElement(name = "element_flag") protected Boolean elementFlag; @XmlElement(name = "Internal_Reference") protected List internalReferences; @XmlElements({ @XmlElement(name = "DD_Associate_External_Class", type = DDAssociateExternalClass.class), @XmlElement(name = "DD_Association", type = DDAssociation.class), @XmlElement(name = "DD_Association_External", type = DDAssociationExternal.class) }) protected List ddAssociateExternalClassesAndDDAssociationsAndDDAssociationExternals; @XmlElement(name = "Terminological_Entry") protected List terminologicalEntries; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the versionId property. * * @return * possible object is * {@link String } * */ public String getVersionId() { return versionId; } /** * Sets the value of the versionId property. * * @param value * allowed object is * {@link String } * */ public void setVersionId(String value) { this.versionId = value; } /** * Gets the value of the localIdentifier property. * * @return * possible object is * {@link String } * */ public String getLocalIdentifier() { return localIdentifier; } /** * Sets the value of the localIdentifier property. * * @param value * allowed object is * {@link String } * */ public void setLocalIdentifier(String value) { this.localIdentifier = value; } /** * Gets the value of the submitterName property. * * @return * possible object is * {@link String } * */ public String getSubmitterName() { return submitterName; } /** * Sets the value of the submitterName property. * * @param value * allowed object is * {@link String } * */ public void setSubmitterName(String value) { this.submitterName = value; } /** * Gets the value of the definition property. * * @return * possible object is * {@link String } * */ public String getDefinition() { return definition; } /** * Sets the value of the definition property. * * @param value * allowed object is * {@link String } * */ public void setDefinition(String value) { this.definition = value; } /** * Gets the value of the abstractFlag property. * * @return * possible object is * {@link Boolean } * */ public Boolean isAbstractFlag() { return abstractFlag; } /** * Sets the value of the abstractFlag property. * * @param value * allowed object is * {@link Boolean } * */ public void setAbstractFlag(Boolean value) { this.abstractFlag = value; } /** * Gets the value of the elementFlag property. * * @return * possible object is * {@link Boolean } * */ public Boolean isElementFlag() { return elementFlag; } /** * Sets the value of the elementFlag property. * * @param value * allowed object is * {@link Boolean } * */ public void setElementFlag(Boolean value) { this.elementFlag = value; } /** * Gets the value of the internalReferences 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 internalReferences property. * *

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

     *    getInternalReferences().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link InternalReference } * * */ public List getInternalReferences() { if (internalReferences == null) { internalReferences = new ArrayList(); } return this.internalReferences; } /** * Gets the value of the ddAssociateExternalClassesAndDDAssociationsAndDDAssociationExternals 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 ddAssociateExternalClassesAndDDAssociationsAndDDAssociationExternals property. * *

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

     *    getDDAssociateExternalClassesAndDDAssociationsAndDDAssociationExternals().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link DDAssociateExternalClass } * {@link DDAssociation } * {@link DDAssociationExternal } * * */ public List getDDAssociateExternalClassesAndDDAssociationsAndDDAssociationExternals() { if (ddAssociateExternalClassesAndDDAssociationsAndDDAssociationExternals == null) { ddAssociateExternalClassesAndDDAssociationsAndDDAssociationExternals = new ArrayList(); } return this.ddAssociateExternalClassesAndDDAssociationsAndDDAssociationExternals; } /** * Gets the value of the terminologicalEntries 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 terminologicalEntries property. * *

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

     *    getTerminologicalEntries().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TerminologicalEntry } * * */ public List getTerminologicalEntries() { if (terminologicalEntries == null) { terminologicalEntries = new ArrayList(); } return this.terminologicalEntries; } }