Class XmlModificationDetection
- All Implemented Interfaces:
Serializable
public class XmlModificationDetection extends Object implements Serializable
Java class for ModificationDetection complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ModificationDetection">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="AnnotationOverlap" type="{http://dss.esig.europa.eu/validation/diagnostic}Modification" maxOccurs="unbounded" minOccurs="0"/>
<element name="VisualDifference" type="{http://dss.esig.europa.eu/validation/diagnostic}Modification" maxOccurs="unbounded" minOccurs="0"/>
<element name="PageDifference" type="{http://dss.esig.europa.eu/validation/diagnostic}Modification" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description protected List<XmlModification>annotationOverlapprotected List<XmlModification>pageDifferenceprotected List<XmlModification>visualDifference -
Constructor Summary
Constructors Constructor Description XmlModificationDetection() -
Method Summary
Modifier and Type Method Description List<XmlModification>getAnnotationOverlap()Gets the value of the annotationOverlap property.List<XmlModification>getPageDifference()Gets the value of the pageDifference property.List<XmlModification>getVisualDifference()Gets the value of the visualDifference property.
-
Field Details
-
annotationOverlap
-
visualDifference
-
pageDifference
-
-
Constructor Details
-
XmlModificationDetection
public XmlModificationDetection()
-
-
Method Details
-
getAnnotationOverlap
Gets the value of the annotationOverlap 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 annotationOverlap property.For example, to add a new item, do as follows:
getAnnotationOverlap().add(newItem);Objects of the following type(s) are allowed in the list
XmlModification -
getVisualDifference
Gets the value of the visualDifference 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 visualDifference property.For example, to add a new item, do as follows:
getVisualDifference().add(newItem);Objects of the following type(s) are allowed in the list
XmlModification -
getPageDifference
Gets the value of the pageDifference 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 pageDifference property.For example, to add a new item, do as follows:
getPageDifference().add(newItem);Objects of the following type(s) are allowed in the list
XmlModification
-