Package gov.nasa.arc.pds.xml.generated
Class ProductExternal
- java.lang.Object
-
- gov.nasa.arc.pds.xml.generated.Product
-
- gov.nasa.arc.pds.xml.generated.ProductExternal
-
public class ProductExternal extends Product
The Product External class defines a product that does not reside within the PDS archives.Java class for Product_External complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="Product_External"> <complexContent> <extension base="{http://pds.nasa.gov/pds4/pds/v1}Product"> <sequence> <element name="Context_Area" type="{http://pds.nasa.gov/pds4/pds/v1}Context_Area" minOccurs="0"/> <element name="Reference_List" type="{http://pds.nasa.gov/pds4/pds/v1}Reference_List" minOccurs="0"/> <element name="File_Area_External" type="{http://pds.nasa.gov/pds4/pds/v1}File_Area_External" maxOccurs="unbounded"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected ContextArea
contextArea
protected java.util.List<FileAreaExternal>
fileAreaExternals
protected ReferenceList
referenceList
-
Fields inherited from class gov.nasa.arc.pds.xml.generated.Product
identificationArea
-
-
Constructor Summary
Constructors Constructor Description ProductExternal()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ContextArea
getContextArea()
Gets the value of the contextArea property.java.util.List<FileAreaExternal>
getFileAreaExternals()
Gets the value of the fileAreaExternals property.ReferenceList
getReferenceList()
Gets the value of the referenceList property.void
setContextArea(ContextArea value)
Sets the value of the contextArea property.void
setReferenceList(ReferenceList value)
Sets the value of the referenceList property.-
Methods inherited from class gov.nasa.arc.pds.xml.generated.Product
getIdentificationArea, setIdentificationArea
-
-
-
-
Field Detail
-
contextArea
protected ContextArea contextArea
-
referenceList
protected ReferenceList referenceList
-
fileAreaExternals
protected java.util.List<FileAreaExternal> fileAreaExternals
-
-
Method Detail
-
getContextArea
public ContextArea getContextArea()
Gets the value of the contextArea property.- Returns:
- possible object is
ContextArea
-
setContextArea
public void setContextArea(ContextArea value)
Sets the value of the contextArea property.- Parameters:
value
- allowed object isContextArea
-
getReferenceList
public ReferenceList getReferenceList()
Gets the value of the referenceList property.- Returns:
- possible object is
ReferenceList
-
setReferenceList
public void setReferenceList(ReferenceList value)
Sets the value of the referenceList property.- Parameters:
value
- allowed object isReferenceList
-
getFileAreaExternals
public java.util.List<FileAreaExternal> getFileAreaExternals()
Gets the value of the fileAreaExternals 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 fileAreaExternals property.For example, to add a new item, do as follows:
getFileAreaExternals().add(newItem);
Objects of the following type(s) are allowed in the list
FileAreaExternal
- Returns:
- The value of the fileAreaExternals property.
-
-