All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opendope.conditions.And Maven / Gradle / Ivy


package org.opendope.conditions;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElementRef;
import javax.xml.bind.annotation.XmlElementRefs;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

import org.docx4j.openpackaging.packages.WordprocessingMLPackage;
import org.docx4j.openpackaging.parts.CustomXmlPart;


/**
 * 

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>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "xpathrefOrAndOrOr" }) @XmlRootElement(name = "and") public class And implements Evaluable { @XmlElementRefs({ @XmlElementRef(name = "and", namespace = "http://opendope.org/conditions", type = And.class), @XmlElementRef(name = "xpathref", namespace = "http://opendope.org/conditions", type = Xpathref.class), @XmlElementRef(name = "not", namespace = "http://opendope.org/conditions", type = Not.class), @XmlElementRef(name = "or", namespace = "http://opendope.org/conditions", type = Or.class), @XmlElementRef(name = "conditionref", namespace = "http://opendope.org/conditions", type = Conditionref.class) }) protected List xpathrefOrAndOrOr; /** * 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 set method 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 * {@link And } * {@link Xpathref } * {@link Not } * {@link Or } * {@link Conditionref } * * */ public List getXpathrefOrAndOrOr() { if (xpathrefOrAndOrOr == null) { xpathrefOrAndOrOr = new ArrayList(); } return this.xpathrefOrAndOrOr; } public boolean evaluate(WordprocessingMLPackage pkg, Map customXmlDataStorageParts, Map conditionsMap, Map xpathsMap) { for (Evaluable particle : xpathrefOrAndOrOr) { boolean result = particle.evaluate(pkg, customXmlDataStorageParts, conditionsMap, xpathsMap); if (result==false) { return false; } } return true; } public void listXPaths( List theList, Map conditionsMap, Map xpathsMap) { for (Evaluable particle : xpathrefOrAndOrOr) { particle.listXPaths(theList, conditionsMap, xpathsMap); } } /** * Map the IDs used in this condition to new values; useful for merging ConditionParts. * * @param xpathIdMap * @param conditionIdMap * @since 3.0.0 */ public void mapIds(Map xpathIdMap, Map conditionIdMap) { for (Evaluable particle : xpathrefOrAndOrOr) { particle.mapIds(xpathIdMap, conditionIdMap); } } public String toString(Map conditionsMap, Map xpathsMap) { StringBuilder sb = new StringBuilder(); int i = 0; int total = xpathrefOrAndOrOr.size(); for (Evaluable particle : xpathrefOrAndOrOr) { sb.append(particle.toString(conditionsMap, xpathsMap)); i++; if (i conditionsMap, Map xpathsMap) { for (Evaluable particle : xpathrefOrAndOrOr) { particle.repeat(xpathBase, index, conditionsMap, xpathsMap); } return null; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy