Package gov.nasa.arc.pds.xml.generated
Class ModificationHistory
- java.lang.Object
-
- gov.nasa.arc.pds.xml.generated.ModificationHistory
-
public class ModificationHistory extends java.lang.Object
The Modification_History class tracks the history of changes made to the product once it enters the registry system.Java class for Modification_History complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="Modification_History"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Modification_Detail" type="{http://pds.nasa.gov/pds4/pds/v1}Modification_Detail" maxOccurs="unbounded"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<ModificationDetail>
modificationDetails
-
Constructor Summary
Constructors Constructor Description ModificationHistory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<ModificationDetail>
getModificationDetails()
Gets the value of the modificationDetails property.
-
-
-
Field Detail
-
modificationDetails
protected java.util.List<ModificationDetail> modificationDetails
-
-
Method Detail
-
getModificationDetails
public java.util.List<ModificationDetail> getModificationDetails()
Gets the value of the modificationDetails 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 modificationDetails property.For example, to add a new item, do as follows:
getModificationDetails().add(newItem);
Objects of the following type(s) are allowed in the list
ModificationDetail
- Returns:
- The value of the modificationDetails property.
-
-