Package org.opendope.conditions
Class Or
java.lang.Object
org.opendope.conditions.Or
- All Implemented Interfaces:
Evaluable
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType>
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<choice maxOccurs="unbounded">
<element ref="{http://opendope.org/conditions}xpathref" minOccurs="0"/>
<element ref="{http://opendope.org/conditions}and" minOccurs="0"/>
<element ref="{http://opendope.org/conditions}or" minOccurs="0"/>
<element ref="{http://opendope.org/conditions}not" minOccurs="0"/>
<element ref="{http://opendope.org/conditions}conditionref" minOccurs="0"/>
<element ref="{http://opendope.org/conditions}true" minOccurs="0"/>
<element ref="{http://opendope.org/conditions}false" minOccurs="0"/>
</choice>
</sequence>
</restriction>
</complexContent>
</complexType>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanevaluate(WordprocessingMLPackage pkg, Map<String, CustomXmlPart> customXmlDataStorageParts, Map<String, Condition> conditionsMap, Map<String, Xpaths.Xpath> xpathsMap) Gets the value of the xpathrefOrAndOrOr property.voidlistXPaths(List<Xpaths.Xpath> theList, Map<String, Condition> conditionsMap, Map<String, Xpaths.Xpath> xpathsMap) List the XPaths used in this condition.voidMap the IDs used in this condition to new values; useful for merging ConditionParts.repeat(String xpathBase, int index, Map<String, Condition> conditionsMap, Map<String, Xpaths.Xpath> xpathsMap) Create a condition for this instance of a repeat.Build the XPath expression
-
Field Details
-
xpathrefOrAndOrOr
-
-
Constructor Details
-
Or
public Or()
-
-
Method Details
-
getXpathrefOrAndOrOr
Gets the value of the xpathrefOrAndOrOr 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 xpathrefOrAndOrOr property.For example, to add a new item, do as follows:
getXpathrefOrAndOrOr().add(newItem);Objects of the following type(s) are allowed in the list
AndXpathrefJAXBElement<Object>NotOrJAXBElement<Object>Conditionref -
evaluate
public boolean evaluate(WordprocessingMLPackage pkg, Map<String, CustomXmlPart> customXmlDataStorageParts, Map<String, Condition> conditionsMap, Map<String, Xpaths.Xpath> xpathsMap) -
listXPaths
public void listXPaths(List<Xpaths.Xpath> theList, Map<String, Condition> conditionsMap, Map<String, Xpaths.Xpath> xpathsMap) Description copied from interface:EvaluableList the XPaths used in this condition.- Specified by:
listXPathsin interfaceEvaluable
-
mapIds
Map the IDs used in this condition to new values; useful for merging ConditionParts. -
toString
Description copied from interface:EvaluableBuild the XPath expression -
repeat
public Condition repeat(String xpathBase, int index, Map<String, Condition> conditionsMap, Map<String, Xpaths.Xpath> xpathsMap) Description copied from interface:EvaluableCreate a condition for this instance of a repeat.
-