Class CompositeStructure
- java.lang.Object
- 
- gov.nasa.arc.pds.xml.generated.CompositeStructure
 
- 
 public class CompositeStructure extends java.lang.ObjectThe Composite Structure class provides a general framework for defining a structure that consists of two or more simpler structuresJava 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>
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.lang.Stringdescriptionprotected java.lang.StringlocalIdentifierprotected java.util.List<LocalIDReference>localIDReferencesprotected java.util.List<LocalIDRelation>localIDRelationsprotected java.lang.Stringtitleprotected java.lang.StringtypeDescription
 - 
Constructor SummaryConstructors Constructor Description CompositeStructure()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()Gets the value of the description property.java.lang.StringgetLocalIdentifier()Gets the value of the localIdentifier property.java.util.List<LocalIDReference>getLocalIDReferences()Gets the value of the localIDReferences property.java.util.List<LocalIDRelation>getLocalIDRelations()Gets the value of the localIDRelations property.java.lang.StringgetTitle()Gets the value of the title property.java.lang.StringgetTypeDescription()Gets the value of the typeDescription property.voidsetDescription(java.lang.String value)Sets the value of the description property.voidsetLocalIdentifier(java.lang.String value)Sets the value of the localIdentifier property.voidsetTitle(java.lang.String value)Sets the value of the title property.voidsetTypeDescription(java.lang.String value)Sets the value of the typeDescription property.
 
- 
- 
- 
Field Detail- 
titleprotected java.lang.String title 
 - 
localIdentifierprotected java.lang.String localIdentifier 
 - 
typeDescriptionprotected java.lang.String typeDescription 
 - 
descriptionprotected java.lang.String description 
 - 
localIDReferencesprotected java.util.List<LocalIDReference> localIDReferences 
 - 
localIDRelationsprotected java.util.List<LocalIDRelation> localIDRelations 
 
- 
 - 
Method Detail- 
getTitlepublic java.lang.String getTitle() Gets the value of the title property.- Returns:
- possible object is
     String
 
 - 
setTitlepublic void setTitle(java.lang.String value) Sets the value of the title property.- Parameters:
- value- allowed object is- String
 
 - 
getLocalIdentifierpublic java.lang.String getLocalIdentifier() Gets the value of the localIdentifier property.- Returns:
- possible object is
     String
 
 - 
setLocalIdentifierpublic void setLocalIdentifier(java.lang.String value) Sets the value of the localIdentifier property.- Parameters:
- value- allowed object is- String
 
 - 
getTypeDescriptionpublic java.lang.String getTypeDescription() Gets the value of the typeDescription property.- Returns:
- possible object is
     String
 
 - 
setTypeDescriptionpublic void setTypeDescription(java.lang.String value) Sets the value of the typeDescription property.- Parameters:
- value- allowed object is- String
 
 - 
getDescriptionpublic java.lang.String getDescription() Gets the value of the description property.- Returns:
- possible object is
     String
 
 - 
setDescriptionpublic void setDescription(java.lang.String value) Sets the value of the description property.- Parameters:
- value- allowed object is- String
 
 - 
getLocalIDReferencespublic java.util.List<LocalIDReference> getLocalIDReferences() 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 setmethod 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 LocalIDReference- Returns:
- The value of the localIDReferences property.
 
 - 
getLocalIDRelationspublic java.util.List<LocalIDRelation> getLocalIDRelations() 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 setmethod 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 LocalIDRelation- Returns:
- The value of the localIDRelations property.
 
 
- 
 
-