Package gov.nasa.arc.pds.xml.generated
Class FileAreaBinary
- java.lang.Object
-
- gov.nasa.arc.pds.xml.generated.FileArea
-
- gov.nasa.arc.pds.xml.generated.FileAreaBinary
-
public class FileAreaBinary extends FileArea
The File Area Binary class describes a file that contains an encoded byte stream.Java class for File_Area_Binary complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="File_Area_Binary"> <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_Binary" type="{http://pds.nasa.gov/pds4/pds/v1}Encoded_Binary" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<EncodedBinary>
encodedBinaries
protected File
file
-
Constructor Summary
Constructors Constructor Description FileAreaBinary()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<EncodedBinary>
getEncodedBinaries()
Gets the value of the encodedBinaries 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
-
encodedBinaries
protected java.util.List<EncodedBinary> encodedBinaries
-
-
Method Detail
-
setFile
public void setFile(File value)
Sets the value of the file property.- Parameters:
value
- allowed object isFile
-
getEncodedBinaries
public java.util.List<EncodedBinary> getEncodedBinaries()
Gets the value of the encodedBinaries 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 encodedBinaries property.For example, to add a new item, do as follows:
getEncodedBinaries().add(newItem);
Objects of the following type(s) are allowed in the list
EncodedBinary
- Returns:
- The value of the encodedBinaries property.
-
-