Package gov.nasa.arc.pds.xml.generated
Class DocumentEdition
- java.lang.Object
- 
- gov.nasa.arc.pds.xml.generated.DocumentEdition
 
- 
 public class DocumentEdition extends java.lang.ObjectA Document Edition is one complete version of the document in a set of files that is distinguished by language, a unique assemblage of file formats, or some other criteria.Java class for Document_Edition complex type .The following schema fragment specifies the expected content contained within this class. <complexType name="Document_Edition"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="edition_name" type="{http://pds.nasa.gov/pds4/pds/v1}edition_name"/> <element name="starting_point_identifier" type="{http://pds.nasa.gov/pds4/pds/v1}starting_point_identifier" minOccurs="0"/> <element name="language" type="{http://pds.nasa.gov/pds4/pds/v1}language"/> <element name="files" type="{http://pds.nasa.gov/pds4/pds/v1}files"/> <element name="description" type="{http://pds.nasa.gov/pds4/pds/v1}description" minOccurs="0"/> <element name="Document_File" type="{http://pds.nasa.gov/pds4/pds/v1}Document_File" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType>
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.lang.Stringdescriptionprotected java.util.List<DocumentFile>documentFilesprotected java.lang.StringeditionNameprotected java.math.BigIntegerfilesprotected java.lang.Stringlanguageprotected java.lang.StringstartingPointIdentifier
 - 
Constructor SummaryConstructors Constructor Description DocumentEdition()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()Gets the value of the description property.java.util.List<DocumentFile>getDocumentFiles()Gets the value of the documentFiles property.java.lang.StringgetEditionName()Gets the value of the editionName property.java.math.BigIntegergetFiles()Gets the value of the files property.java.lang.StringgetLanguage()Gets the value of the language property.java.lang.StringgetStartingPointIdentifier()Gets the value of the startingPointIdentifier property.voidsetDescription(java.lang.String value)Sets the value of the description property.voidsetEditionName(java.lang.String value)Sets the value of the editionName property.voidsetFiles(java.math.BigInteger value)Sets the value of the files property.voidsetLanguage(java.lang.String value)Sets the value of the language property.voidsetStartingPointIdentifier(java.lang.String value)Sets the value of the startingPointIdentifier property.
 
- 
- 
- 
Field Detail- 
editionNameprotected java.lang.String editionName 
 - 
startingPointIdentifierprotected java.lang.String startingPointIdentifier 
 - 
languageprotected java.lang.String language 
 - 
filesprotected java.math.BigInteger files 
 - 
descriptionprotected java.lang.String description 
 - 
documentFilesprotected java.util.List<DocumentFile> documentFiles 
 
- 
 - 
Method Detail- 
getEditionNamepublic java.lang.String getEditionName() Gets the value of the editionName property.- Returns:
- possible object is
     String
 
 - 
setEditionNamepublic void setEditionName(java.lang.String value) Sets the value of the editionName property.- Parameters:
- value- allowed object is- String
 
 - 
getStartingPointIdentifierpublic java.lang.String getStartingPointIdentifier() Gets the value of the startingPointIdentifier property.- Returns:
- possible object is
     String
 
 - 
setStartingPointIdentifierpublic void setStartingPointIdentifier(java.lang.String value) Sets the value of the startingPointIdentifier property.- Parameters:
- value- allowed object is- String
 
 - 
getLanguagepublic java.lang.String getLanguage() Gets the value of the language property.- Returns:
- possible object is
     String
 
 - 
setLanguagepublic void setLanguage(java.lang.String value) Sets the value of the language property.- Parameters:
- value- allowed object is- String
 
 - 
getFilespublic java.math.BigInteger getFiles() Gets the value of the files property.- Returns:
- possible object is
     BigInteger
 
 - 
setFilespublic void setFiles(java.math.BigInteger value) Sets the value of the files property.- Parameters:
- value- allowed object is- BigInteger
 
 - 
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
 
 - 
getDocumentFilespublic java.util.List<DocumentFile> getDocumentFiles() Gets the value of the documentFiles 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 documentFiles property.For example, to add a new item, do as follows: getDocumentFiles().add(newItem); Objects of the following type(s) are allowed in the list DocumentFile- Returns:
- The value of the documentFiles property.
 
 
- 
 
-