gov.nasa.arc.pds.xml.generated.TargetIdentification Maven / Gradle / Ivy
Show all versions of pds4-jparser Show documentation
//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.9
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.09.27 at 05:20:24 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.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* The Target_Identification class provides
* detailed target identification information.
*
* Java class for Target_Identification complex type
.
*
* The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Target_Identification">
* <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="alternate_designation" type="{http://pds.nasa.gov/pds4/pds/v1}alternate_designation" maxOccurs="unbounded" minOccurs="0"/>
* <element name="type" type="{http://pds.nasa.gov/pds4/pds/v1}type" maxOccurs="unbounded"/>
* <element name="description" type="{http://pds.nasa.gov/pds4/pds/v1}description" minOccurs="0"/>
* <element ref="{http://pds.nasa.gov/pds4/pds/v1}Internal_Reference" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Target_Identification", propOrder = {
"name",
"alternateDesignations",
"types",
"description",
"internalReference"
})
public class TargetIdentification {
@XmlElement(required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "token")
protected String name;
@XmlElement(name = "alternate_designation")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "token")
protected List alternateDesignations;
@XmlElement(name = "type", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "token")
protected List types;
protected String description;
@XmlElement(name = "Internal_Reference")
protected InternalReference internalReference;
/**
* 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 alternateDesignations 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 alternateDesignations property.
*
*
* For example, to add a new item, do as follows:
*
*
* getAlternateDesignations().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*
* @return
* The value of the alternateDesignations property.
*/
public List getAlternateDesignations() {
if (alternateDesignations == null) {
alternateDesignations = new ArrayList();
}
return this.alternateDesignations;
}
/**
* Gets the value of the types 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 types property.
*
*
* For example, to add a new item, do as follows:
*
*
* getTypes().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*
* @return
* The value of the types property.
*/
public List getTypes() {
if (types == null) {
types = new ArrayList();
}
return this.types;
}
/**
* 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 internalReference property.
*
* @return
* possible object is
* {@link InternalReference }
*
*/
public InternalReference getInternalReference() {
return internalReference;
}
/**
* Sets the value of the internalReference property.
*
* @param value
* allowed object is
* {@link InternalReference }
*
*/
public void setInternalReference(InternalReference value) {
this.internalReference = value;
}
}