From d731d23e3da0b8446f3943213b84d3f2c3bd6abd Mon Sep 17 00:00:00 2001 From: Claus Nagel Date: Tue, 27 Aug 2024 21:23:49 +0200 Subject: [PATCH] added copyright headers --- .../ade/quality/QualityADEContext.java | 21 +++++++++++++++++++ .../ade/quality/QualityADEModule.java | 21 +++++++++++++++++++ .../quality/bind/QualityADEMarshaller.java | 21 +++++++++++++++++++ .../quality/bind/QualityADEUnmarshaller.java | 21 +++++++++++++++++++ .../ade/quality/model/AbstractDataType.java | 21 +++++++++++++++++++ .../ade/quality/model/AbstractError.java | 21 +++++++++++++++++++ .../quality/model/AbstractGeometryError.java | 21 +++++++++++++++++++ .../quality/model/AbstractPolygonError.java | 21 +++++++++++++++++++ .../ade/quality/model/AbstractRingError.java | 21 +++++++++++++++++++ .../quality/model/AbstractSemanticError.java | 21 +++++++++++++++++++ .../ade/quality/model/AbstractSolidError.java | 21 +++++++++++++++++++ .../org/citygml4j/ade/quality/model/Edge.java | 21 +++++++++++++++++++ .../citygml4j/ade/quality/model/Error.java | 21 +++++++++++++++++++ .../ade/quality/model/ErrorType.java | 9 ++++++-- .../ade/quality/model/FeatureStatistics.java | 9 ++++++-- .../ade/quality/model/FeatureType.java | 9 ++++++-- .../citygml4j/ade/quality/model/Filter.java | 21 +++++++++++++++++++ .../ade/quality/model/Parameter.java | 9 ++++++-- .../ade/quality/model/PolygonHoleOutside.java | 9 ++++++-- .../ade/quality/model/PolygonIdList.java | 21 +++++++++++++++++++ .../model/PolygonInnerRingsNested.java | 9 ++++++-- .../model/PolygonInteriorDisconnected.java | 9 ++++++-- .../model/PolygonIntersectingRings.java | 9 ++++++-- .../model/PolygonNonPlanarDistancePlane.java | 9 ++++++-- .../PolygonNonPlanarNormalsDeviation.java | 9 ++++++-- .../model/PolygonOrientationRingsSame.java | 9 ++++++-- .../ade/quality/model/Requirement.java | 9 ++++++-- .../ade/quality/model/RequirementType.java | 9 ++++++-- .../ade/quality/model/ResultType.java | 9 ++++++-- .../model/RingConsecutivePointsSame.java | 9 ++++++-- .../ade/quality/model/RingNotClosed.java | 9 ++++++-- .../quality/model/RingSelfIntersection.java | 9 ++++++-- .../model/RingSelfIntersectionType.java | 9 ++++++-- .../ade/quality/model/RingTooFewPoints.java | 9 ++++++-- .../model/SemanticAttributeMissing.java | 9 ++++++-- .../model/SemanticAttributeWrongValue.java | 9 ++++++-- .../SolidAllPolygonsWrongOrientation.java | 9 ++++++-- .../SolidMultipleConnectedComponents.java | 9 ++++++-- .../quality/model/SolidNonManifoldEdge.java | 9 ++++++-- .../quality/model/SolidNonManifoldVertex.java | 9 ++++++-- .../ade/quality/model/SolidNotClosed.java | 9 ++++++-- .../model/SolidPolygonWrongOrientation.java | 9 ++++++-- .../quality/model/SolidSelfIntersection.java | 9 ++++++-- .../quality/model/SolidTooFewPolygons.java | 9 ++++++-- .../ade/quality/model/Statistics.java | 9 ++++++-- .../ade/quality/model/Validation.java | 21 +++++++++++++++++++ .../ade/quality/model/ValidationPlan.java | 9 ++++++-- .../ade/quality/model/ValidationProperty.java | 9 ++++++-- .../ade/quality/model/ValidationResult.java | 9 ++++++-- .../model/ValidationResultProperty.java | 9 ++++++-- .../ValidationResultPropertyElement.java | 9 ++++++-- .../quality/walker/FeatureFunctionWalker.java | 9 ++++++-- .../ade/quality/walker/FeatureWalker.java | 9 ++++++-- .../ade/quality/walker/GMLFunctionWalker.java | 9 ++++++-- .../ade/quality/walker/GMLWalker.java | 9 ++++++-- 55 files changed, 609 insertions(+), 78 deletions(-) diff --git a/src/main/java/org/citygml4j/ade/quality/QualityADEContext.java b/src/main/java/org/citygml4j/ade/quality/QualityADEContext.java index eaa796c..2822038 100644 --- a/src/main/java/org/citygml4j/ade/quality/QualityADEContext.java +++ b/src/main/java/org/citygml4j/ade/quality/QualityADEContext.java @@ -1,3 +1,24 @@ +/* + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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.ade.quality; import org.citygml4j.ade.quality.bind.QualityADEMarshaller; diff --git a/src/main/java/org/citygml4j/ade/quality/QualityADEModule.java b/src/main/java/org/citygml4j/ade/quality/QualityADEModule.java index 2a127ee..dc8ddbb 100644 --- a/src/main/java/org/citygml4j/ade/quality/QualityADEModule.java +++ b/src/main/java/org/citygml4j/ade/quality/QualityADEModule.java @@ -1,3 +1,24 @@ +/* + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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.ade.quality; import org.citygml4j.ade.quality.model.Validation; diff --git a/src/main/java/org/citygml4j/ade/quality/bind/QualityADEMarshaller.java b/src/main/java/org/citygml4j/ade/quality/bind/QualityADEMarshaller.java index 5fedfe8..d07804a 100644 --- a/src/main/java/org/citygml4j/ade/quality/bind/QualityADEMarshaller.java +++ b/src/main/java/org/citygml4j/ade/quality/bind/QualityADEMarshaller.java @@ -1,3 +1,24 @@ +/* + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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.ade.quality.bind; import de.hft.stuttgart.qualityade._0_1_4.ErrorType; diff --git a/src/main/java/org/citygml4j/ade/quality/bind/QualityADEUnmarshaller.java b/src/main/java/org/citygml4j/ade/quality/bind/QualityADEUnmarshaller.java index 21e73cb..efe5932 100644 --- a/src/main/java/org/citygml4j/ade/quality/bind/QualityADEUnmarshaller.java +++ b/src/main/java/org/citygml4j/ade/quality/bind/QualityADEUnmarshaller.java @@ -1,3 +1,24 @@ +/* + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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.ade.quality.bind; import de.hft.stuttgart.qualityade._0_1_4.ErrorType; diff --git a/src/main/java/org/citygml4j/ade/quality/model/AbstractDataType.java b/src/main/java/org/citygml4j/ade/quality/model/AbstractDataType.java index 4bbe370..e934663 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/AbstractDataType.java +++ b/src/main/java/org/citygml4j/ade/quality/model/AbstractDataType.java @@ -1,3 +1,24 @@ +/* + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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.ade.quality.model; import org.citygml4j.model.citygml.ade.binding.ADEModelObject; diff --git a/src/main/java/org/citygml4j/ade/quality/model/AbstractError.java b/src/main/java/org/citygml4j/ade/quality/model/AbstractError.java index 7829b87..143281e 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/AbstractError.java +++ b/src/main/java/org/citygml4j/ade/quality/model/AbstractError.java @@ -1,3 +1,24 @@ +/* + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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.ade.quality.model; public abstract class AbstractError extends AbstractDataType { diff --git a/src/main/java/org/citygml4j/ade/quality/model/AbstractGeometryError.java b/src/main/java/org/citygml4j/ade/quality/model/AbstractGeometryError.java index 4a3bdc7..c3538db 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/AbstractGeometryError.java +++ b/src/main/java/org/citygml4j/ade/quality/model/AbstractGeometryError.java @@ -1,3 +1,24 @@ +/* + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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.ade.quality.model; public abstract class AbstractGeometryError extends AbstractError { diff --git a/src/main/java/org/citygml4j/ade/quality/model/AbstractPolygonError.java b/src/main/java/org/citygml4j/ade/quality/model/AbstractPolygonError.java index d17b0a5..75b73cf 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/AbstractPolygonError.java +++ b/src/main/java/org/citygml4j/ade/quality/model/AbstractPolygonError.java @@ -1,3 +1,24 @@ +/* + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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.ade.quality.model; import org.citygml4j.builder.copy.CopyBuilder; diff --git a/src/main/java/org/citygml4j/ade/quality/model/AbstractRingError.java b/src/main/java/org/citygml4j/ade/quality/model/AbstractRingError.java index 4d2fba2..961388b 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/AbstractRingError.java +++ b/src/main/java/org/citygml4j/ade/quality/model/AbstractRingError.java @@ -1,3 +1,24 @@ +/* + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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.ade.quality.model; import org.citygml4j.builder.copy.CopyBuilder; diff --git a/src/main/java/org/citygml4j/ade/quality/model/AbstractSemanticError.java b/src/main/java/org/citygml4j/ade/quality/model/AbstractSemanticError.java index ff53e21..b86a232 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/AbstractSemanticError.java +++ b/src/main/java/org/citygml4j/ade/quality/model/AbstractSemanticError.java @@ -1,3 +1,24 @@ +/* + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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.ade.quality.model; public abstract class AbstractSemanticError extends AbstractError { diff --git a/src/main/java/org/citygml4j/ade/quality/model/AbstractSolidError.java b/src/main/java/org/citygml4j/ade/quality/model/AbstractSolidError.java index 2664ecc..12c0713 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/AbstractSolidError.java +++ b/src/main/java/org/citygml4j/ade/quality/model/AbstractSolidError.java @@ -1,3 +1,24 @@ +/* + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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.ade.quality.model; import org.citygml4j.builder.copy.CopyBuilder; diff --git a/src/main/java/org/citygml4j/ade/quality/model/Edge.java b/src/main/java/org/citygml4j/ade/quality/model/Edge.java index fa6ef01..c810d6e 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/Edge.java +++ b/src/main/java/org/citygml4j/ade/quality/model/Edge.java @@ -1,3 +1,24 @@ +/* + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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.ade.quality.model; import org.citygml4j.builder.copy.CopyBuilder; diff --git a/src/main/java/org/citygml4j/ade/quality/model/Error.java b/src/main/java/org/citygml4j/ade/quality/model/Error.java index 75b7f98..e7a5db8 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/Error.java +++ b/src/main/java/org/citygml4j/ade/quality/model/Error.java @@ -1,3 +1,24 @@ +/* + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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.ade.quality.model; import org.citygml4j.builder.copy.CopyBuilder; diff --git a/src/main/java/org/citygml4j/ade/quality/model/ErrorType.java b/src/main/java/org/citygml4j/ade/quality/model/ErrorType.java index c77c8d8..65d9de9 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/ErrorType.java +++ b/src/main/java/org/citygml4j/ade/quality/model/ErrorType.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/FeatureStatistics.java b/src/main/java/org/citygml4j/ade/quality/model/FeatureStatistics.java index 18a6ca3..0046346 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/FeatureStatistics.java +++ b/src/main/java/org/citygml4j/ade/quality/model/FeatureStatistics.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/FeatureType.java b/src/main/java/org/citygml4j/ade/quality/model/FeatureType.java index d4dd15a..ebeb3eb 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/FeatureType.java +++ b/src/main/java/org/citygml4j/ade/quality/model/FeatureType.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/Filter.java b/src/main/java/org/citygml4j/ade/quality/model/Filter.java index 14a3b6d..9f1bd51 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/Filter.java +++ b/src/main/java/org/citygml4j/ade/quality/model/Filter.java @@ -1,3 +1,24 @@ +/* + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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.ade.quality.model; import org.citygml4j.builder.copy.CopyBuilder; diff --git a/src/main/java/org/citygml4j/ade/quality/model/Parameter.java b/src/main/java/org/citygml4j/ade/quality/model/Parameter.java index abc8361..d4cbf71 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/Parameter.java +++ b/src/main/java/org/citygml4j/ade/quality/model/Parameter.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/PolygonHoleOutside.java b/src/main/java/org/citygml4j/ade/quality/model/PolygonHoleOutside.java index 9d3bbf3..258696c 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/PolygonHoleOutside.java +++ b/src/main/java/org/citygml4j/ade/quality/model/PolygonHoleOutside.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/PolygonIdList.java b/src/main/java/org/citygml4j/ade/quality/model/PolygonIdList.java index 98e7e91..19182ce 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/PolygonIdList.java +++ b/src/main/java/org/citygml4j/ade/quality/model/PolygonIdList.java @@ -1,3 +1,24 @@ +/* + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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.ade.quality.model; import org.citygml4j.builder.copy.CopyBuilder; diff --git a/src/main/java/org/citygml4j/ade/quality/model/PolygonInnerRingsNested.java b/src/main/java/org/citygml4j/ade/quality/model/PolygonInnerRingsNested.java index bcd1446..6f056e6 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/PolygonInnerRingsNested.java +++ b/src/main/java/org/citygml4j/ade/quality/model/PolygonInnerRingsNested.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/PolygonInteriorDisconnected.java b/src/main/java/org/citygml4j/ade/quality/model/PolygonInteriorDisconnected.java index 055da9e..4d007c3 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/PolygonInteriorDisconnected.java +++ b/src/main/java/org/citygml4j/ade/quality/model/PolygonInteriorDisconnected.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/PolygonIntersectingRings.java b/src/main/java/org/citygml4j/ade/quality/model/PolygonIntersectingRings.java index 0106f84..b4c3643 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/PolygonIntersectingRings.java +++ b/src/main/java/org/citygml4j/ade/quality/model/PolygonIntersectingRings.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/PolygonNonPlanarDistancePlane.java b/src/main/java/org/citygml4j/ade/quality/model/PolygonNonPlanarDistancePlane.java index d51b425..04f3591 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/PolygonNonPlanarDistancePlane.java +++ b/src/main/java/org/citygml4j/ade/quality/model/PolygonNonPlanarDistancePlane.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/PolygonNonPlanarNormalsDeviation.java b/src/main/java/org/citygml4j/ade/quality/model/PolygonNonPlanarNormalsDeviation.java index d5084ee..0651055 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/PolygonNonPlanarNormalsDeviation.java +++ b/src/main/java/org/citygml4j/ade/quality/model/PolygonNonPlanarNormalsDeviation.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/PolygonOrientationRingsSame.java b/src/main/java/org/citygml4j/ade/quality/model/PolygonOrientationRingsSame.java index 62bd962..ac8a47d 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/PolygonOrientationRingsSame.java +++ b/src/main/java/org/citygml4j/ade/quality/model/PolygonOrientationRingsSame.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/Requirement.java b/src/main/java/org/citygml4j/ade/quality/model/Requirement.java index a5131f1..e35cadd 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/Requirement.java +++ b/src/main/java/org/citygml4j/ade/quality/model/Requirement.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/RequirementType.java b/src/main/java/org/citygml4j/ade/quality/model/RequirementType.java index b08c233..50aa4d0 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/RequirementType.java +++ b/src/main/java/org/citygml4j/ade/quality/model/RequirementType.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/ResultType.java b/src/main/java/org/citygml4j/ade/quality/model/ResultType.java index 60d6a60..1637124 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/ResultType.java +++ b/src/main/java/org/citygml4j/ade/quality/model/ResultType.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/RingConsecutivePointsSame.java b/src/main/java/org/citygml4j/ade/quality/model/RingConsecutivePointsSame.java index 082cd99..cde33d9 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/RingConsecutivePointsSame.java +++ b/src/main/java/org/citygml4j/ade/quality/model/RingConsecutivePointsSame.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/RingNotClosed.java b/src/main/java/org/citygml4j/ade/quality/model/RingNotClosed.java index ca57908..0228e79 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/RingNotClosed.java +++ b/src/main/java/org/citygml4j/ade/quality/model/RingNotClosed.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/RingSelfIntersection.java b/src/main/java/org/citygml4j/ade/quality/model/RingSelfIntersection.java index be58e44..e91567d 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/RingSelfIntersection.java +++ b/src/main/java/org/citygml4j/ade/quality/model/RingSelfIntersection.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/RingSelfIntersectionType.java b/src/main/java/org/citygml4j/ade/quality/model/RingSelfIntersectionType.java index 9004e72..7dd9d35 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/RingSelfIntersectionType.java +++ b/src/main/java/org/citygml4j/ade/quality/model/RingSelfIntersectionType.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/RingTooFewPoints.java b/src/main/java/org/citygml4j/ade/quality/model/RingTooFewPoints.java index 7b4dc38..33a02fc 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/RingTooFewPoints.java +++ b/src/main/java/org/citygml4j/ade/quality/model/RingTooFewPoints.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/SemanticAttributeMissing.java b/src/main/java/org/citygml4j/ade/quality/model/SemanticAttributeMissing.java index 3122c4e..293a626 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/SemanticAttributeMissing.java +++ b/src/main/java/org/citygml4j/ade/quality/model/SemanticAttributeMissing.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/SemanticAttributeWrongValue.java b/src/main/java/org/citygml4j/ade/quality/model/SemanticAttributeWrongValue.java index 0578099..e232b42 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/SemanticAttributeWrongValue.java +++ b/src/main/java/org/citygml4j/ade/quality/model/SemanticAttributeWrongValue.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/SolidAllPolygonsWrongOrientation.java b/src/main/java/org/citygml4j/ade/quality/model/SolidAllPolygonsWrongOrientation.java index 569cb87..7df21ad 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/SolidAllPolygonsWrongOrientation.java +++ b/src/main/java/org/citygml4j/ade/quality/model/SolidAllPolygonsWrongOrientation.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/SolidMultipleConnectedComponents.java b/src/main/java/org/citygml4j/ade/quality/model/SolidMultipleConnectedComponents.java index 78f5877..c7fd747 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/SolidMultipleConnectedComponents.java +++ b/src/main/java/org/citygml4j/ade/quality/model/SolidMultipleConnectedComponents.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/SolidNonManifoldEdge.java b/src/main/java/org/citygml4j/ade/quality/model/SolidNonManifoldEdge.java index d6ac3f8..5b7c1d9 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/SolidNonManifoldEdge.java +++ b/src/main/java/org/citygml4j/ade/quality/model/SolidNonManifoldEdge.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/SolidNonManifoldVertex.java b/src/main/java/org/citygml4j/ade/quality/model/SolidNonManifoldVertex.java index 652cbe0..794a602 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/SolidNonManifoldVertex.java +++ b/src/main/java/org/citygml4j/ade/quality/model/SolidNonManifoldVertex.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/SolidNotClosed.java b/src/main/java/org/citygml4j/ade/quality/model/SolidNotClosed.java index 692f5ef..bc2474e 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/SolidNotClosed.java +++ b/src/main/java/org/citygml4j/ade/quality/model/SolidNotClosed.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/SolidPolygonWrongOrientation.java b/src/main/java/org/citygml4j/ade/quality/model/SolidPolygonWrongOrientation.java index 5d7c664..72b8c7a 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/SolidPolygonWrongOrientation.java +++ b/src/main/java/org/citygml4j/ade/quality/model/SolidPolygonWrongOrientation.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/SolidSelfIntersection.java b/src/main/java/org/citygml4j/ade/quality/model/SolidSelfIntersection.java index 381d780..0fecefd 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/SolidSelfIntersection.java +++ b/src/main/java/org/citygml4j/ade/quality/model/SolidSelfIntersection.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/SolidTooFewPolygons.java b/src/main/java/org/citygml4j/ade/quality/model/SolidTooFewPolygons.java index 9aacdcc..6ed54c9 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/SolidTooFewPolygons.java +++ b/src/main/java/org/citygml4j/ade/quality/model/SolidTooFewPolygons.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/Statistics.java b/src/main/java/org/citygml4j/ade/quality/model/Statistics.java index 2cc1b6a..5b788e9 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/Statistics.java +++ b/src/main/java/org/citygml4j/ade/quality/model/Statistics.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/Validation.java b/src/main/java/org/citygml4j/ade/quality/model/Validation.java index a99219a..3aa8bb5 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/Validation.java +++ b/src/main/java/org/citygml4j/ade/quality/model/Validation.java @@ -1,3 +1,24 @@ +/* + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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.ade.quality.model; import org.citygml4j.builder.copy.CopyBuilder; diff --git a/src/main/java/org/citygml4j/ade/quality/model/ValidationPlan.java b/src/main/java/org/citygml4j/ade/quality/model/ValidationPlan.java index e8e4b33..35ede81 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/ValidationPlan.java +++ b/src/main/java/org/citygml4j/ade/quality/model/ValidationPlan.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/ValidationProperty.java b/src/main/java/org/citygml4j/ade/quality/model/ValidationProperty.java index 151a499..0f63fe0 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/ValidationProperty.java +++ b/src/main/java/org/citygml4j/ade/quality/model/ValidationProperty.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/ValidationResult.java b/src/main/java/org/citygml4j/ade/quality/model/ValidationResult.java index 891ecd5..076e9b8 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/ValidationResult.java +++ b/src/main/java/org/citygml4j/ade/quality/model/ValidationResult.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/ValidationResultProperty.java b/src/main/java/org/citygml4j/ade/quality/model/ValidationResultProperty.java index 65778f2..ca27a4a 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/ValidationResultProperty.java +++ b/src/main/java/org/citygml4j/ade/quality/model/ValidationResultProperty.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/model/ValidationResultPropertyElement.java b/src/main/java/org/citygml4j/ade/quality/model/ValidationResultPropertyElement.java index b4e21bd..a49e997 100644 --- a/src/main/java/org/citygml4j/ade/quality/model/ValidationResultPropertyElement.java +++ b/src/main/java/org/citygml4j/ade/quality/model/ValidationResultPropertyElement.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/walker/FeatureFunctionWalker.java b/src/main/java/org/citygml4j/ade/quality/walker/FeatureFunctionWalker.java index 0a10f26..d575bcc 100644 --- a/src/main/java/org/citygml4j/ade/quality/walker/FeatureFunctionWalker.java +++ b/src/main/java/org/citygml4j/ade/quality/walker/FeatureFunctionWalker.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/walker/FeatureWalker.java b/src/main/java/org/citygml4j/ade/quality/walker/FeatureWalker.java index f7eb57c..82e98ee 100644 --- a/src/main/java/org/citygml4j/ade/quality/walker/FeatureWalker.java +++ b/src/main/java/org/citygml4j/ade/quality/walker/FeatureWalker.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/walker/GMLFunctionWalker.java b/src/main/java/org/citygml4j/ade/quality/walker/GMLFunctionWalker.java index 533ab4a..3ce35fc 100644 --- a/src/main/java/org/citygml4j/ade/quality/walker/GMLFunctionWalker.java +++ b/src/main/java/org/citygml4j/ade/quality/walker/GMLFunctionWalker.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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, diff --git a/src/main/java/org/citygml4j/ade/quality/walker/GMLWalker.java b/src/main/java/org/citygml4j/ade/quality/walker/GMLWalker.java index 1f74daf..57068ba 100644 --- a/src/main/java/org/citygml4j/ade/quality/walker/GMLWalker.java +++ b/src/main/java/org/citygml4j/ade/quality/walker/GMLWalker.java @@ -1,11 +1,16 @@ /* - * Copyright 2021 Hochschule für Technik Stuttgart + * quality-ade-citygml4j - Quality ADE module for citygml4j + * https://github.com/citygml4j/quality-ade-citygml4j + * + * quality-ade-citygml4j is part of the citygml4j project + * + * Copyright 2019-2024 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 + * 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,