From bed18afbcb0ad909cd5823a6d4a86cde19199b79 Mon Sep 17 00:00:00 2001 From: Sebastian Baumhekel Date: Thu, 2 Feb 2023 15:02:15 +0100 Subject: [PATCH] unify copyright notice and list authors in separate file as well. --- AUTHORS | 4 ++++ .../sebasbaumh/postgis/CircularString.java | 11 +++------- .../sebasbaumh/postgis/CompoundCurve.java | 12 ++++------ .../io/github/sebasbaumh/postgis/Curve.java | 22 +++++++++++++++++++ .../sebasbaumh/postgis/CurvePolygon.java | 11 +++------- .../sebasbaumh/postgis/DriverWrapper.java | 11 ++++------ .../github/sebasbaumh/postgis/Geometry.java | 11 +++------- .../postgis/GeometryCollection.java | 11 +++------- .../sebasbaumh/postgis/LineBasedGeometry.java | 11 +++------- .../github/sebasbaumh/postgis/LineString.java | 11 +++------- .../github/sebasbaumh/postgis/LinearRing.java | 11 +++------- .../github/sebasbaumh/postgis/MultiCurve.java | 11 +++------- .../sebasbaumh/postgis/MultiGeometry.java | 22 +++++++++++++++++++ .../sebasbaumh/postgis/MultiLineString.java | 11 +++------- .../github/sebasbaumh/postgis/MultiPoint.java | 11 +++------- .../sebasbaumh/postgis/MultiPolygon.java | 11 +++------- .../sebasbaumh/postgis/MultiSurface.java | 22 +++++++++++++++++++ .../io/github/sebasbaumh/postgis/PGbox2d.java | 11 +++------- .../io/github/sebasbaumh/postgis/PGbox3d.java | 12 +++------- .../github/sebasbaumh/postgis/PGboxbase.java | 12 +++------- .../sebasbaumh/postgis/PGgeography.java | 11 +++------- .../github/sebasbaumh/postgis/PGgeometry.java | 11 +++------- .../sebasbaumh/postgis/PGgeometrybase.java | 16 +++++++------- .../io/github/sebasbaumh/postgis/Point.java | 11 +++------- .../io/github/sebasbaumh/postgis/Polygon.java | 11 +++------- .../sebasbaumh/postgis/PolygonBase.java | 22 +++++++++++++++++++ .../sebasbaumh/postgis/PostGisUtil.java | 22 +++++++++++++++++++ .../postgis/binary/BinaryParser.java | 12 +++++----- .../postgis/binary/BinaryValueGetter.java | 22 +++++++++++++++++++ .../postgis/binary/BinaryValueSetter.java | 22 +++++++++++++++++++ .../postgis/binary/BinaryWriter.java | 12 +++++----- .../postgis/binary/StringValueGetter.java | 11 ++++------ .../postgis/binary/StringValueSetter.java | 11 ++++------ .../postgis/binary/ValueGetter.java | 11 ++++------ .../postgis/binary/ValueSetter.java | 11 ++++------ .../github/sebasbaumh/postgis/BoxesTest.java | 11 +++------- .../sebasbaumh/postgis/DatabaseTestBase.java | 22 +++++++++++++++++++ .../sebasbaumh/postgis/DatatypesTest.java | 11 +++------- .../sebasbaumh/postgis/DriverWrapperTest.java | 22 +++++++++++++++++++ .../postgis/EmptyGeometriesTest.java | 11 +++++----- .../sebasbaumh/postgis/GeographyTest.java | 22 +++++++++++++++++++ .../sebasbaumh/postgis/ParserLocalTest.java | 22 +++++++++++++++++++ .../github/sebasbaumh/postgis/ParserTest.java | 11 +++------- .../postgis/PostgisDatabaseTest.java | 22 +++++++++++++++++++ .../sebasbaumh/postgis/SerializationTest.java | 13 ++++------- .../github/sebasbaumh/postgis/ServerTest.java | 11 +++------- .../sebasbaumh/postgis/ServiceTest.java | 22 +++++++++++++++++++ .../sebasbaumh/postgis/TokenizerTest.java | 11 +++++----- .../postgis/VersionPrinterTest.java | 11 ++++------ 49 files changed, 416 insertions(+), 271 deletions(-) create mode 100644 AUTHORS diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..1213059 --- /dev/null +++ b/AUTHORS @@ -0,0 +1,4 @@ +(C) 2004 Paul Ramsey, pramsey@refractions.net +(C) 2005 Markus Schaber, markus.schaber@logix-tt.com +(C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com +(C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com diff --git a/src/main/java/io/github/sebasbaumh/postgis/CircularString.java b/src/main/java/io/github/sebasbaumh/postgis/CircularString.java index 899173c..5493db4 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/CircularString.java +++ b/src/main/java/io/github/sebasbaumh/postgis/CircularString.java @@ -1,13 +1,10 @@ /* - * CircularString.java - * - * PostGIS extension for PostgreSQL JDBC driver - geometry model + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/main/java/io/github/sebasbaumh/postgis/CompoundCurve.java b/src/main/java/io/github/sebasbaumh/postgis/CompoundCurve.java index d158401..f87f2f5 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/CompoundCurve.java +++ b/src/main/java/io/github/sebasbaumh/postgis/CompoundCurve.java @@ -1,13 +1,10 @@ /* - * MultiCurve.java - * - * PostGIS extension for PostgreSQL JDBC driver - geometry model + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,10 +17,9 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ + package io.github.sebasbaumh.postgis; import java.util.ArrayList; diff --git a/src/main/java/io/github/sebasbaumh/postgis/Curve.java b/src/main/java/io/github/sebasbaumh/postgis/Curve.java index 304497b..3efe81f 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/Curve.java +++ b/src/main/java/io/github/sebasbaumh/postgis/Curve.java @@ -1,3 +1,25 @@ +/* + * PostGIS extension for PostgreSQL JDBC driver + * + * (C) 2004 Paul Ramsey, pramsey@refractions.net + * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com + * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + package io.github.sebasbaumh.postgis; import org.eclipse.jdt.annotation.NonNullByDefault; diff --git a/src/main/java/io/github/sebasbaumh/postgis/CurvePolygon.java b/src/main/java/io/github/sebasbaumh/postgis/CurvePolygon.java index 9b19ee4..e91148a 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/CurvePolygon.java +++ b/src/main/java/io/github/sebasbaumh/postgis/CurvePolygon.java @@ -1,13 +1,10 @@ /* - * Polygon.java - * - * PostGIS extension for PostgreSQL JDBC driver - geometry model + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/main/java/io/github/sebasbaumh/postgis/DriverWrapper.java b/src/main/java/io/github/sebasbaumh/postgis/DriverWrapper.java index 9ab4bdb..fb351bb 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/DriverWrapper.java +++ b/src/main/java/io/github/sebasbaumh/postgis/DriverWrapper.java @@ -1,11 +1,10 @@ /* - * DriverWrapper.java - * - * PostGIS extension for PostgreSQL JDBC driver - Wrapper utility class + * PostGIS extension for PostgreSQL JDBC driver * + * (C) 2004 Paul Ramsey, pramsey@refractions.net * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -18,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/main/java/io/github/sebasbaumh/postgis/Geometry.java b/src/main/java/io/github/sebasbaumh/postgis/Geometry.java index 1734fb9..fb6d208 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/Geometry.java +++ b/src/main/java/io/github/sebasbaumh/postgis/Geometry.java @@ -1,13 +1,10 @@ /* - * Geometry.java - * - * PostGIS extension for PostgreSQL JDBC driver - geometry model + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/main/java/io/github/sebasbaumh/postgis/GeometryCollection.java b/src/main/java/io/github/sebasbaumh/postgis/GeometryCollection.java index 1a2da70..a5e6210 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/GeometryCollection.java +++ b/src/main/java/io/github/sebasbaumh/postgis/GeometryCollection.java @@ -1,13 +1,10 @@ /* - * GeometryCollection.java - * - * PostGIS extension for PostgreSQL JDBC driver - geometry model + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/main/java/io/github/sebasbaumh/postgis/LineBasedGeometry.java b/src/main/java/io/github/sebasbaumh/postgis/LineBasedGeometry.java index 79447b5..d5587ae 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/LineBasedGeometry.java +++ b/src/main/java/io/github/sebasbaumh/postgis/LineBasedGeometry.java @@ -1,13 +1,10 @@ /* - * LineBasedGeom.java - * - * PostGIS extension for PostgreSQL JDBC driver - geometry model + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/main/java/io/github/sebasbaumh/postgis/LineString.java b/src/main/java/io/github/sebasbaumh/postgis/LineString.java index b53ef78..7223d32 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/LineString.java +++ b/src/main/java/io/github/sebasbaumh/postgis/LineString.java @@ -1,13 +1,10 @@ /* - * LineString.java - * - * PostGIS extension for PostgreSQL JDBC driver - geometry model + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/main/java/io/github/sebasbaumh/postgis/LinearRing.java b/src/main/java/io/github/sebasbaumh/postgis/LinearRing.java index e72b5b1..1c57599 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/LinearRing.java +++ b/src/main/java/io/github/sebasbaumh/postgis/LinearRing.java @@ -1,13 +1,10 @@ /* - * LinearRing.java - * - * PostGIS extension for PostgreSQL JDBC driver - geometry model + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/main/java/io/github/sebasbaumh/postgis/MultiCurve.java b/src/main/java/io/github/sebasbaumh/postgis/MultiCurve.java index aca9c25..1109f99 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/MultiCurve.java +++ b/src/main/java/io/github/sebasbaumh/postgis/MultiCurve.java @@ -1,13 +1,10 @@ /* - * MultiCurve.java - * - * PostGIS extension for PostgreSQL JDBC driver - geometry model + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/main/java/io/github/sebasbaumh/postgis/MultiGeometry.java b/src/main/java/io/github/sebasbaumh/postgis/MultiGeometry.java index e6900ec..cb48009 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/MultiGeometry.java +++ b/src/main/java/io/github/sebasbaumh/postgis/MultiGeometry.java @@ -1,3 +1,25 @@ +/* + * PostGIS extension for PostgreSQL JDBC driver + * + * (C) 2004 Paul Ramsey, pramsey@refractions.net + * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com + * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + package io.github.sebasbaumh.postgis; import java.util.ArrayList; diff --git a/src/main/java/io/github/sebasbaumh/postgis/MultiLineString.java b/src/main/java/io/github/sebasbaumh/postgis/MultiLineString.java index f1897e3..8e58665 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/MultiLineString.java +++ b/src/main/java/io/github/sebasbaumh/postgis/MultiLineString.java @@ -1,13 +1,10 @@ /* - * MultiLineString.java - * - * PostGIS extension for PostgreSQL JDBC driver - geometry model + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/main/java/io/github/sebasbaumh/postgis/MultiPoint.java b/src/main/java/io/github/sebasbaumh/postgis/MultiPoint.java index c1e7f48..09d92be 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/MultiPoint.java +++ b/src/main/java/io/github/sebasbaumh/postgis/MultiPoint.java @@ -1,13 +1,10 @@ /* - * MultiPoint.java - * - * PostGIS extension for PostgreSQL JDBC driver - geometry model + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/main/java/io/github/sebasbaumh/postgis/MultiPolygon.java b/src/main/java/io/github/sebasbaumh/postgis/MultiPolygon.java index b3bdad6..50060e5 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/MultiPolygon.java +++ b/src/main/java/io/github/sebasbaumh/postgis/MultiPolygon.java @@ -1,13 +1,10 @@ /* - * MultiPolygon.java - * - * PostGIS extension for PostgreSQL JDBC driver - geometry model + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/main/java/io/github/sebasbaumh/postgis/MultiSurface.java b/src/main/java/io/github/sebasbaumh/postgis/MultiSurface.java index e59a43c..99c1846 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/MultiSurface.java +++ b/src/main/java/io/github/sebasbaumh/postgis/MultiSurface.java @@ -1,3 +1,25 @@ +/* + * PostGIS extension for PostgreSQL JDBC driver + * + * (C) 2004 Paul Ramsey, pramsey@refractions.net + * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com + * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + package io.github.sebasbaumh.postgis; import org.eclipse.jdt.annotation.NonNullByDefault; diff --git a/src/main/java/io/github/sebasbaumh/postgis/PGbox2d.java b/src/main/java/io/github/sebasbaumh/postgis/PGbox2d.java index f9864e2..69c74d5 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/PGbox2d.java +++ b/src/main/java/io/github/sebasbaumh/postgis/PGbox2d.java @@ -1,13 +1,10 @@ /* - * PGbox2d.java - * - * PostGIS extension for PostgreSQL JDBC driver - bounding box model + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/main/java/io/github/sebasbaumh/postgis/PGbox3d.java b/src/main/java/io/github/sebasbaumh/postgis/PGbox3d.java index 13e7dab..fb81d09 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/PGbox3d.java +++ b/src/main/java/io/github/sebasbaumh/postgis/PGbox3d.java @@ -1,14 +1,10 @@ /* - * PGbox3d.java - * - * PostGIS extension for PostgreSQL JDBC driver - bounding box model - * + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -21,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/main/java/io/github/sebasbaumh/postgis/PGboxbase.java b/src/main/java/io/github/sebasbaumh/postgis/PGboxbase.java index 8c84591..e2c9c51 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/PGboxbase.java +++ b/src/main/java/io/github/sebasbaumh/postgis/PGboxbase.java @@ -1,14 +1,10 @@ /* - * PGboxbase.java - * - * PostGIS extension for PostgreSQL JDBC driver - bounding box model - * + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -21,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/main/java/io/github/sebasbaumh/postgis/PGgeography.java b/src/main/java/io/github/sebasbaumh/postgis/PGgeography.java index 93d9489..e758b83 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/PGgeography.java +++ b/src/main/java/io/github/sebasbaumh/postgis/PGgeography.java @@ -1,13 +1,10 @@ /* - * PGgeometry.java - * - * PostGIS extension for PostgreSQL JDBC driver - PGobject Geometry Wrapper + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/main/java/io/github/sebasbaumh/postgis/PGgeometry.java b/src/main/java/io/github/sebasbaumh/postgis/PGgeometry.java index 71f6bf2..6666286 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/PGgeometry.java +++ b/src/main/java/io/github/sebasbaumh/postgis/PGgeometry.java @@ -1,13 +1,10 @@ /* - * PGgeometry.java - * - * PostGIS extension for PostgreSQL JDBC driver - PGobject Geometry Wrapper + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/main/java/io/github/sebasbaumh/postgis/PGgeometrybase.java b/src/main/java/io/github/sebasbaumh/postgis/PGgeometrybase.java index 3fb6b9a..1af2e2c 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/PGgeometrybase.java +++ b/src/main/java/io/github/sebasbaumh/postgis/PGgeometrybase.java @@ -1,4 +1,11 @@ /* + * PostGIS extension for PostgreSQL JDBC driver + * + * (C) 2004 Paul Ramsey, pramsey@refractions.net + * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com + * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com + * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either @@ -10,14 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * - * (C) 2004 Paul Ramsey, pramsey@refractions.net - * - * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * - * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/main/java/io/github/sebasbaumh/postgis/Point.java b/src/main/java/io/github/sebasbaumh/postgis/Point.java index c4ac667..68cfce2 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/Point.java +++ b/src/main/java/io/github/sebasbaumh/postgis/Point.java @@ -1,13 +1,10 @@ /* - * Point.java - * - * PostGIS extension for PostgreSQL JDBC driver - geometry model + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/main/java/io/github/sebasbaumh/postgis/Polygon.java b/src/main/java/io/github/sebasbaumh/postgis/Polygon.java index ed041ea..bb78f3f 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/Polygon.java +++ b/src/main/java/io/github/sebasbaumh/postgis/Polygon.java @@ -1,13 +1,10 @@ /* - * Polygon.java - * - * PostGIS extension for PostgreSQL JDBC driver - geometry model + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/main/java/io/github/sebasbaumh/postgis/PolygonBase.java b/src/main/java/io/github/sebasbaumh/postgis/PolygonBase.java index 9315f89..ea5ba60 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/PolygonBase.java +++ b/src/main/java/io/github/sebasbaumh/postgis/PolygonBase.java @@ -1,3 +1,25 @@ +/* + * PostGIS extension for PostgreSQL JDBC driver + * + * (C) 2004 Paul Ramsey, pramsey@refractions.net + * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com + * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + package io.github.sebasbaumh.postgis; import java.lang.reflect.InvocationTargetException; diff --git a/src/main/java/io/github/sebasbaumh/postgis/PostGisUtil.java b/src/main/java/io/github/sebasbaumh/postgis/PostGisUtil.java index 1c0e0ea..58f952a 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/PostGisUtil.java +++ b/src/main/java/io/github/sebasbaumh/postgis/PostGisUtil.java @@ -1,3 +1,25 @@ +/* + * PostGIS extension for PostgreSQL JDBC driver + * + * (C) 2004 Paul Ramsey, pramsey@refractions.net + * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com + * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + package io.github.sebasbaumh.postgis; import java.util.ArrayList; diff --git a/src/main/java/io/github/sebasbaumh/postgis/binary/BinaryParser.java b/src/main/java/io/github/sebasbaumh/postgis/binary/BinaryParser.java index 91ac8fe..9e174df 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/binary/BinaryParser.java +++ b/src/main/java/io/github/sebasbaumh/postgis/binary/BinaryParser.java @@ -1,11 +1,10 @@ /* - * BinaryParser.java - * - * PostGIS extension for PostgreSQL JDBC driver - Binary Parser + * PostGIS extension for PostgreSQL JDBC driver * + * (C) 2004 Paul Ramsey, pramsey@refractions.net * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -18,10 +17,9 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ + package io.github.sebasbaumh.postgis.binary; import java.util.ArrayList; diff --git a/src/main/java/io/github/sebasbaumh/postgis/binary/BinaryValueGetter.java b/src/main/java/io/github/sebasbaumh/postgis/binary/BinaryValueGetter.java index e1f5d84..ae3459c 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/binary/BinaryValueGetter.java +++ b/src/main/java/io/github/sebasbaumh/postgis/binary/BinaryValueGetter.java @@ -1,3 +1,25 @@ +/* + * PostGIS extension for PostgreSQL JDBC driver + * + * (C) 2004 Paul Ramsey, pramsey@refractions.net + * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com + * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + package io.github.sebasbaumh.postgis.binary; /** diff --git a/src/main/java/io/github/sebasbaumh/postgis/binary/BinaryValueSetter.java b/src/main/java/io/github/sebasbaumh/postgis/binary/BinaryValueSetter.java index b93fbc0..0933703 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/binary/BinaryValueSetter.java +++ b/src/main/java/io/github/sebasbaumh/postgis/binary/BinaryValueSetter.java @@ -1,3 +1,25 @@ +/* + * PostGIS extension for PostgreSQL JDBC driver + * + * (C) 2004 Paul Ramsey, pramsey@refractions.net + * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com + * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + package io.github.sebasbaumh.postgis.binary; import java.io.ByteArrayOutputStream; diff --git a/src/main/java/io/github/sebasbaumh/postgis/binary/BinaryWriter.java b/src/main/java/io/github/sebasbaumh/postgis/binary/BinaryWriter.java index 35002c8..a35c2ad 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/binary/BinaryWriter.java +++ b/src/main/java/io/github/sebasbaumh/postgis/binary/BinaryWriter.java @@ -1,11 +1,10 @@ /* - * BinaryWriter.java - * - * PostGIS extension for PostgreSQL JDBC driver - Binary Writer + * PostGIS extension for PostgreSQL JDBC driver * + * (C) 2004 Paul Ramsey, pramsey@refractions.net * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -18,10 +17,9 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ + package io.github.sebasbaumh.postgis.binary; import java.util.ArrayList; diff --git a/src/main/java/io/github/sebasbaumh/postgis/binary/StringValueGetter.java b/src/main/java/io/github/sebasbaumh/postgis/binary/StringValueGetter.java index 549eace..a57edba 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/binary/StringValueGetter.java +++ b/src/main/java/io/github/sebasbaumh/postgis/binary/StringValueGetter.java @@ -1,11 +1,10 @@ /* - * ValueGetter.java - * - * PostGIS extension for PostgreSQL JDBC driver - Binary Parser + * PostGIS extension for PostgreSQL JDBC driver * + * (C) 2004 Paul Ramsey, pramsey@refractions.net * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -18,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis.binary; diff --git a/src/main/java/io/github/sebasbaumh/postgis/binary/StringValueSetter.java b/src/main/java/io/github/sebasbaumh/postgis/binary/StringValueSetter.java index 27d9ebb..e9bf8bd 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/binary/StringValueSetter.java +++ b/src/main/java/io/github/sebasbaumh/postgis/binary/StringValueSetter.java @@ -1,11 +1,10 @@ /* - * ValueSetter.java - * - * PostGIS extension for PostgreSQL JDBC driver - Binary Parser + * PostGIS extension for PostgreSQL JDBC driver * + * (C) 2004 Paul Ramsey, pramsey@refractions.net * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -18,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis.binary; diff --git a/src/main/java/io/github/sebasbaumh/postgis/binary/ValueGetter.java b/src/main/java/io/github/sebasbaumh/postgis/binary/ValueGetter.java index 405fff3..71e9344 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/binary/ValueGetter.java +++ b/src/main/java/io/github/sebasbaumh/postgis/binary/ValueGetter.java @@ -1,11 +1,10 @@ /* - * ValueGetter.java - * - * PostGIS extension for PostgreSQL JDBC driver - Binary Parser + * PostGIS extension for PostgreSQL JDBC driver * + * (C) 2004 Paul Ramsey, pramsey@refractions.net * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -18,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis.binary; diff --git a/src/main/java/io/github/sebasbaumh/postgis/binary/ValueSetter.java b/src/main/java/io/github/sebasbaumh/postgis/binary/ValueSetter.java index f5404ab..963dd73 100644 --- a/src/main/java/io/github/sebasbaumh/postgis/binary/ValueSetter.java +++ b/src/main/java/io/github/sebasbaumh/postgis/binary/ValueSetter.java @@ -1,11 +1,10 @@ /* - * ValueSetter.java - * - * PostGIS extension for PostgreSQL JDBC driver - Binary Parser + * PostGIS extension for PostgreSQL JDBC driver * + * (C) 2004 Paul Ramsey, pramsey@refractions.net * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -18,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis.binary; diff --git a/src/test/java/io/github/sebasbaumh/postgis/BoxesTest.java b/src/test/java/io/github/sebasbaumh/postgis/BoxesTest.java index 8ded77e..d817556 100644 --- a/src/test/java/io/github/sebasbaumh/postgis/BoxesTest.java +++ b/src/test/java/io/github/sebasbaumh/postgis/BoxesTest.java @@ -1,13 +1,10 @@ /* - * BoxesTest.java - * - * PostGIS extension for PostgreSQL JDBC driver - example and test classes + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/test/java/io/github/sebasbaumh/postgis/DatabaseTestBase.java b/src/test/java/io/github/sebasbaumh/postgis/DatabaseTestBase.java index 48203fd..5f7ba04 100644 --- a/src/test/java/io/github/sebasbaumh/postgis/DatabaseTestBase.java +++ b/src/test/java/io/github/sebasbaumh/postgis/DatabaseTestBase.java @@ -1,3 +1,25 @@ +/* + * PostGIS extension for PostgreSQL JDBC driver + * + * (C) 2004 Paul Ramsey, pramsey@refractions.net + * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com + * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + package io.github.sebasbaumh.postgis; import java.beans.PropertyVetoException; diff --git a/src/test/java/io/github/sebasbaumh/postgis/DatatypesTest.java b/src/test/java/io/github/sebasbaumh/postgis/DatatypesTest.java index d70c47d..eb601ce 100644 --- a/src/test/java/io/github/sebasbaumh/postgis/DatatypesTest.java +++ b/src/test/java/io/github/sebasbaumh/postgis/DatatypesTest.java @@ -1,13 +1,10 @@ /* - * DatatypesTest.java - * - * PostGIS extension for PostgreSQL JDBC driver - example and test classes + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/test/java/io/github/sebasbaumh/postgis/DriverWrapperTest.java b/src/test/java/io/github/sebasbaumh/postgis/DriverWrapperTest.java index e48d8c2..1ebae46 100644 --- a/src/test/java/io/github/sebasbaumh/postgis/DriverWrapperTest.java +++ b/src/test/java/io/github/sebasbaumh/postgis/DriverWrapperTest.java @@ -1,3 +1,25 @@ +/* + * PostGIS extension for PostgreSQL JDBC driver + * + * (C) 2004 Paul Ramsey, pramsey@refractions.net + * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com + * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + package io.github.sebasbaumh.postgis; import java.sql.Connection; diff --git a/src/test/java/io/github/sebasbaumh/postgis/EmptyGeometriesTest.java b/src/test/java/io/github/sebasbaumh/postgis/EmptyGeometriesTest.java index f3c45cf..a3810fa 100644 --- a/src/test/java/io/github/sebasbaumh/postgis/EmptyGeometriesTest.java +++ b/src/test/java/io/github/sebasbaumh/postgis/EmptyGeometriesTest.java @@ -1,9 +1,10 @@ /* - * EmptyGeometriesTest.java - * - * PostGIS extension for PostgreSQL JDBC driver - example and test classes + * PostGIS extension for PostgreSQL JDBC driver * + * (C) 2004 Paul Ramsey, pramsey@refractions.net + * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -16,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/test/java/io/github/sebasbaumh/postgis/GeographyTest.java b/src/test/java/io/github/sebasbaumh/postgis/GeographyTest.java index 9f03e8f..a71cd81 100644 --- a/src/test/java/io/github/sebasbaumh/postgis/GeographyTest.java +++ b/src/test/java/io/github/sebasbaumh/postgis/GeographyTest.java @@ -1,3 +1,25 @@ +/* + * PostGIS extension for PostgreSQL JDBC driver + * + * (C) 2004 Paul Ramsey, pramsey@refractions.net + * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com + * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + package io.github.sebasbaumh.postgis; import java.sql.SQLException; diff --git a/src/test/java/io/github/sebasbaumh/postgis/ParserLocalTest.java b/src/test/java/io/github/sebasbaumh/postgis/ParserLocalTest.java index 44518a6..27a9b99 100644 --- a/src/test/java/io/github/sebasbaumh/postgis/ParserLocalTest.java +++ b/src/test/java/io/github/sebasbaumh/postgis/ParserLocalTest.java @@ -1,3 +1,25 @@ +/* + * PostGIS extension for PostgreSQL JDBC driver + * + * (C) 2004 Paul Ramsey, pramsey@refractions.net + * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com + * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + package io.github.sebasbaumh.postgis; import java.sql.SQLException; diff --git a/src/test/java/io/github/sebasbaumh/postgis/ParserTest.java b/src/test/java/io/github/sebasbaumh/postgis/ParserTest.java index 136dcc7..024340b 100644 --- a/src/test/java/io/github/sebasbaumh/postgis/ParserTest.java +++ b/src/test/java/io/github/sebasbaumh/postgis/ParserTest.java @@ -1,13 +1,10 @@ /* - * ParserTest.java - * - * PostGIS extension for PostgreSQL JDBC driver - example and test classes + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/test/java/io/github/sebasbaumh/postgis/PostgisDatabaseTest.java b/src/test/java/io/github/sebasbaumh/postgis/PostgisDatabaseTest.java index 8f7c1f5..a50c3a7 100644 --- a/src/test/java/io/github/sebasbaumh/postgis/PostgisDatabaseTest.java +++ b/src/test/java/io/github/sebasbaumh/postgis/PostgisDatabaseTest.java @@ -1,3 +1,25 @@ +/* + * PostGIS extension for PostgreSQL JDBC driver + * + * (C) 2004 Paul Ramsey, pramsey@refractions.net + * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com + * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + package io.github.sebasbaumh.postgis; import java.sql.Connection; diff --git a/src/test/java/io/github/sebasbaumh/postgis/SerializationTest.java b/src/test/java/io/github/sebasbaumh/postgis/SerializationTest.java index 1350e37..b0957f3 100644 --- a/src/test/java/io/github/sebasbaumh/postgis/SerializationTest.java +++ b/src/test/java/io/github/sebasbaumh/postgis/SerializationTest.java @@ -1,13 +1,10 @@ /* - * ServerTest.java - * - * PostGIS extension for PostgreSQL JDBC driver - example and test classes + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * - * (C) 2017 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/test/java/io/github/sebasbaumh/postgis/ServerTest.java b/src/test/java/io/github/sebasbaumh/postgis/ServerTest.java index 129d0cd..c6a48e4 100644 --- a/src/test/java/io/github/sebasbaumh/postgis/ServerTest.java +++ b/src/test/java/io/github/sebasbaumh/postgis/ServerTest.java @@ -1,13 +1,10 @@ /* - * ServerTest.java - * - * PostGIS extension for PostgreSQL JDBC driver - example and test classes + * PostGIS extension for PostgreSQL JDBC driver * * (C) 2004 Paul Ramsey, pramsey@refractions.net - * * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -20,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/test/java/io/github/sebasbaumh/postgis/ServiceTest.java b/src/test/java/io/github/sebasbaumh/postgis/ServiceTest.java index 7a76973..3e133a9 100644 --- a/src/test/java/io/github/sebasbaumh/postgis/ServiceTest.java +++ b/src/test/java/io/github/sebasbaumh/postgis/ServiceTest.java @@ -1,3 +1,25 @@ +/* + * PostGIS extension for PostgreSQL JDBC driver + * + * (C) 2004 Paul Ramsey, pramsey@refractions.net + * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com + * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 2.1 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library. If not, see . + */ + package io.github.sebasbaumh.postgis; import java.sql.Driver; diff --git a/src/test/java/io/github/sebasbaumh/postgis/TokenizerTest.java b/src/test/java/io/github/sebasbaumh/postgis/TokenizerTest.java index 3b1c035..cea4a70 100644 --- a/src/test/java/io/github/sebasbaumh/postgis/TokenizerTest.java +++ b/src/test/java/io/github/sebasbaumh/postgis/TokenizerTest.java @@ -1,9 +1,10 @@ /* - * TokenizerTest.java - * - * PostGIS extension for PostgreSQL JDBC driver - example and test classes + * PostGIS extension for PostgreSQL JDBC driver * + * (C) 2004 Paul Ramsey, pramsey@refractions.net + * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -16,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis; diff --git a/src/test/java/io/github/sebasbaumh/postgis/VersionPrinterTest.java b/src/test/java/io/github/sebasbaumh/postgis/VersionPrinterTest.java index 658a639..14879aa 100644 --- a/src/test/java/io/github/sebasbaumh/postgis/VersionPrinterTest.java +++ b/src/test/java/io/github/sebasbaumh/postgis/VersionPrinterTest.java @@ -1,11 +1,10 @@ /* - * VersionPrinter.java - * - * PostGIS extension for PostgreSQL JDBC driver - example and test classes + * PostGIS extension for PostgreSQL JDBC driver * + * (C) 2004 Paul Ramsey, pramsey@refractions.net * (C) 2005 Markus Schaber, markus.schaber@logix-tt.com - * * (C) 2015 Phillip Ross, phillip.w.g.ross@gmail.com + * (C) 2018-2023 Sebastian Baumhekel, sebastian.baumhekel@gmail.com * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -18,9 +17,7 @@ * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - * + * License along with this library. If not, see . */ package io.github.sebasbaumh.postgis;