/* * citygml4j - The Open Source Java API for CityGML * https://github.com/citygml4j * * Copyright 2013-2017 Claus Nagel <claus.nagel@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.citygml4j.model.citygml.bridge; import java.util.List; import org.citygml4j.builder.copy.CopyBuilder; import org.citygml4j.model.citygml.CityGMLClass; import org.citygml4j.model.citygml.ade.ADEComponent; import org.citygml4j.model.citygml.core.AbstractCityObject; import org.citygml4j.model.citygml.core.LodRepresentation; import org.citygml4j.model.citygml.core.StandardObjectClassifier; import org.citygml4j.model.common.child.ChildList; import org.citygml4j.model.common.visitor.FeatureFunctor; import org.citygml4j.model.common.visitor.FeatureVisitor; import org.citygml4j.model.common.visitor.GMLFunctor; import org.citygml4j.model.common.visitor.GMLVisitor; import org.citygml4j.model.gml.basicTypes.Code; import org.citygml4j.model.gml.feature.BoundingShape; import org.citygml4j.model.gml.geometry.aggregates.MultiSurfaceProperty; import org.citygml4j.model.gml.geometry.primitives.SolidProperty; import org.citygml4j.model.module.citygml.BridgeModule; public class BridgeRoom extends AbstractCityObject implements BridgeModuleComponent, StandardObjectClassifier { private Code clazz; private List<Code> function; private List<Code> usage; private List<BoundarySurfaceProperty> boundedBySurface; private List<InteriorFurnitureProperty> interiorFurniture; private List<IntBridgeInstallationProperty> bridgeRoomInstallation; private SolidProperty lod4Solid; private MultiSurfaceProperty lod4MultiSurface; private List<ADEComponent> ade; private BridgeModule module; public BridgeRoom() { } public BridgeRoom(BridgeModule module) { this.module = module; } public void addBoundedBySurface(BoundarySurfaceProperty boundedBySurface) { if (this.boundedBySurface == null) this.boundedBySurface = new ChildList<BoundarySurfaceProperty>(this); this.boundedBySurface.add(boundedBySurface); } public void addFunction(Code function) { if (this.function == null) this.function = new ChildList<Code>(this); this.function.add(function); } public void addUsage(Code function) { if (this.usage == null) this.usage = new ChildList<Code>(this); this.usage.add(function); } public void addGenericApplicationPropertyOfBridgeRoom(ADEComponent ade) { if (this.ade == null) this.ade = new ChildList<ADEComponent>(this); this.ade.add(ade); } public void addInteriorFurniture(InteriorFurnitureProperty interiorFurniture) { if (this.interiorFurniture == null) this.interiorFurniture = new ChildList<InteriorFurnitureProperty>(this); this.interiorFurniture.add(interiorFurniture); } public void addBridgeRoomInstallation(IntBridgeInstallationProperty bridgeRoomInstallation) { if (this.bridgeRoomInstallation == null) this.bridgeRoomInstallation = new ChildList<IntBridgeInstallationProperty>(this); this.bridgeRoomInstallation.add(bridgeRoomInstallation); } public List<BoundarySurfaceProperty> getBoundedBySurface() { if (boundedBySurface == null) boundedBySurface = new ChildList<BoundarySurfaceProperty>(this); return boundedBySurface; } public Code getClazz() { return clazz; } public List<Code> getFunction() { if (function == null) function = new ChildList<Code>(this); return function; } public List<Code> getUsage() { if (usage == null) usage = new ChildList<Code>(this); return usage; } public List<ADEComponent> getGenericApplicationPropertyOfBridgeRoom() { if (ade == null) ade = new ChildList<ADEComponent>(this); return ade; } public List<InteriorFurnitureProperty> getInteriorFurniture() { if (interiorFurniture == null) interiorFurniture = new ChildList<InteriorFurnitureProperty>(this); return interiorFurniture; } public MultiSurfaceProperty getLod4MultiSurface() { return lod4MultiSurface; } public SolidProperty getLod4Solid() { return lod4Solid; } public List<IntBridgeInstallationProperty> getBridgeRoomInstallation() { if (bridgeRoomInstallation == null) bridgeRoomInstallation = new ChildList<IntBridgeInstallationProperty>(this); return bridgeRoomInstallation; } public boolean isSetBoundedBySurface() { return boundedBySurface != null && !boundedBySurface.isEmpty(); } public boolean isSetClazz() { return clazz != null; } public boolean isSetFunction() { return function != null && !function.isEmpty(); } public boolean isSetUsage() { return usage != null && !usage.isEmpty(); } public boolean isSetGenericApplicationPropertyOfBridgeRoom() { return ade != null && !ade.isEmpty(); } public boolean isSetInteriorFurniture() { return interiorFurniture != null && !interiorFurniture.isEmpty(); } public boolean isSetLod4MultiSurface() { return lod4MultiSurface != null; } public boolean isSetLod4Solid() { return lod4Solid != null; } public boolean isSetBridgeRoomInstallation() { return bridgeRoomInstallation != null && !bridgeRoomInstallation.isEmpty(); } public void setBoundedBySurface(List<BoundarySurfaceProperty> boundedBySurface) { this.boundedBySurface = new ChildList<BoundarySurfaceProperty>(this, boundedBySurface); } public void setClazz(Code clazz) { this.clazz = clazz; } public void setFunction(List<Code> function) { this.function = new ChildList<Code>(this, function); } public void setUsage(List<Code> usage) { this.usage = new ChildList<Code>(this, usage); } public void setGenericApplicationPropertyOfBridgeRoom(List<ADEComponent> ade) { this.ade = new ChildList<ADEComponent>(this, ade); } public void setInteriorFurniture(List<InteriorFurnitureProperty> interiorFurniture) { this.interiorFurniture = new ChildList<InteriorFurnitureProperty>(this, interiorFurniture); } public void setLod4MultiSurface(MultiSurfaceProperty lod4MultiSurface) { if (lod4MultiSurface != null) lod4MultiSurface.setParent(this); this.lod4MultiSurface = lod4MultiSurface; } public void setLod4Solid(SolidProperty lod4Solid) { if (lod4Solid != null) lod4Solid.setParent(this); this.lod4Solid = lod4Solid; } public void setBridgeRoomInstallation(List<IntBridgeInstallationProperty> bridgeRoomInstallation) { this.bridgeRoomInstallation = new ChildList<IntBridgeInstallationProperty>(this, bridgeRoomInstallation); } public void unsetBoundedBySurface() { if (isSetBoundedBySurface()) boundedBySurface.clear(); boundedBySurface = null; } public boolean unsetBoundedBySurface(BoundarySurfaceProperty boundedBySurface) { return isSetBoundedBySurface() ? this.boundedBySurface.remove(boundedBySurface) : false; } public void unsetClazz() { clazz = null; } public void unsetFunction() { function = null; } public boolean unsetFunction(Code function) { return isSetFunction() ? this.function.remove(function) : false; } public void unsetUsage() { usage = null; } public boolean unsetUsage(Code usage) { return isSetUsage() ? this.usage.remove(usage) : false; } public void unsetGenericApplicationPropertyOfBridgeRoom() { if (isSetGenericApplicationPropertyOfBridgeRoom()) ade.clear(); ade = null; } public boolean unsetGenericApplicationPropertyOfBridgeRoom(ADEComponent ade) { return isSetGenericApplicationPropertyOfBridgeRoom() ? this.ade.remove(ade) : false; } public void unsetInteriorFurniture() { if (isSetInteriorFurniture()) interiorFurniture.clear(); interiorFurniture = null; } public boolean unsetInteriorFurniture(InteriorFurnitureProperty interiorFurniture) { return isSetInteriorFurniture() ? this.interiorFurniture.remove(interiorFurniture) : false; } public void unsetLod4MultiSurface() { if (isSetLod4MultiSurface()) lod4MultiSurface.unsetParent(); lod4MultiSurface = null; } public void unsetLod4Solid() { if (isSetLod4Solid()) lod4Solid.unsetParent(); lod4Solid = null; } public void unsetBridgeRoomInstallation() { if (isSetBridgeRoomInstallation()) bridgeRoomInstallation.clear(); bridgeRoomInstallation = null; } public boolean unsetBridgeRoomInstallation(IntBridgeInstallationProperty bridgeRoomInstallation) { return isSetBridgeRoomInstallation() ? this.bridgeRoomInstallation.remove(bridgeRoomInstallation) : false; } public final BridgeModule getCityGMLModule() { return module; } public boolean isSetCityGMLModule() { return module != null; } public CityGMLClass getCityGMLClass() { return CityGMLClass.BRIDGE_ROOM; } @Override public BoundingShape calcBoundedBy(boolean setBoundedBy) { BoundingShape boundedBy = new BoundingShape(); if (isSetLod4MultiSurface()) { if (lod4MultiSurface.isSetMultiSurface()) { calcBoundedBy(boundedBy, lod4MultiSurface.getMultiSurface()); } else { // xlink } } if (isSetLod4Solid()) { if (lod4Solid.isSetSolid()) { calcBoundedBy(boundedBy, lod4Solid.getSolid()); } else { // xlink } } if (isSetBoundedBySurface()) { for (BoundarySurfaceProperty boundarySurfaceProperty : boundedBySurface) { if (boundarySurfaceProperty.isSetObject()) { calcBoundedBy(boundedBy, boundarySurfaceProperty.getObject(), setBoundedBy); } else { // xlink } } } if (boundedBy.isSetEnvelope()) { if (setBoundedBy) setBoundedBy(boundedBy); return boundedBy; } else return null; } @Override public LodRepresentation getLodRepresentation() { LodRepresentation lodRepresentation = new LodRepresentation(); if (isSetLod4MultiSurface()) lodRepresentation.getLod4Geometry().add(lod4MultiSurface); if (isSetLod4Solid()) lodRepresentation.getLod4Geometry().add(lod4Solid); return lodRepresentation; } public Object copy(CopyBuilder copyBuilder) { return copyTo(new BridgeRoom(), copyBuilder); } @Override public Object copyTo(Object target, CopyBuilder copyBuilder) { BridgeRoom copy = (target == null) ? new BridgeRoom() : (BridgeRoom)target; super.copyTo(copy, copyBuilder); if (isSetClazz()) copy.setClazz((Code)copyBuilder.copy(clazz)); if (isSetFunction()) { for (Code part : function) { Code copyPart = (Code)copyBuilder.copy(part); copy.addFunction(copyPart); if (part != null && copyPart == part) part.setParent(this); } } if (isSetUsage()) { for (Code part : usage) { Code copyPart = (Code)copyBuilder.copy(part); copy.addUsage(copyPart); if (part != null && copyPart == part) part.setParent(this); } } if (isSetBoundedBySurface()) { for (BoundarySurfaceProperty part : boundedBySurface) { BoundarySurfaceProperty copyPart = (BoundarySurfaceProperty)copyBuilder.copy(part); copy.addBoundedBySurface(copyPart); if (part != null && copyPart == part) part.setParent(this); } } if (isSetInteriorFurniture()) { for (InteriorFurnitureProperty part : interiorFurniture) { InteriorFurnitureProperty copyPart = (InteriorFurnitureProperty)copyBuilder.copy(part); copy.addInteriorFurniture(copyPart); if (part != null && copyPart == part) part.setParent(this); } } if (isSetBridgeRoomInstallation()) { for (IntBridgeInstallationProperty part : bridgeRoomInstallation) { IntBridgeInstallationProperty copyPart = (IntBridgeInstallationProperty)copyBuilder.copy(part); copy.addBridgeRoomInstallation(copyPart); if (part != null && copyPart == part) part.setParent(this); } } if (isSetLod4MultiSurface()) { copy.setLod4MultiSurface((MultiSurfaceProperty)copyBuilder.copy(lod4MultiSurface)); if (copy.getLod4MultiSurface() == lod4MultiSurface) lod4MultiSurface.setParent(this); } if (isSetLod4Solid()) { copy.setLod4Solid((SolidProperty)copyBuilder.copy(lod4Solid)); if (copy.getLod4Solid() == lod4Solid) lod4Solid.setParent(this); } if (isSetGenericApplicationPropertyOfBridgeRoom()) { for (ADEComponent part : ade) { ADEComponent copyPart = (ADEComponent)copyBuilder.copy(part); copy.addGenericApplicationPropertyOfBridgeRoom(copyPart); if (part != null && copyPart == part) part.setParent(this); } } return copy; } public void accept(FeatureVisitor visitor) { visitor.visit(this); } public <T> T accept(FeatureFunctor<T> visitor) { return visitor.apply(this); } public void accept(GMLVisitor visitor) { visitor.visit(this); } public <T> T accept(GMLFunctor<T> visitor) { return visitor.apply(this); } }