Package gov.nasa.arc.pds.xml.generated
Class FileAreaExternal
- java.lang.Object
- 
- gov.nasa.arc.pds.xml.generated.FileArea
- 
- gov.nasa.arc.pds.xml.generated.FileAreaExternal
 
 
- 
 public class FileAreaExternal extends FileArea The File Area External class describes a file and one or more tagged_data_objects contained within the file.Java class for File_Area_External complex type .The following schema fragment specifies the expected content contained within this class. <complexType name="File_Area_External"> <complexContent> <extension base="{http://pds.nasa.gov/pds4/pds/v1}File_Area"> <sequence> <element name="File" type="{http://pds.nasa.gov/pds4/pds/v1}File"/> <element name="Encoded_External" type="{http://pds.nasa.gov/pds4/pds/v1}Encoded_External" maxOccurs="unbounded"/> </sequence> </extension> </complexContent> </complexType>
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.util.List<EncodedExternal>encodedExternalsprotected Filefile
 - 
Constructor SummaryConstructors Constructor Description FileAreaExternal()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<EncodedExternal>getEncodedExternals()Gets the value of the encodedExternals property.FilegetFile()Gets the value of the file property.voidsetFile(File value)Sets the value of the file property.
 
- 
- 
- 
Field Detail- 
fileprotected File file 
 - 
encodedExternalsprotected java.util.List<EncodedExternal> encodedExternals 
 
- 
 - 
Method Detail- 
setFilepublic void setFile(File value) Sets the value of the file property.- Parameters:
- value- allowed object is- File
 
 - 
getEncodedExternalspublic java.util.List<EncodedExternal> getEncodedExternals() Gets the value of the encodedExternals 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 encodedExternals property.For example, to add a new item, do as follows: getEncodedExternals().add(newItem); Objects of the following type(s) are allowed in the list EncodedExternal- Returns:
- The value of the encodedExternals property.
 
 
- 
 
-