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

net.opengis.citygml.tunnel.v_2_0.AbstractOpeningType Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2016.02.26 at 04:41:00 PM AST 
//


package net.opengis.citygml.tunnel.v_2_0;

import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
import net.opengis.citygml.v_2_0.AbstractCityObjectType;
import net.opengis.citygml.v_2_0.ExternalReferenceType;
import net.opengis.citygml.v_2_0.GeneralizationRelationType;
import net.opengis.citygml.v_2_0.ImplicitRepresentationPropertyType;
import net.opengis.citygml.v_2_0.RelativeToTerrainType;
import net.opengis.citygml.v_2_0.RelativeToWaterType;
import net.opengis.gml.v_3_1_1.MultiSurfacePropertyType;
import org.jvnet.jaxb2_commons.lang.CopyStrategy2;
import org.jvnet.jaxb2_commons.lang.CopyTo2;
import org.jvnet.jaxb2_commons.lang.Equals2;
import org.jvnet.jaxb2_commons.lang.EqualsStrategy2;
import org.jvnet.jaxb2_commons.lang.HashCode2;
import org.jvnet.jaxb2_commons.lang.HashCodeStrategy2;
import org.jvnet.jaxb2_commons.lang.JAXBCopyStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBEqualsStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBHashCodeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBMergeStrategy;
import org.jvnet.jaxb2_commons.lang.JAXBToStringStrategy;
import org.jvnet.jaxb2_commons.lang.MergeFrom2;
import org.jvnet.jaxb2_commons.lang.MergeStrategy2;
import org.jvnet.jaxb2_commons.lang.ToString2;
import org.jvnet.jaxb2_commons.lang.ToStringStrategy2;
import org.jvnet.jaxb2_commons.locator.ObjectLocator;
import org.jvnet.jaxb2_commons.locator.util.LocatorUtils;


/**
 *  Type for openings (doors, windows) in boundary surfaces. Used in LOD3 and LOD4 only. As subclass of
 * 				_CityObject, an _Opening inherits all attributes and relations, in particular an id, names, external references, and
 * 				generalization relations. 
 * 
 * 

Java class for AbstractOpeningType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="AbstractOpeningType">
 *   <complexContent>
 *     <extension base="{http://www.opengis.net/citygml/2.0}AbstractCityObjectType">
 *       <sequence>
 *         <element name="lod3MultiSurface" type="{http://www.opengis.net/gml}MultiSurfacePropertyType" minOccurs="0"/>
 *         <element name="lod4MultiSurface" type="{http://www.opengis.net/gml}MultiSurfacePropertyType" minOccurs="0"/>
 *         <element name="lod3ImplicitRepresentation" type="{http://www.opengis.net/citygml/2.0}ImplicitRepresentationPropertyType" minOccurs="0"/>
 *         <element name="lod4ImplicitRepresentation" type="{http://www.opengis.net/citygml/2.0}ImplicitRepresentationPropertyType" minOccurs="0"/>
 *         <element ref="{http://www.opengis.net/citygml/tunnel/2.0}_GenericApplicationPropertyOfOpening" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "AbstractOpeningType", propOrder = { "lod3MultiSurface", "lod4MultiSurface", "lod3ImplicitRepresentation", "lod4ImplicitRepresentation", "genericApplicationPropertyOfOpening" }) @XmlSeeAlso({ WindowType.class, DoorType.class }) public abstract class AbstractOpeningType extends AbstractCityObjectType implements Cloneable, CopyTo2, Equals2, HashCode2, MergeFrom2, ToString2 { protected MultiSurfacePropertyType lod3MultiSurface; protected MultiSurfacePropertyType lod4MultiSurface; protected ImplicitRepresentationPropertyType lod3ImplicitRepresentation; protected ImplicitRepresentationPropertyType lod4ImplicitRepresentation; @XmlElement(name = "_GenericApplicationPropertyOfOpening") protected List genericApplicationPropertyOfOpening; /** * Gets the value of the lod3MultiSurface property. * * @return * possible object is * {@link MultiSurfacePropertyType } * */ public MultiSurfacePropertyType getLod3MultiSurface() { return lod3MultiSurface; } /** * Sets the value of the lod3MultiSurface property. * * @param value * allowed object is * {@link MultiSurfacePropertyType } * */ public void setLod3MultiSurface(MultiSurfacePropertyType value) { this.lod3MultiSurface = value; } public boolean isSetLod3MultiSurface() { return (this.lod3MultiSurface!= null); } /** * Gets the value of the lod4MultiSurface property. * * @return * possible object is * {@link MultiSurfacePropertyType } * */ public MultiSurfacePropertyType getLod4MultiSurface() { return lod4MultiSurface; } /** * Sets the value of the lod4MultiSurface property. * * @param value * allowed object is * {@link MultiSurfacePropertyType } * */ public void setLod4MultiSurface(MultiSurfacePropertyType value) { this.lod4MultiSurface = value; } public boolean isSetLod4MultiSurface() { return (this.lod4MultiSurface!= null); } /** * Gets the value of the lod3ImplicitRepresentation property. * * @return * possible object is * {@link ImplicitRepresentationPropertyType } * */ public ImplicitRepresentationPropertyType getLod3ImplicitRepresentation() { return lod3ImplicitRepresentation; } /** * Sets the value of the lod3ImplicitRepresentation property. * * @param value * allowed object is * {@link ImplicitRepresentationPropertyType } * */ public void setLod3ImplicitRepresentation(ImplicitRepresentationPropertyType value) { this.lod3ImplicitRepresentation = value; } public boolean isSetLod3ImplicitRepresentation() { return (this.lod3ImplicitRepresentation!= null); } /** * Gets the value of the lod4ImplicitRepresentation property. * * @return * possible object is * {@link ImplicitRepresentationPropertyType } * */ public ImplicitRepresentationPropertyType getLod4ImplicitRepresentation() { return lod4ImplicitRepresentation; } /** * Sets the value of the lod4ImplicitRepresentation property. * * @param value * allowed object is * {@link ImplicitRepresentationPropertyType } * */ public void setLod4ImplicitRepresentation(ImplicitRepresentationPropertyType value) { this.lod4ImplicitRepresentation = value; } public boolean isSetLod4ImplicitRepresentation() { return (this.lod4ImplicitRepresentation!= null); } /** * Gets the value of the genericApplicationPropertyOfOpening 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 genericApplicationPropertyOfOpening property. * *

* For example, to add a new item, do as follows: *

     *    getGenericApplicationPropertyOfOpening().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Object } * * */ public List getGenericApplicationPropertyOfOpening() { if (genericApplicationPropertyOfOpening == null) { genericApplicationPropertyOfOpening = new ArrayList(); } return this.genericApplicationPropertyOfOpening; } public boolean isSetGenericApplicationPropertyOfOpening() { return ((this.genericApplicationPropertyOfOpening!= null)&&(!this.genericApplicationPropertyOfOpening.isEmpty())); } public void unsetGenericApplicationPropertyOfOpening() { this.genericApplicationPropertyOfOpening = null; } public String toString() { final ToStringStrategy2 strategy = JAXBToStringStrategy.INSTANCE; final StringBuilder buffer = new StringBuilder(); append(null, buffer, strategy); return buffer.toString(); } public StringBuilder append(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) { strategy.appendStart(locator, this, buffer); appendFields(locator, buffer, strategy); strategy.appendEnd(locator, this, buffer); return buffer; } public StringBuilder appendFields(ObjectLocator locator, StringBuilder buffer, ToStringStrategy2 strategy) { super.appendFields(locator, buffer, strategy); { MultiSurfacePropertyType theLod3MultiSurface; theLod3MultiSurface = this.getLod3MultiSurface(); strategy.appendField(locator, this, "lod3MultiSurface", buffer, theLod3MultiSurface, this.isSetLod3MultiSurface()); } { MultiSurfacePropertyType theLod4MultiSurface; theLod4MultiSurface = this.getLod4MultiSurface(); strategy.appendField(locator, this, "lod4MultiSurface", buffer, theLod4MultiSurface, this.isSetLod4MultiSurface()); } { ImplicitRepresentationPropertyType theLod3ImplicitRepresentation; theLod3ImplicitRepresentation = this.getLod3ImplicitRepresentation(); strategy.appendField(locator, this, "lod3ImplicitRepresentation", buffer, theLod3ImplicitRepresentation, this.isSetLod3ImplicitRepresentation()); } { ImplicitRepresentationPropertyType theLod4ImplicitRepresentation; theLod4ImplicitRepresentation = this.getLod4ImplicitRepresentation(); strategy.appendField(locator, this, "lod4ImplicitRepresentation", buffer, theLod4ImplicitRepresentation, this.isSetLod4ImplicitRepresentation()); } { List theGenericApplicationPropertyOfOpening; theGenericApplicationPropertyOfOpening = (this.isSetGenericApplicationPropertyOfOpening()?this.getGenericApplicationPropertyOfOpening():null); strategy.appendField(locator, this, "genericApplicationPropertyOfOpening", buffer, theGenericApplicationPropertyOfOpening, this.isSetGenericApplicationPropertyOfOpening()); } return buffer; } public boolean equals(ObjectLocator thisLocator, ObjectLocator thatLocator, Object object, EqualsStrategy2 strategy) { if ((object == null)||(this.getClass()!= object.getClass())) { return false; } if (this == object) { return true; } if (!super.equals(thisLocator, thatLocator, object, strategy)) { return false; } final AbstractOpeningType that = ((AbstractOpeningType) object); { MultiSurfacePropertyType lhsLod3MultiSurface; lhsLod3MultiSurface = this.getLod3MultiSurface(); MultiSurfacePropertyType rhsLod3MultiSurface; rhsLod3MultiSurface = that.getLod3MultiSurface(); if (!strategy.equals(LocatorUtils.property(thisLocator, "lod3MultiSurface", lhsLod3MultiSurface), LocatorUtils.property(thatLocator, "lod3MultiSurface", rhsLod3MultiSurface), lhsLod3MultiSurface, rhsLod3MultiSurface, this.isSetLod3MultiSurface(), that.isSetLod3MultiSurface())) { return false; } } { MultiSurfacePropertyType lhsLod4MultiSurface; lhsLod4MultiSurface = this.getLod4MultiSurface(); MultiSurfacePropertyType rhsLod4MultiSurface; rhsLod4MultiSurface = that.getLod4MultiSurface(); if (!strategy.equals(LocatorUtils.property(thisLocator, "lod4MultiSurface", lhsLod4MultiSurface), LocatorUtils.property(thatLocator, "lod4MultiSurface", rhsLod4MultiSurface), lhsLod4MultiSurface, rhsLod4MultiSurface, this.isSetLod4MultiSurface(), that.isSetLod4MultiSurface())) { return false; } } { ImplicitRepresentationPropertyType lhsLod3ImplicitRepresentation; lhsLod3ImplicitRepresentation = this.getLod3ImplicitRepresentation(); ImplicitRepresentationPropertyType rhsLod3ImplicitRepresentation; rhsLod3ImplicitRepresentation = that.getLod3ImplicitRepresentation(); if (!strategy.equals(LocatorUtils.property(thisLocator, "lod3ImplicitRepresentation", lhsLod3ImplicitRepresentation), LocatorUtils.property(thatLocator, "lod3ImplicitRepresentation", rhsLod3ImplicitRepresentation), lhsLod3ImplicitRepresentation, rhsLod3ImplicitRepresentation, this.isSetLod3ImplicitRepresentation(), that.isSetLod3ImplicitRepresentation())) { return false; } } { ImplicitRepresentationPropertyType lhsLod4ImplicitRepresentation; lhsLod4ImplicitRepresentation = this.getLod4ImplicitRepresentation(); ImplicitRepresentationPropertyType rhsLod4ImplicitRepresentation; rhsLod4ImplicitRepresentation = that.getLod4ImplicitRepresentation(); if (!strategy.equals(LocatorUtils.property(thisLocator, "lod4ImplicitRepresentation", lhsLod4ImplicitRepresentation), LocatorUtils.property(thatLocator, "lod4ImplicitRepresentation", rhsLod4ImplicitRepresentation), lhsLod4ImplicitRepresentation, rhsLod4ImplicitRepresentation, this.isSetLod4ImplicitRepresentation(), that.isSetLod4ImplicitRepresentation())) { return false; } } { List lhsGenericApplicationPropertyOfOpening; lhsGenericApplicationPropertyOfOpening = (this.isSetGenericApplicationPropertyOfOpening()?this.getGenericApplicationPropertyOfOpening():null); List rhsGenericApplicationPropertyOfOpening; rhsGenericApplicationPropertyOfOpening = (that.isSetGenericApplicationPropertyOfOpening()?that.getGenericApplicationPropertyOfOpening():null); if (!strategy.equals(LocatorUtils.property(thisLocator, "genericApplicationPropertyOfOpening", lhsGenericApplicationPropertyOfOpening), LocatorUtils.property(thatLocator, "genericApplicationPropertyOfOpening", rhsGenericApplicationPropertyOfOpening), lhsGenericApplicationPropertyOfOpening, rhsGenericApplicationPropertyOfOpening, this.isSetGenericApplicationPropertyOfOpening(), that.isSetGenericApplicationPropertyOfOpening())) { return false; } } return true; } public boolean equals(Object object) { final EqualsStrategy2 strategy = JAXBEqualsStrategy.INSTANCE; return equals(null, null, object, strategy); } public int hashCode(ObjectLocator locator, HashCodeStrategy2 strategy) { int currentHashCode = super.hashCode(locator, strategy); { MultiSurfacePropertyType theLod3MultiSurface; theLod3MultiSurface = this.getLod3MultiSurface(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "lod3MultiSurface", theLod3MultiSurface), currentHashCode, theLod3MultiSurface, this.isSetLod3MultiSurface()); } { MultiSurfacePropertyType theLod4MultiSurface; theLod4MultiSurface = this.getLod4MultiSurface(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "lod4MultiSurface", theLod4MultiSurface), currentHashCode, theLod4MultiSurface, this.isSetLod4MultiSurface()); } { ImplicitRepresentationPropertyType theLod3ImplicitRepresentation; theLod3ImplicitRepresentation = this.getLod3ImplicitRepresentation(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "lod3ImplicitRepresentation", theLod3ImplicitRepresentation), currentHashCode, theLod3ImplicitRepresentation, this.isSetLod3ImplicitRepresentation()); } { ImplicitRepresentationPropertyType theLod4ImplicitRepresentation; theLod4ImplicitRepresentation = this.getLod4ImplicitRepresentation(); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "lod4ImplicitRepresentation", theLod4ImplicitRepresentation), currentHashCode, theLod4ImplicitRepresentation, this.isSetLod4ImplicitRepresentation()); } { List theGenericApplicationPropertyOfOpening; theGenericApplicationPropertyOfOpening = (this.isSetGenericApplicationPropertyOfOpening()?this.getGenericApplicationPropertyOfOpening():null); currentHashCode = strategy.hashCode(LocatorUtils.property(locator, "genericApplicationPropertyOfOpening", theGenericApplicationPropertyOfOpening), currentHashCode, theGenericApplicationPropertyOfOpening, this.isSetGenericApplicationPropertyOfOpening()); } return currentHashCode; } public int hashCode() { final HashCodeStrategy2 strategy = JAXBHashCodeStrategy.INSTANCE; return this.hashCode(null, strategy); } public Object clone() { return copyTo(createNewInstance()); } public Object copyTo(Object target) { final CopyStrategy2 strategy = JAXBCopyStrategy.INSTANCE; return copyTo(null, target, strategy); } public Object copyTo(ObjectLocator locator, Object target, CopyStrategy2 strategy) { if (null == target) { throw new IllegalArgumentException("Target argument must not be null for abstract copyable classes."); } super.copyTo(locator, target, strategy); if (target instanceof AbstractOpeningType) { final AbstractOpeningType copy = ((AbstractOpeningType) target); { Boolean lod3MultiSurfaceShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetLod3MultiSurface()); if (lod3MultiSurfaceShouldBeCopiedAndSet == Boolean.TRUE) { MultiSurfacePropertyType sourceLod3MultiSurface; sourceLod3MultiSurface = this.getLod3MultiSurface(); MultiSurfacePropertyType copyLod3MultiSurface = ((MultiSurfacePropertyType) strategy.copy(LocatorUtils.property(locator, "lod3MultiSurface", sourceLod3MultiSurface), sourceLod3MultiSurface, this.isSetLod3MultiSurface())); copy.setLod3MultiSurface(copyLod3MultiSurface); } else { if (lod3MultiSurfaceShouldBeCopiedAndSet == Boolean.FALSE) { copy.lod3MultiSurface = null; } } } { Boolean lod4MultiSurfaceShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetLod4MultiSurface()); if (lod4MultiSurfaceShouldBeCopiedAndSet == Boolean.TRUE) { MultiSurfacePropertyType sourceLod4MultiSurface; sourceLod4MultiSurface = this.getLod4MultiSurface(); MultiSurfacePropertyType copyLod4MultiSurface = ((MultiSurfacePropertyType) strategy.copy(LocatorUtils.property(locator, "lod4MultiSurface", sourceLod4MultiSurface), sourceLod4MultiSurface, this.isSetLod4MultiSurface())); copy.setLod4MultiSurface(copyLod4MultiSurface); } else { if (lod4MultiSurfaceShouldBeCopiedAndSet == Boolean.FALSE) { copy.lod4MultiSurface = null; } } } { Boolean lod3ImplicitRepresentationShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetLod3ImplicitRepresentation()); if (lod3ImplicitRepresentationShouldBeCopiedAndSet == Boolean.TRUE) { ImplicitRepresentationPropertyType sourceLod3ImplicitRepresentation; sourceLod3ImplicitRepresentation = this.getLod3ImplicitRepresentation(); ImplicitRepresentationPropertyType copyLod3ImplicitRepresentation = ((ImplicitRepresentationPropertyType) strategy.copy(LocatorUtils.property(locator, "lod3ImplicitRepresentation", sourceLod3ImplicitRepresentation), sourceLod3ImplicitRepresentation, this.isSetLod3ImplicitRepresentation())); copy.setLod3ImplicitRepresentation(copyLod3ImplicitRepresentation); } else { if (lod3ImplicitRepresentationShouldBeCopiedAndSet == Boolean.FALSE) { copy.lod3ImplicitRepresentation = null; } } } { Boolean lod4ImplicitRepresentationShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetLod4ImplicitRepresentation()); if (lod4ImplicitRepresentationShouldBeCopiedAndSet == Boolean.TRUE) { ImplicitRepresentationPropertyType sourceLod4ImplicitRepresentation; sourceLod4ImplicitRepresentation = this.getLod4ImplicitRepresentation(); ImplicitRepresentationPropertyType copyLod4ImplicitRepresentation = ((ImplicitRepresentationPropertyType) strategy.copy(LocatorUtils.property(locator, "lod4ImplicitRepresentation", sourceLod4ImplicitRepresentation), sourceLod4ImplicitRepresentation, this.isSetLod4ImplicitRepresentation())); copy.setLod4ImplicitRepresentation(copyLod4ImplicitRepresentation); } else { if (lod4ImplicitRepresentationShouldBeCopiedAndSet == Boolean.FALSE) { copy.lod4ImplicitRepresentation = null; } } } { Boolean genericApplicationPropertyOfOpeningShouldBeCopiedAndSet = strategy.shouldBeCopiedAndSet(locator, this.isSetGenericApplicationPropertyOfOpening()); if (genericApplicationPropertyOfOpeningShouldBeCopiedAndSet == Boolean.TRUE) { List sourceGenericApplicationPropertyOfOpening; sourceGenericApplicationPropertyOfOpening = (this.isSetGenericApplicationPropertyOfOpening()?this.getGenericApplicationPropertyOfOpening():null); @SuppressWarnings("unchecked") List copyGenericApplicationPropertyOfOpening = ((List ) strategy.copy(LocatorUtils.property(locator, "genericApplicationPropertyOfOpening", sourceGenericApplicationPropertyOfOpening), sourceGenericApplicationPropertyOfOpening, this.isSetGenericApplicationPropertyOfOpening())); copy.unsetGenericApplicationPropertyOfOpening(); if (copyGenericApplicationPropertyOfOpening!= null) { List uniqueGenericApplicationPropertyOfOpeningl = copy.getGenericApplicationPropertyOfOpening(); uniqueGenericApplicationPropertyOfOpeningl.addAll(copyGenericApplicationPropertyOfOpening); } } else { if (genericApplicationPropertyOfOpeningShouldBeCopiedAndSet == Boolean.FALSE) { copy.unsetGenericApplicationPropertyOfOpening(); } } } } return target; } public void mergeFrom(Object left, Object right) { final MergeStrategy2 strategy = JAXBMergeStrategy.INSTANCE; mergeFrom(null, null, left, right, strategy); } public void mergeFrom(ObjectLocator leftLocator, ObjectLocator rightLocator, Object left, Object right, MergeStrategy2 strategy) { super.mergeFrom(leftLocator, rightLocator, left, right, strategy); if (right instanceof AbstractOpeningType) { final AbstractOpeningType target = this; final AbstractOpeningType leftObject = ((AbstractOpeningType) left); final AbstractOpeningType rightObject = ((AbstractOpeningType) right); { Boolean lod3MultiSurfaceShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetLod3MultiSurface(), rightObject.isSetLod3MultiSurface()); if (lod3MultiSurfaceShouldBeMergedAndSet == Boolean.TRUE) { MultiSurfacePropertyType lhsLod3MultiSurface; lhsLod3MultiSurface = leftObject.getLod3MultiSurface(); MultiSurfacePropertyType rhsLod3MultiSurface; rhsLod3MultiSurface = rightObject.getLod3MultiSurface(); MultiSurfacePropertyType mergedLod3MultiSurface = ((MultiSurfacePropertyType) strategy.merge(LocatorUtils.property(leftLocator, "lod3MultiSurface", lhsLod3MultiSurface), LocatorUtils.property(rightLocator, "lod3MultiSurface", rhsLod3MultiSurface), lhsLod3MultiSurface, rhsLod3MultiSurface, leftObject.isSetLod3MultiSurface(), rightObject.isSetLod3MultiSurface())); target.setLod3MultiSurface(mergedLod3MultiSurface); } else { if (lod3MultiSurfaceShouldBeMergedAndSet == Boolean.FALSE) { target.lod3MultiSurface = null; } } } { Boolean lod4MultiSurfaceShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetLod4MultiSurface(), rightObject.isSetLod4MultiSurface()); if (lod4MultiSurfaceShouldBeMergedAndSet == Boolean.TRUE) { MultiSurfacePropertyType lhsLod4MultiSurface; lhsLod4MultiSurface = leftObject.getLod4MultiSurface(); MultiSurfacePropertyType rhsLod4MultiSurface; rhsLod4MultiSurface = rightObject.getLod4MultiSurface(); MultiSurfacePropertyType mergedLod4MultiSurface = ((MultiSurfacePropertyType) strategy.merge(LocatorUtils.property(leftLocator, "lod4MultiSurface", lhsLod4MultiSurface), LocatorUtils.property(rightLocator, "lod4MultiSurface", rhsLod4MultiSurface), lhsLod4MultiSurface, rhsLod4MultiSurface, leftObject.isSetLod4MultiSurface(), rightObject.isSetLod4MultiSurface())); target.setLod4MultiSurface(mergedLod4MultiSurface); } else { if (lod4MultiSurfaceShouldBeMergedAndSet == Boolean.FALSE) { target.lod4MultiSurface = null; } } } { Boolean lod3ImplicitRepresentationShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetLod3ImplicitRepresentation(), rightObject.isSetLod3ImplicitRepresentation()); if (lod3ImplicitRepresentationShouldBeMergedAndSet == Boolean.TRUE) { ImplicitRepresentationPropertyType lhsLod3ImplicitRepresentation; lhsLod3ImplicitRepresentation = leftObject.getLod3ImplicitRepresentation(); ImplicitRepresentationPropertyType rhsLod3ImplicitRepresentation; rhsLod3ImplicitRepresentation = rightObject.getLod3ImplicitRepresentation(); ImplicitRepresentationPropertyType mergedLod3ImplicitRepresentation = ((ImplicitRepresentationPropertyType) strategy.merge(LocatorUtils.property(leftLocator, "lod3ImplicitRepresentation", lhsLod3ImplicitRepresentation), LocatorUtils.property(rightLocator, "lod3ImplicitRepresentation", rhsLod3ImplicitRepresentation), lhsLod3ImplicitRepresentation, rhsLod3ImplicitRepresentation, leftObject.isSetLod3ImplicitRepresentation(), rightObject.isSetLod3ImplicitRepresentation())); target.setLod3ImplicitRepresentation(mergedLod3ImplicitRepresentation); } else { if (lod3ImplicitRepresentationShouldBeMergedAndSet == Boolean.FALSE) { target.lod3ImplicitRepresentation = null; } } } { Boolean lod4ImplicitRepresentationShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetLod4ImplicitRepresentation(), rightObject.isSetLod4ImplicitRepresentation()); if (lod4ImplicitRepresentationShouldBeMergedAndSet == Boolean.TRUE) { ImplicitRepresentationPropertyType lhsLod4ImplicitRepresentation; lhsLod4ImplicitRepresentation = leftObject.getLod4ImplicitRepresentation(); ImplicitRepresentationPropertyType rhsLod4ImplicitRepresentation; rhsLod4ImplicitRepresentation = rightObject.getLod4ImplicitRepresentation(); ImplicitRepresentationPropertyType mergedLod4ImplicitRepresentation = ((ImplicitRepresentationPropertyType) strategy.merge(LocatorUtils.property(leftLocator, "lod4ImplicitRepresentation", lhsLod4ImplicitRepresentation), LocatorUtils.property(rightLocator, "lod4ImplicitRepresentation", rhsLod4ImplicitRepresentation), lhsLod4ImplicitRepresentation, rhsLod4ImplicitRepresentation, leftObject.isSetLod4ImplicitRepresentation(), rightObject.isSetLod4ImplicitRepresentation())); target.setLod4ImplicitRepresentation(mergedLod4ImplicitRepresentation); } else { if (lod4ImplicitRepresentationShouldBeMergedAndSet == Boolean.FALSE) { target.lod4ImplicitRepresentation = null; } } } { Boolean genericApplicationPropertyOfOpeningShouldBeMergedAndSet = strategy.shouldBeMergedAndSet(leftLocator, rightLocator, leftObject.isSetGenericApplicationPropertyOfOpening(), rightObject.isSetGenericApplicationPropertyOfOpening()); if (genericApplicationPropertyOfOpeningShouldBeMergedAndSet == Boolean.TRUE) { List lhsGenericApplicationPropertyOfOpening; lhsGenericApplicationPropertyOfOpening = (leftObject.isSetGenericApplicationPropertyOfOpening()?leftObject.getGenericApplicationPropertyOfOpening():null); List rhsGenericApplicationPropertyOfOpening; rhsGenericApplicationPropertyOfOpening = (rightObject.isSetGenericApplicationPropertyOfOpening()?rightObject.getGenericApplicationPropertyOfOpening():null); List mergedGenericApplicationPropertyOfOpening = ((List ) strategy.merge(LocatorUtils.property(leftLocator, "genericApplicationPropertyOfOpening", lhsGenericApplicationPropertyOfOpening), LocatorUtils.property(rightLocator, "genericApplicationPropertyOfOpening", rhsGenericApplicationPropertyOfOpening), lhsGenericApplicationPropertyOfOpening, rhsGenericApplicationPropertyOfOpening, leftObject.isSetGenericApplicationPropertyOfOpening(), rightObject.isSetGenericApplicationPropertyOfOpening())); target.unsetGenericApplicationPropertyOfOpening(); if (mergedGenericApplicationPropertyOfOpening!= null) { List uniqueGenericApplicationPropertyOfOpeningl = target.getGenericApplicationPropertyOfOpening(); uniqueGenericApplicationPropertyOfOpeningl.addAll(mergedGenericApplicationPropertyOfOpening); } } else { if (genericApplicationPropertyOfOpeningShouldBeMergedAndSet == Boolean.FALSE) { target.unsetGenericApplicationPropertyOfOpening(); } } } } } public void setGenericApplicationPropertyOfOpening(List value) { this.genericApplicationPropertyOfOpening = null; if (value!= null) { List draftl = this.getGenericApplicationPropertyOfOpening(); draftl.addAll(value); } } public AbstractOpeningType withLod3MultiSurface(MultiSurfacePropertyType value) { setLod3MultiSurface(value); return this; } public AbstractOpeningType withLod4MultiSurface(MultiSurfacePropertyType value) { setLod4MultiSurface(value); return this; } public AbstractOpeningType withLod3ImplicitRepresentation(ImplicitRepresentationPropertyType value) { setLod3ImplicitRepresentation(value); return this; } public AbstractOpeningType withLod4ImplicitRepresentation(ImplicitRepresentationPropertyType value) { setLod4ImplicitRepresentation(value); return this; } public AbstractOpeningType withGenericApplicationPropertyOfOpening(Object... values) { if (values!= null) { for (Object value: values) { getGenericApplicationPropertyOfOpening().add(value); } } return this; } public AbstractOpeningType withGenericApplicationPropertyOfOpening(Collection values) { if (values!= null) { getGenericApplicationPropertyOfOpening().addAll(values); } return this; } public AbstractOpeningType withGenericApplicationPropertyOfOpening(List value) { setGenericApplicationPropertyOfOpening(value); return this; } @Override public AbstractOpeningType withCreationDate(XMLGregorianCalendar value) { setCreationDate(value); return this; } @Override public AbstractOpeningType withTerminationDate(XMLGregorianCalendar value) { setTerminationDate(value); return this; } @Override public AbstractOpeningType withExternalReference(ExternalReferenceType... values) { if (values!= null) { for (ExternalReferenceType value: values) { getExternalReference().add(value); } } return this; } @Override public AbstractOpeningType withExternalReference(Collection values) { if (values!= null) { getExternalReference().addAll(values); } return this; } @Override public AbstractOpeningType withGeneralizesTo(GeneralizationRelationType... values) { if (values!= null) { for (GeneralizationRelationType value: values) { getGeneralizesTo().add(value); } } return this; } @Override public AbstractOpeningType withGeneralizesTo(Collection values) { if (values!= null) { getGeneralizesTo().addAll(values); } return this; } @Override public AbstractOpeningType withRelativeToTerrain(RelativeToTerrainType value) { setRelativeToTerrain(value); return this; } @Override public AbstractOpeningType withRelativeToWater(RelativeToWaterType value) { setRelativeToWater(value); return this; } @Override public AbstractOpeningType withGenericApplicationPropertyOfCityObject(JAXBElement ... values) { if (values!= null) { for (JAXBElement value: values) { getGenericApplicationPropertyOfCityObject().add(value); } } return this; } @Override public AbstractOpeningType withGenericApplicationPropertyOfCityObject(Collection> values) { if (values!= null) { getGenericApplicationPropertyOfCityObject().addAll(values); } return this; } @Override public AbstractOpeningType withExternalReference(List value) { setExternalReference(value); return this; } @Override public AbstractOpeningType withGeneralizesTo(List value) { setGeneralizesTo(value); return this; } @Override public AbstractOpeningType withGenericApplicationPropertyOfCityObject(List> value) { setGenericApplicationPropertyOfCityObject(value); return this; } }