
org.citygml4j.model.citygml.building.AbstractBuilding Maven / Gradle / Ivy
/*
* citygml4j - The Open Source Java API for CityGML
* https://github.com/citygml4j
*
* Copyright 2013-2020 Claus Nagel
*
* 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.building;
import org.citygml4j.builder.copy.CopyBuilder;
import org.citygml4j.model.citygml.ade.ADEClass;
import org.citygml4j.model.citygml.ade.ADEComponent;
import org.citygml4j.model.citygml.ade.binding.ADEBoundingBoxHelper;
import org.citygml4j.model.citygml.ade.binding.ADEModelObject;
import org.citygml4j.model.citygml.core.AbstractSite;
import org.citygml4j.model.citygml.core.AddressProperty;
import org.citygml4j.model.citygml.core.LodRepresentation;
import org.citygml4j.model.citygml.core.StandardObjectClassifier;
import org.citygml4j.model.common.base.ModelObjects;
import org.citygml4j.model.common.child.ChildList;
import org.citygml4j.model.gml.basicTypes.Code;
import org.citygml4j.model.gml.basicTypes.MeasureOrNullList;
import org.citygml4j.model.gml.feature.BoundingShape;
import org.citygml4j.model.gml.geometry.aggregates.MultiCurveProperty;
import org.citygml4j.model.gml.geometry.aggregates.MultiSurfaceProperty;
import org.citygml4j.model.gml.geometry.primitives.SolidProperty;
import org.citygml4j.model.gml.measures.Length;
import org.citygml4j.model.module.Module;
import org.citygml4j.util.bbox.BoundingBoxOptions;
import java.time.LocalDate;
import java.util.List;
public abstract class AbstractBuilding extends AbstractSite implements BuildingModuleComponent, StandardObjectClassifier {
private Code clazz;
private List function;
private List usage;
private LocalDate yearOfConstruction;
private LocalDate yearOfDemolition;
private Code roofType;
private Length measuredHeight;
private Integer storeysAboveGround;
private Integer storeysBelowGround;
private MeasureOrNullList storeyHeightsAboveGround;
private MeasureOrNullList storeyHeightsBelowGround;
private SolidProperty lod1Solid;
private SolidProperty lod2Solid;
private SolidProperty lod3Solid;
private SolidProperty lod4Solid;
private MultiCurveProperty lod1TerrainIntersection;
private MultiCurveProperty lod2TerrainIntersection;
private MultiCurveProperty lod3TerrainIntersection;
private MultiCurveProperty lod4TerrainIntersection;
private MultiCurveProperty lod2MultiCurve;
private MultiCurveProperty lod3MultiCurve;
private MultiCurveProperty lod4MultiCurve;
private MultiSurfaceProperty lod0FootPrint;
private MultiSurfaceProperty lod0RoofEdge;
private MultiSurfaceProperty lod1MultiSurface;
private MultiSurfaceProperty lod2MultiSurface;
private MultiSurfaceProperty lod3MultiSurface;
private MultiSurfaceProperty lod4MultiSurface;
private List outerBuildingInstallation;
private List interiorBuildingInstallation;
private List boundedBySurface;
private List buildingPart;
private List interiorRoom;
private List address;
private List ade;
public AbstractBuilding() {
}
public AbstractBuilding(Module module) {
super(module);
}
public void addAddress(AddressProperty address) {
getAddress().add(address);
}
public void addBoundedBySurface(BoundarySurfaceProperty boundedBySurface) {
getBoundedBySurface().add(boundedBySurface);
}
public void addConsistsOfBuildingPart(BuildingPartProperty buildingPart) {
getConsistsOfBuildingPart().add(buildingPart);
}
public void addFunction(Code function) {
getFunction().add(function);
}
public void addUsage(Code usage) {
getUsage().add(usage);
}
public void addGenericApplicationPropertyOfAbstractBuilding(ADEComponent ade) {
getGenericApplicationPropertyOfAbstractBuilding().add(ade);
}
public void addInteriorBuildingInstallation(IntBuildingInstallationProperty interiorBuildingInstallation) {
getInteriorBuildingInstallation().add(interiorBuildingInstallation);
}
public void addInteriorRoom(InteriorRoomProperty interiorRoom) {
getInteriorRoom().add(interiorRoom);
}
public void addOuterBuildingInstallation(BuildingInstallationProperty outerBuildingInstallation) {
getOuterBuildingInstallation().add(outerBuildingInstallation);
}
public List getAddress() {
if (address == null)
address = new ChildList<>(this);
return address;
}
public List getBoundedBySurface() {
if (boundedBySurface == null)
boundedBySurface = new ChildList<>(this);
return boundedBySurface;
}
public Code getClazz() {
return clazz;
}
public List getFunction() {
if (function == null)
function = new ChildList<>(this);
return function;
}
public List getUsage() {
if (usage == null)
usage = new ChildList<>(this);
return usage;
}
public List getConsistsOfBuildingPart() {
if (buildingPart == null)
buildingPart = new ChildList<>(this);
return buildingPart;
}
public List getGenericApplicationPropertyOfAbstractBuilding() {
if (ade == null)
ade = new ChildList<>(this);
return ade;
}
public List getInteriorBuildingInstallation() {
if (interiorBuildingInstallation == null)
interiorBuildingInstallation = new ChildList<>(this);
return interiorBuildingInstallation;
}
public List getInteriorRoom() {
if (interiorRoom == null)
interiorRoom = new ChildList<>(this);
return interiorRoom;
}
public MultiSurfaceProperty getLod1MultiSurface() {
return lod1MultiSurface;
}
public SolidProperty getLod1Solid() {
return lod1Solid;
}
public MultiCurveProperty getLod1TerrainIntersection() {
return lod1TerrainIntersection;
}
public MultiCurveProperty getLod2MultiCurve() {
return lod2MultiCurve;
}
public MultiSurfaceProperty getLod2MultiSurface() {
return lod2MultiSurface;
}
public SolidProperty getLod2Solid() {
return lod2Solid;
}
public MultiCurveProperty getLod2TerrainIntersection() {
return lod2TerrainIntersection;
}
public MultiCurveProperty getLod3MultiCurve() {
return lod3MultiCurve;
}
public MultiSurfaceProperty getLod3MultiSurface() {
return lod3MultiSurface;
}
public SolidProperty getLod3Solid() {
return lod3Solid;
}
public MultiCurveProperty getLod3TerrainIntersection() {
return lod3TerrainIntersection;
}
public MultiCurveProperty getLod4MultiCurve() {
return lod4MultiCurve;
}
public MultiSurfaceProperty getLod4MultiSurface() {
return lod4MultiSurface;
}
public SolidProperty getLod4Solid() {
return lod4Solid;
}
public MultiCurveProperty getLod4TerrainIntersection() {
return lod4TerrainIntersection;
}
public Length getMeasuredHeight() {
return measuredHeight;
}
public List getOuterBuildingInstallation() {
if (outerBuildingInstallation == null)
outerBuildingInstallation = new ChildList<>(this);
return outerBuildingInstallation;
}
public Code getRoofType() {
return roofType;
}
public MeasureOrNullList getStoreyHeightsAboveGround() {
return storeyHeightsAboveGround;
}
public MeasureOrNullList getStoreyHeightsBelowGround() {
return storeyHeightsBelowGround;
}
public Integer getStoreysAboveGround() {
return storeysAboveGround;
}
public Integer getStoreysBelowGround() {
return storeysBelowGround;
}
public LocalDate getYearOfConstruction() {
return yearOfConstruction;
}
public LocalDate getYearOfDemolition() {
return yearOfDemolition;
}
public boolean isSetAddress() {
return address != null && !address.isEmpty();
}
public boolean isSetBoundedBySurface() {
return boundedBySurface != null && !boundedBySurface.isEmpty();
}
public boolean isSetClazz() {
return clazz != null;
}
public boolean isSetConsistsOfBuildingPart() {
return buildingPart != null && !buildingPart.isEmpty();
}
public boolean isSetFunction() {
return function != null && !function.isEmpty();
}
public boolean isSetGenericApplicationPropertyOfAbstractBuilding() {
return ade != null && !ade.isEmpty();
}
public boolean isSetInteriorBuildingInstallation() {
return interiorBuildingInstallation != null && !interiorBuildingInstallation.isEmpty();
}
public boolean isSetInteriorRoom() {
return interiorRoom != null && !interiorRoom.isEmpty();
}
public boolean isSetLod1MultiSurface() {
return lod1MultiSurface != null;
}
public boolean isSetLod1Solid() {
return lod1Solid != null;
}
public boolean isSetLod1TerrainIntersection() {
return lod1TerrainIntersection != null;
}
public boolean isSetLod2MultiCurve() {
return lod2MultiCurve != null;
}
public boolean isSetLod2MultiSurface() {
return lod2MultiSurface != null;
}
public boolean isSetLod2Solid() {
return lod2Solid != null;
}
public boolean isSetLod2TerrainIntersection() {
return lod2TerrainIntersection != null;
}
public boolean isSetLod3MultiCurve() {
return lod3MultiCurve != null;
}
public boolean isSetLod3MultiSurface() {
return lod3MultiSurface != null;
}
public boolean isSetLod3Solid() {
return lod3Solid != null;
}
public boolean isSetLod3TerrainIntersection() {
return lod3TerrainIntersection != null;
}
public boolean isSetLod4MultiCurve() {
return lod4MultiCurve != null;
}
public boolean isSetLod4MultiSurface() {
return lod4MultiSurface != null;
}
public boolean isSetLod4Solid() {
return lod4Solid != null;
}
public boolean isSetLod4TerrainIntersection() {
return lod4TerrainIntersection != null;
}
public boolean isSetMeasuredHeight() {
return measuredHeight != null;
}
public boolean isSetOuterBuildingInstallation() {
return outerBuildingInstallation != null && !outerBuildingInstallation.isEmpty();
}
public boolean isSetRoofType() {
return roofType != null;
}
public boolean isSetStoreyHeightsAboveGround() {
return storeyHeightsAboveGround != null;
}
public boolean isSetStoreyHeightsBelowGround() {
return storeyHeightsBelowGround != null;
}
public boolean isSetStoreysAboveGround() {
return storeysAboveGround != null;
}
public boolean isSetStoreysBelowGround() {
return storeysBelowGround != null;
}
public boolean isSetUsage() {
return usage != null && !usage.isEmpty();
}
public boolean isSetYearOfConstruction() {
return yearOfConstruction != null;
}
public boolean isSetYearOfDemolition() {
return yearOfDemolition != null;
}
public void setAddress(List address) {
this.address = new ChildList<>(this, address);
}
public void setBoundedBySurface(List boundedBySurface) {
this.boundedBySurface = new ChildList<>(this, boundedBySurface);
}
public void setClazz(Code clazz) {
this.clazz = ModelObjects.setParent(clazz, this);
}
public void setFunction(List function) {
this.function = new ChildList<>(this, function);
}
public void setUsage(List usage) {
this.usage = new ChildList<>(this, usage);
}
public void setConsistsOfBuildingPart(List buildingPart) {
this.buildingPart = new ChildList<>(this, buildingPart);
}
public void setGenericApplicationPropertyOfAbstractBuilding(List ade) {
this.ade = new ChildList<>(this, ade);
}
public void setInteriorBuildingInstallation(List interiorBuildingInstallation) {
this.interiorBuildingInstallation = new ChildList<>(this, interiorBuildingInstallation);
}
public void setInteriorRoom(List interiorRoom) {
this.interiorRoom = new ChildList<>(this, interiorRoom);
}
public void setLod1MultiSurface(MultiSurfaceProperty lod1MultiSurface) {
this.lod1MultiSurface = ModelObjects.setParent(lod1MultiSurface, this);
}
public void setLod1Solid(SolidProperty lod1Solid) {
this.lod1Solid = ModelObjects.setParent(lod1Solid, this);
}
public void setLod1TerrainIntersection(MultiCurveProperty lod1TerrainIntersection) {
this.lod1TerrainIntersection = ModelObjects.setParent(lod1TerrainIntersection, this);
}
public void setLod2MultiCurve(MultiCurveProperty lod2MultiCurve) {
this.lod2MultiCurve = ModelObjects.setParent(lod2MultiCurve, this);
}
public void setLod2MultiSurface(MultiSurfaceProperty lod2MultiSurface) {
this.lod2MultiSurface = ModelObjects.setParent(lod2MultiSurface, this);
}
public void setLod2Solid(SolidProperty lod2Solid) {
this.lod2Solid = ModelObjects.setParent(lod2Solid, this);
}
public void setLod2TerrainIntersection(MultiCurveProperty lod2TerrainIntersection) {
this.lod2TerrainIntersection = ModelObjects.setParent(lod2TerrainIntersection, this);
}
public void setLod3MultiCurve(MultiCurveProperty lod3MultiCurve) {
this.lod3MultiCurve = ModelObjects.setParent(lod3MultiCurve, this);
}
public void setLod3MultiSurface(MultiSurfaceProperty lod3MultiSurface) {
this.lod3MultiSurface = ModelObjects.setParent(lod3MultiSurface, this);
}
public void setLod3Solid(SolidProperty lod3Solid) {
this.lod3Solid = ModelObjects.setParent(lod3Solid, this);
}
public void setLod3TerrainIntersection(MultiCurveProperty lod3TerrainIntersection) {
this.lod3TerrainIntersection = ModelObjects.setParent(lod3TerrainIntersection, this);
}
public void setLod4MultiCurve(MultiCurveProperty lod4MultiCurve) {
this.lod4MultiCurve = ModelObjects.setParent(lod4MultiCurve, this);
}
public void setLod4MultiSurface(MultiSurfaceProperty lod4MultiSurface) {
this.lod4MultiSurface = ModelObjects.setParent(lod4MultiSurface, this);
}
public void setLod4Solid(SolidProperty lod4Solid) {
this.lod4Solid = ModelObjects.setParent(lod4Solid, this);
}
public void setLod4TerrainIntersection(MultiCurveProperty lod4TerrainIntersection) {
this.lod4TerrainIntersection = ModelObjects.setParent(lod4TerrainIntersection, this);
}
public void setMeasuredHeight(Length measuredHeight) {
this.measuredHeight = ModelObjects.setParent(measuredHeight, this);
}
public void setOuterBuildingInstallation(List outerBuildingInstallation) {
this.outerBuildingInstallation = new ChildList<>(this, outerBuildingInstallation);
}
public void setRoofType(Code roofType) {
this.roofType = ModelObjects.setParent(roofType, this);
}
public void setStoreyHeightsAboveGround(MeasureOrNullList storeyHeightsAboveGround) {
this.storeyHeightsAboveGround = ModelObjects.setParent(storeyHeightsAboveGround, this);
}
public void setStoreyHeightsBelowGround(MeasureOrNullList storeyHeightsBelowGround) {
this.storeyHeightsBelowGround = ModelObjects.setParent(storeyHeightsBelowGround, this);
}
public void setStoreysAboveGround(Integer storeysAboveGround) {
if (storeysAboveGround >= 0)
this.storeysAboveGround = storeysAboveGround;
}
public void setStoreysBelowGround(Integer storeysBelowGround) {
if (storeysBelowGround >= 0)
this.storeysBelowGround = storeysBelowGround;
}
public void setYearOfConstruction(LocalDate yearOfConstruction) {
this.yearOfConstruction = yearOfConstruction;
}
public void setYearOfConstruction(int yearOfConstruction) {
this.yearOfConstruction = LocalDate.of(yearOfConstruction, 1, 1);
}
public void setYearOfDemolition(LocalDate yearOfDemolition) {
this.yearOfDemolition = yearOfDemolition;
}
public void setYearOfDemolition(int yearOfDemolition) {
this.yearOfDemolition = LocalDate.of(yearOfDemolition, 1, 1);
}
public void unsetAddress() {
address = ModelObjects.setNull(address);
}
public boolean unsetAddress(AddressProperty address) {
return isSetAddress() && this.address.remove(address);
}
public void unsetBoundedBySurface() {
boundedBySurface = ModelObjects.setNull(boundedBySurface);
}
public boolean unsetBoundedBySurface(BoundarySurfaceProperty boundedBySurface) {
return isSetBoundedBySurface() && this.boundedBySurface.remove(boundedBySurface);
}
public void unsetClazz() {
clazz = ModelObjects.setNull(clazz);
}
public void unsetConsistsOfBuildingPart() {
buildingPart = ModelObjects.setNull(buildingPart);
}
public boolean unsetConsistsOfBuildingPart(BuildingPartProperty buildingPart) {
return isSetConsistsOfBuildingPart() && this.buildingPart.remove(buildingPart);
}
public void unsetFunction() {
function = ModelObjects.setNull(function);
}
public boolean unsetFunction(Code function) {
return isSetFunction() && this.function.remove(function);
}
public void unsetUsage() {
usage = ModelObjects.setNull(usage);
}
public boolean unsetUsage(Code usage) {
return isSetUsage() && this.usage.remove(usage);
}
public void unsetGenericApplicationPropertyOfAbstractBuilding() {
ade = ModelObjects.setNull(ade);
}
public boolean unsetGenericApplicationPropertyOfAbstractBuilding(ADEComponent ade) {
return isSetGenericApplicationPropertyOfAbstractBuilding() && this.ade.remove(ade); }
public void unsetInteriorBuildingInstallation() {
interiorBuildingInstallation = ModelObjects.setNull(interiorBuildingInstallation);
}
public boolean unsetInteriorBuildingInstallation(IntBuildingInstallationProperty interiorBuildingInstallation) {
return isSetInteriorBuildingInstallation() && this.interiorBuildingInstallation.remove(interiorBuildingInstallation);
}
public void unsetInteriorRoom() {
interiorRoom = ModelObjects.setNull(interiorRoom);
}
public boolean unsetInteriorRoom(InteriorRoomProperty interiorRoom) {
return isSetInteriorRoom() && this.interiorRoom.remove(interiorRoom);
}
public void unsetLod1MultiSurface() {
lod1MultiSurface = ModelObjects.setNull(lod1MultiSurface);
}
public void unsetLod1Solid() {
lod1Solid = ModelObjects.setNull(lod1Solid);
}
public void unsetLod1TerrainIntersection() {
lod1TerrainIntersection = ModelObjects.setNull(lod1TerrainIntersection);
}
public void unsetLod2MultiCurve() {
lod2MultiCurve = ModelObjects.setNull(lod2MultiCurve);
}
public void unsetLod2MultiSurface() {
lod2MultiSurface = ModelObjects.setNull(lod2MultiSurface);
}
public void unsetLod2Solid() {
lod2Solid = ModelObjects.setNull(lod2Solid);
}
public void unsetLod2TerrainIntersection() {
lod2TerrainIntersection = ModelObjects.setNull(lod2TerrainIntersection);
}
public void unsetLod3MultiCurve() {
lod3MultiCurve = ModelObjects.setNull(lod3MultiCurve);
}
public void unsetLod3MultiSurface() {
lod3MultiSurface = ModelObjects.setNull(lod3MultiSurface);
}
public void unsetLod3Solid() {
lod3Solid = ModelObjects.setNull(lod3Solid);
}
public void unsetLod3TerrainIntersection() {
lod3TerrainIntersection = ModelObjects.setNull(lod3TerrainIntersection);
}
public void unsetLod4MultiCurve() {
lod4MultiCurve = ModelObjects.setNull(lod4MultiCurve);
}
public void unsetLod4MultiSurface() {
lod4MultiSurface = ModelObjects.setNull(lod4MultiSurface);
}
public void unsetLod4Solid() {
lod4Solid = ModelObjects.setNull(lod4Solid);
}
public void unsetLod4TerrainIntersection() {
lod4TerrainIntersection = ModelObjects.setNull(lod4TerrainIntersection);
}
public void unsetMeasuredHeight() {
measuredHeight = ModelObjects.setNull(measuredHeight);
}
public void unsetOuterBuildingInstallation() {
outerBuildingInstallation = ModelObjects.setNull(outerBuildingInstallation);
}
public boolean unsetOuterBuildingInstallation(BuildingInstallationProperty outerBuildingInstallation) {
return isSetOuterBuildingInstallation() && this.outerBuildingInstallation.remove(outerBuildingInstallation);
}
public void unsetRoofType() {
roofType = ModelObjects.setNull(roofType);
}
public void unsetStoreyHeightsAboveGround() {
storeyHeightsAboveGround = ModelObjects.setNull(storeyHeightsAboveGround);
}
public void unsetStoreyHeightsBelowGround() {
storeyHeightsBelowGround = ModelObjects.setNull(storeyHeightsBelowGround);
}
public void unsetStoreysAboveGround() {
storeysAboveGround = null;
}
public void unsetStoreysBelowGround() {
storeysBelowGround = null;
}
public void unsetYearOfConstruction() {
yearOfConstruction = null;
}
public void unsetYearOfDemolition() {
yearOfDemolition = null;
}
public MultiSurfaceProperty getLod0FootPrint() {
return lod0FootPrint;
}
public MultiSurfaceProperty getLod0RoofEdge() {
return lod0RoofEdge;
}
public boolean isSetLod0FootPrint() {
return lod0FootPrint != null;
}
public boolean isSetLod0RoofEdge() {
return lod0RoofEdge != null;
}
public void setLod0FootPrint(MultiSurfaceProperty lod0FootPrint) {
this.lod0FootPrint = ModelObjects.setParent(lod0FootPrint, this);
}
public void setLod0RoofEdge(MultiSurfaceProperty lod0RoofEgde) {
this.lod0RoofEdge = ModelObjects.setParent(lod0RoofEgde, this);
}
public void unsetLod0FootPrint() {
lod0FootPrint = ModelObjects.setNull(lod0FootPrint);
}
public void unsetLod0RoofEdge() {
lod0RoofEdge = ModelObjects.setNull(lod0RoofEdge);
}
@Override
public BoundingShape calcBoundedBy(BoundingBoxOptions options) {
BoundingShape boundedBy = super.calcBoundedBy(options);
if (options.isUseExistingEnvelopes() && !boundedBy.isEmpty())
return boundedBy;
if (lod0FootPrint != null) {
if (lod0FootPrint.isSetMultiSurface()) {
boundedBy.updateEnvelope(lod0FootPrint.getMultiSurface().calcBoundingBox());
} else {
// xlink
}
}
if (lod0RoofEdge != null) {
if (lod0RoofEdge.isSetMultiSurface()) {
boundedBy.updateEnvelope(lod0RoofEdge.getMultiSurface().calcBoundingBox());
} else {
// xlink
}
}
SolidProperty solidProperty = null;
for (int lod = 1; lod < 5; lod++) {
switch (lod) {
case 1:
solidProperty = lod1Solid;
break;
case 2:
solidProperty = lod2Solid;
break;
case 3:
solidProperty = lod3Solid;
break;
case 4:
solidProperty = lod4Solid;
break;
}
if (solidProperty != null) {
if (solidProperty.isSetSolid()) {
boundedBy.updateEnvelope(solidProperty.getSolid().calcBoundingBox());
} else {
// xlink
}
}
}
MultiSurfaceProperty multiSurfaceProperty = null;
for (int lod = 1; lod < 5; lod++) {
switch (lod) {
case 1:
multiSurfaceProperty = lod1MultiSurface;
break;
case 2:
multiSurfaceProperty = lod2MultiSurface;
break;
case 3:
multiSurfaceProperty = lod3MultiSurface;
break;
case 4:
multiSurfaceProperty = lod4MultiSurface;
break;
}
if (multiSurfaceProperty != null) {
if (multiSurfaceProperty.isSetMultiSurface()) {
boundedBy.updateEnvelope(multiSurfaceProperty.getMultiSurface().calcBoundingBox());
} else {
// xlink
}
}
}
MultiCurveProperty multiCurveProperty = null;
for (int lod = 2; lod < 5; lod++) {
switch (lod) {
case 2:
multiCurveProperty = lod2MultiCurve;
break;
case 3:
multiCurveProperty = lod3MultiCurve;
break;
case 4:
multiCurveProperty = lod4MultiCurve;
break;
}
if (multiCurveProperty != null) {
if (multiCurveProperty.isSetMultiCurve()) {
boundedBy.updateEnvelope(multiCurveProperty.getMultiCurve().calcBoundingBox());
} else {
// xlink
}
}
}
if (isSetBoundedBySurface()) {
for (BoundarySurfaceProperty boundarySurfaceProperty : getBoundedBySurface()) {
if (boundarySurfaceProperty.isSetObject()) {
boundedBy.updateEnvelope(boundarySurfaceProperty.getObject().calcBoundedBy(options).getEnvelope());
} else {
// xlink?
}
}
}
if (isSetOuterBuildingInstallation()) {
for (BuildingInstallationProperty buildingInstallationProperty : getOuterBuildingInstallation()) {
if (buildingInstallationProperty.isSetObject()) {
boundedBy.updateEnvelope(buildingInstallationProperty.getObject().calcBoundedBy(options).getEnvelope());
} else {
// xlink?
}
}
}
if (isSetConsistsOfBuildingPart()) {
for (BuildingPartProperty buildingPartProperty : getConsistsOfBuildingPart()) {
if (buildingPartProperty.isSetObject()) {
boundedBy.updateEnvelope(buildingPartProperty.getObject().calcBoundedBy(options).getEnvelope());
} else {
// xlink?
}
}
}
if (isSetGenericApplicationPropertyOfAbstractBuilding()) {
for (ADEComponent ade : getGenericApplicationPropertyOfAbstractBuilding()) {
if (ade.getADEClass() == ADEClass.MODEL_OBJECT)
boundedBy.updateEnvelope(ADEBoundingBoxHelper.calcBoundedBy((ADEModelObject)ade, options).getEnvelope());
}
}
if (options.isAssignResultToFeatures())
setBoundedBy(boundedBy);
return boundedBy;
}
@Override
public LodRepresentation getLodRepresentation() {
LodRepresentation lodRepresentation = new LodRepresentation();
lodRepresentation.addRepresentation(0, lod0FootPrint);
lodRepresentation.addRepresentation(0, lod0RoofEdge);
lodRepresentation.addRepresentation(1, lod1Solid);
lodRepresentation.addRepresentation(2, lod2Solid);
lodRepresentation.addRepresentation(3, lod3Solid);
lodRepresentation.addRepresentation(4, lod4Solid);
lodRepresentation.addRepresentation(1, lod1MultiSurface);
lodRepresentation.addRepresentation(2, lod2MultiSurface);
lodRepresentation.addRepresentation(3, lod3MultiSurface);
lodRepresentation.addRepresentation(4, lod4MultiSurface);
lodRepresentation.addRepresentation(2, lod2MultiCurve);
lodRepresentation.addRepresentation(3, lod3MultiCurve);
lodRepresentation.addRepresentation(4, lod4MultiCurve);
return lodRepresentation;
}
@Override
public Object copyTo(Object target, CopyBuilder copyBuilder) {
if (target == null)
throw new IllegalArgumentException("Target argument must not be null for abstract copyable classes.");
AbstractBuilding copy = (AbstractBuilding)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 (isSetYearOfConstruction())
copy.setYearOfConstruction((LocalDate)copyBuilder.copy(yearOfConstruction));
if (isSetYearOfDemolition())
copy.setYearOfDemolition((LocalDate)copyBuilder.copy(yearOfDemolition));
if (isSetRoofType())
copy.setRoofType((Code)copyBuilder.copy(roofType));
if (isSetStoreysAboveGround())
copy.setStoreysAboveGround((Integer)copyBuilder.copy(storeysAboveGround));
if (isSetStoreysBelowGround())
copy.setStoreysBelowGround((Integer)copyBuilder.copy(storeysBelowGround));
if (isSetMeasuredHeight()) {
copy.setMeasuredHeight((Length)copyBuilder.copy(measuredHeight));
if (copy.getMeasuredHeight() == measuredHeight)
measuredHeight.setParent(this);
}
if (isSetStoreyHeightsAboveGround()) {
copy.setStoreyHeightsAboveGround((MeasureOrNullList)copyBuilder.copy(storeyHeightsAboveGround));
if (copy.getStoreyHeightsAboveGround() == storeyHeightsAboveGround)
storeyHeightsAboveGround.setParent(this);
}
if (isSetStoreyHeightsBelowGround()) {
copy.setStoreyHeightsBelowGround((MeasureOrNullList)copyBuilder.copy(storeyHeightsBelowGround));
if (copy.getStoreyHeightsBelowGround() == storeyHeightsBelowGround)
storeyHeightsBelowGround.setParent(this);
}
if (isSetLod1Solid()) {
copy.setLod1Solid((SolidProperty)copyBuilder.copy(lod1Solid));
if (copy.getLod1Solid() == lod1Solid)
lod1Solid.setParent(this);
}
if (isSetLod2Solid()) {
copy.setLod2Solid((SolidProperty)copyBuilder.copy(lod2Solid));
if (copy.getLod2Solid() == lod2Solid)
lod2Solid.setParent(this);
}
if (isSetLod3Solid()) {
copy.setLod3Solid((SolidProperty)copyBuilder.copy(lod3Solid));
if (copy.getLod3Solid() == lod3Solid)
lod3Solid.setParent(this);
}
if (isSetLod4Solid()) {
copy.setLod4Solid((SolidProperty)copyBuilder.copy(lod4Solid));
if (copy.getLod4Solid() == lod4Solid)
lod4Solid.setParent(this);
}
if (isSetLod1TerrainIntersection()) {
copy.setLod1TerrainIntersection((MultiCurveProperty)copyBuilder.copy(lod1TerrainIntersection));
if (copy.getLod1TerrainIntersection() == lod1TerrainIntersection)
lod1TerrainIntersection.setParent(this);
}
if (isSetLod2TerrainIntersection()) {
copy.setLod2TerrainIntersection((MultiCurveProperty)copyBuilder.copy(lod2TerrainIntersection));
if (copy.getLod2TerrainIntersection() == lod2TerrainIntersection)
lod2TerrainIntersection.setParent(this);
}
if (isSetLod3TerrainIntersection()) {
copy.setLod3TerrainIntersection((MultiCurveProperty)copyBuilder.copy(lod3TerrainIntersection));
if (copy.getLod3TerrainIntersection() == lod3TerrainIntersection)
lod3TerrainIntersection.setParent(this);
}
if (isSetLod4TerrainIntersection()) {
copy.setLod4TerrainIntersection((MultiCurveProperty)copyBuilder.copy(lod4TerrainIntersection));
if (copy.getLod4TerrainIntersection() == lod4TerrainIntersection)
lod4TerrainIntersection.setParent(this);
}
if (isSetLod2MultiCurve()) {
copy.setLod2MultiCurve((MultiCurveProperty)copyBuilder.copy(lod2MultiCurve));
if (copy.getLod2MultiCurve() == lod2MultiCurve)
lod2MultiCurve.setParent(this);
}
if (isSetLod3MultiCurve()) {
copy.setLod3MultiCurve((MultiCurveProperty)copyBuilder.copy(lod3MultiCurve));
if (copy.getLod3MultiCurve() == lod3MultiCurve)
lod3MultiCurve.setParent(this);
}
if (isSetLod4MultiCurve()) {
copy.setLod4MultiCurve((MultiCurveProperty)copyBuilder.copy(lod4MultiCurve));
if (copy.getLod4MultiCurve() == lod4MultiCurve)
lod4MultiCurve.setParent(this);
}
if (isSetLod0FootPrint()) {
copy.setLod0FootPrint((MultiSurfaceProperty)copyBuilder.copy(lod0FootPrint));
if (copy.getLod0FootPrint() == lod0FootPrint)
lod0FootPrint.setParent(this);
}
if (isSetLod0RoofEdge()) {
copy.setLod0RoofEdge((MultiSurfaceProperty)copyBuilder.copy(lod0RoofEdge));
if (copy.getLod0RoofEdge() == lod0RoofEdge)
lod0RoofEdge.setParent(this);
}
if (isSetLod1MultiSurface()) {
copy.setLod1MultiSurface((MultiSurfaceProperty)copyBuilder.copy(lod1MultiSurface));
if (copy.getLod1MultiSurface() == lod1MultiSurface)
lod1MultiSurface.setParent(this);
}
if (isSetLod2MultiSurface()) {
copy.setLod2MultiSurface((MultiSurfaceProperty)copyBuilder.copy(lod2MultiSurface));
if (copy.getLod2MultiSurface() == lod2MultiSurface)
lod2MultiSurface.setParent(this);
}
if (isSetLod3MultiSurface()) {
copy.setLod3MultiSurface((MultiSurfaceProperty)copyBuilder.copy(lod3MultiSurface));
if (copy.getLod3MultiSurface() == lod3MultiSurface)
lod3MultiSurface.setParent(this);
}
if (isSetLod4MultiSurface()) {
copy.setLod4MultiSurface((MultiSurfaceProperty)copyBuilder.copy(lod4MultiSurface));
if (copy.getLod4MultiSurface() == lod4MultiSurface)
lod4MultiSurface.setParent(this);
}
if (isSetAddress()) {
for (AddressProperty part : address) {
AddressProperty copyPart = (AddressProperty)copyBuilder.copy(part);
copy.addAddress(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 (isSetOuterBuildingInstallation()) {
for (BuildingInstallationProperty part : outerBuildingInstallation) {
BuildingInstallationProperty copyPart = (BuildingInstallationProperty)copyBuilder.copy(part);
copy.addOuterBuildingInstallation(copyPart);
if (part != null && copyPart == part)
part.setParent(this);
}
}
if (isSetInteriorBuildingInstallation()) {
for (IntBuildingInstallationProperty part : interiorBuildingInstallation) {
IntBuildingInstallationProperty copyPart = (IntBuildingInstallationProperty)copyBuilder.copy(part);
copy.addInteriorBuildingInstallation(copyPart);
if (part != null && copyPart == part)
part.setParent(this);
}
}
if (isSetConsistsOfBuildingPart()) {
for (BuildingPartProperty part : buildingPart) {
BuildingPartProperty copyPart = (BuildingPartProperty)copyBuilder.copy(part);
copy.addConsistsOfBuildingPart(copyPart);
if (part != null && copyPart == part)
part.setParent(this);
}
}
if (isSetInteriorRoom()) {
for (InteriorRoomProperty part : interiorRoom) {
InteriorRoomProperty copyPart = (InteriorRoomProperty)copyBuilder.copy(part);
copy.addInteriorRoom(copyPart);
if (part != null && copyPart == part)
part.setParent(this);
}
}
if (isSetGenericApplicationPropertyOfAbstractBuilding()) {
for (ADEComponent part : ade) {
ADEComponent copyPart = (ADEComponent)copyBuilder.copy(part);
copy.addGenericApplicationPropertyOfAbstractBuilding(copyPart);
if (part != null && copyPart == part)
part.setParent(this);
}
}
return copy;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy