gov.nasa.arc.pds.xml.generated.CompositeStructure Maven / Gradle / Ivy
Show all versions of pds4-jparser Show documentation
//
// 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.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 Composite Structure class provides a general
* framework for defining a structure that consists of two or more
* simpler structures
*
* Java class for Composite_Structure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Composite_Structure">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="title" type="{http://pds.nasa.gov/pds4/pds/v1}title" minOccurs="0"/>
* <element name="local_identifier" type="{http://pds.nasa.gov/pds4/pds/v1}local_identifier" minOccurs="0"/>
* <element name="type_description" type="{http://pds.nasa.gov/pds4/pds/v1}type_description" minOccurs="0"/>
* <element name="description" type="{http://pds.nasa.gov/pds4/pds/v1}description" minOccurs="0"/>
* <element name="Local_ID_Reference" type="{http://pds.nasa.gov/pds4/pds/v1}Local_ID_Reference" maxOccurs="unbounded"/>
* <element name="Local_ID_Relation" type="{http://pds.nasa.gov/pds4/pds/v1}Local_ID_Relation" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Composite_Structure", propOrder = {
"title",
"localIdentifier",
"typeDescription",
"description",
"localIDReferences",
"localIDRelations"
})
public class CompositeStructure {
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "token")
protected String title;
@XmlElement(name = "local_identifier")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlID
@XmlSchemaType(name = "ID")
protected String localIdentifier;
@XmlElement(name = "type_description")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "token")
protected String typeDescription;
protected String description;
@XmlElement(name = "Local_ID_Reference", required = true)
protected List localIDReferences;
@XmlElement(name = "Local_ID_Relation", required = true)
protected List localIDRelations;
/**
* Gets the value of the title property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTitle() {
return title;
}
/**
* Sets the value of the title property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTitle(String value) {
this.title = 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 typeDescription property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTypeDescription() {
return typeDescription;
}
/**
* Sets the value of the typeDescription property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTypeDescription(String value) {
this.typeDescription = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the localIDReferences 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 localIDReferences property.
*
*
* For example, to add a new item, do as follows:
*
* getLocalIDReferences().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link LocalIDReference }
*
*
*/
public List getLocalIDReferences() {
if (localIDReferences == null) {
localIDReferences = new ArrayList();
}
return this.localIDReferences;
}
/**
* Gets the value of the localIDRelations 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 localIDRelations property.
*
*
* For example, to add a new item, do as follows:
*
* getLocalIDRelations().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link LocalIDRelation }
*
*
*/
public List getLocalIDRelations() {
if (localIDRelations == null) {
localIDRelations = new ArrayList();
}
return this.localIDRelations;
}
}