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 Summary
Fields Modifier and Type Field Description protected java.util.List<EncodedExternal>
encodedExternals
protected File
file
-
Constructor Summary
Constructors Constructor Description FileAreaExternal()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<EncodedExternal>
getEncodedExternals()
Gets the value of the encodedExternals property.File
getFile()
Gets the value of the file property.void
setFile(File value)
Sets the value of the file property.
-
-
-
Field Detail
-
file
protected File file
-
encodedExternals
protected java.util.List<EncodedExternal> encodedExternals
-
-
Method Detail
-
setFile
public void setFile(File value)
Sets the value of the file property.- Parameters:
value
- allowed object isFile
-
getEncodedExternals
public 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
set
method 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.
-
-