This is an automated email from the ASF dual-hosted git repository.
asf-gitbox-commits pushed a change to branch geoapi-4.0
in repository https://gitbox.apache.org/repos/asf/sis.git
from 57b466cbb6 feat(Geometry): add WKT encoding
new bf67cae3fd feat(Shapefile): add new types of store event
new 0fdcad59b7 feat(Shapefile): send events on featuretype on features
changes
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.../main/module-info.java | 3 +
.../storage/internal/shared/AggregationEvent.java | 61 ++++
.../sis/storage/internal/shared/ContentEvent.java} | 25 +-
.../internal/shared/FeatureSetContentEvent.java | 96 ++++++
.../internal/shared/FeatureSetModelEvent.java | 97 ++++++
.../sis/storage/internal/shared/ModelEvent.java} | 18 +-
.../sis/storage/internal/shared/StorageEvent.java} | 23 +-
.../internal/shared/TilingContentEvent.java | 88 +++++
.../storage/internal/shared/TilingModelEvent.java | 97 ++++++
.../sis/storage/shapefile/ShapefileStore.java | 84 ++++-
.../shapefile/ShapefileStoreEventsTest.java | 373 +++++++++++++++++++++
.../sis/storage/shapefile/ShapefileStoreTest.java | 8 +-
12 files changed, 928 insertions(+), 45 deletions(-)
create mode 100644
incubator/src/org.apache.sis.storage.shapefile/main/org/apache/sis/storage/internal/shared/AggregationEvent.java
copy
incubator/src/{org.apache.sis.geometry/main/org/apache/sis/geometries/internal/shared/DefaultLineString.java
=>
org.apache.sis.storage.shapefile/main/org/apache/sis/storage/internal/shared/ContentEvent.java}
(62%)
create mode 100644
incubator/src/org.apache.sis.storage.shapefile/main/org/apache/sis/storage/internal/shared/FeatureSetContentEvent.java
create mode 100644
incubator/src/org.apache.sis.storage.shapefile/main/org/apache/sis/storage/internal/shared/FeatureSetModelEvent.java
copy
incubator/src/{org.apache.sis.geometry/test/org/apache/sis/maths/ArrayNfTest.java
=>
org.apache.sis.storage.shapefile/main/org/apache/sis/storage/internal/shared/ModelEvent.java}
(66%)
copy
incubator/src/{org.apache.sis.referencing.dggs/main/org/apache/sis/referencing/dggs/PolyhedronParameters.java
=>
org.apache.sis.storage.shapefile/main/org/apache/sis/storage/internal/shared/StorageEvent.java}
(66%)
create mode 100644
incubator/src/org.apache.sis.storage.shapefile/main/org/apache/sis/storage/internal/shared/TilingContentEvent.java
create mode 100644
incubator/src/org.apache.sis.storage.shapefile/main/org/apache/sis/storage/internal/shared/TilingModelEvent.java
create mode 100644
incubator/src/org.apache.sis.storage.shapefile/test/org/apache/sis/storage/shapefile/ShapefileStoreEventsTest.java