Changeset 35123 in osm
- Timestamp:
- 2019-09-26T13:14:00+02:00 (5 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 45 added
- 53 deleted
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/OsmInspectorPlugin/.classpath
r34143 r35123 8 8 <classpathentry kind="lib" path="lib/commons-collections-3.2.2.jar"/> 9 9 <classpathentry kind="lib" path="lib/commons-jxpath-1.3.jar"/> 10 <classpathentry kind="lib" path="lib/gt-app-schema-resolver- 19.0.jar">10 <classpathentry kind="lib" path="lib/gt-app-schema-resolver-22.0.jar"> 11 11 <attributes> 12 12 <attribute name="javadoc_location" value="http://docs.geotools.org/stable/javadocs/"/> 13 13 </attributes> 14 14 </classpathentry> 15 <classpathentry kind="lib" path="lib/gt-cql- 19.0.jar">15 <classpathentry kind="lib" path="lib/gt-cql-22.0.jar"> 16 16 <attributes> 17 17 <attribute name="javadoc_location" value="http://docs.geotools.org/stable/javadocs/"/> 18 18 </attributes> 19 19 </classpathentry> 20 <classpathentry kind="lib" path="lib/gt-render- 19.0.jar">20 <classpathentry kind="lib" path="lib/gt-render-22.0.jar"> 21 21 <attributes> 22 22 <attribute name="javadoc_location" value="http://docs.geotools.org/stable/javadocs/"/> 23 23 </attributes> 24 24 </classpathentry> 25 <classpathentry kind="lib" path="lib/gt- referencing3D-19.0.jar">25 <classpathentry kind="lib" path="lib/gt-wfs-ng-22.0.jar"> 26 26 <attributes> 27 27 <attribute name="javadoc_location" value="http://docs.geotools.org/stable/javadocs/"/> 28 28 </attributes> 29 29 </classpathentry> 30 <classpathentry kind="lib" path="lib/gt- wfs-ng-19.0.jar">30 <classpathentry kind="lib" path="lib/gt-xml-22.0.jar"> 31 31 <attributes> 32 32 <attribute name="javadoc_location" value="http://docs.geotools.org/stable/javadocs/"/> 33 33 </attributes> 34 34 </classpathentry> 35 <classpathentry kind="lib" path="lib/gt-x ml-19.0.jar">35 <classpathentry kind="lib" path="lib/gt-xsd-core-22.0.jar"> 36 36 <attributes> 37 37 <attribute name="javadoc_location" value="http://docs.geotools.org/stable/javadocs/"/> 38 38 </attributes> 39 39 </classpathentry> 40 <classpathentry kind="lib" path="lib/gt-xsd-core-19.0.jar"> 41 <attributes> 42 <attribute name="javadoc_location" value="http://docs.geotools.org/stable/javadocs/"/> 43 </attributes> 44 </classpathentry> 45 <classpathentry kind="lib" path="lib/gt-xsd-wfs-19.0.jar"> 40 <classpathentry kind="lib" path="lib/gt-xsd-wfs-22.0.jar"> 46 41 <attributes> 47 42 <attribute name="javadoc_location" value="http://docs.geotools.org/stable/javadocs/"/> -
applications/editors/josm/plugins/OsmInspectorPlugin/src/org/openstreetmap/josm/plugins/osminspector/GeoFabrikWFSClient.java
r34143 r35123 12 12 import org.geotools.data.FeatureSource; 13 13 import org.geotools.factory.CommonFactoryFinder; 14 import org.geotools.factory.GeoTools;15 14 import org.geotools.feature.FeatureCollection; 16 15 import org.geotools.geometry.jts.ReferencedEnvelope; … … 80 79 // Ask WFS service for typeName data constrained by bboxRef 81 80 // 82 FilterFactory2 ff = CommonFactoryFinder.getFilterFactory2(GeoTools 83 .getDefaultHints()); 81 FilterFactory2 ff = CommonFactoryFinder.getFilterFactory2(); 84 82 Filter filterBB = ff.bbox(ff.property(geomName), bboxRef); 85 83 FeatureCollection<SimpleFeatureType, SimpleFeature> features = source -
applications/editors/josm/plugins/OsmInspectorPlugin/src/org/openstreetmap/josm/plugins/osminspector/ImportOsmInspectorBugsAction.java
r33793 r35123 19 19 import org.openstreetmap.josm.tools.Shortcut; 20 20 21 import com.vividsolutions.jts.io.ParseException;21 import org.locationtech.jts.io.ParseException; 22 22 23 23 public class ImportOsmInspectorBugsAction extends JosmAction { -
applications/editors/josm/plugins/OsmInspectorPlugin/src/org/openstreetmap/josm/plugins/osminspector/OsmInspectorLayer.java
r34538 r35123 60 60 import org.openstreetmap.josm.tools.Logging; 61 61 62 import com.vividsolutions.jts.geom.Envelope;63 import com.vividsolutions.jts.geom.Geometry;64 import com.vividsolutions.jts.io.ParseException;62 import org.locationtech.jts.geom.Envelope; 63 import org.locationtech.jts.geom.Geometry; 64 import org.locationtech.jts.io.ParseException; 65 65 66 66 public class OsmInspectorLayer extends Layer { -
applications/editors/josm/plugins/OsmInspectorPlugin/src/org/openstreetmap/josm/plugins/osminspector/gui/OsmInspectorDialog.java
r33793 r35123 32 32 import org.openstreetmap.josm.tools.Shortcut; 33 33 34 import com.vividsolutions.jts.geom.Geometry;35 import com.vividsolutions.jts.geom.Point;34 import org.locationtech.jts.geom.Geometry; 35 import org.locationtech.jts.geom.Point; 36 36 37 37 public class OsmInspectorDialog extends ToggleDialog implements LayerChangeListener, ActiveLayerChangeListener { … … 233 233 @Override 234 234 public void layerAdded(LayerAddEvent e) { 235 if (layer instanceof OsmInspectorLayer) {235 if (layer != null) { 236 236 refreshModel(); 237 237 refreshBugList(); … … 241 241 @Override 242 242 public void layerRemoving(LayerRemoveEvent e) { 243 if (layer instanceof OsmInspectorLayer) {243 if (layer != null) { 244 244 bugsList.clearSelection(); 245 245 model.clear(); -
applications/editors/josm/plugins/geotools/.classpath
r34513 r35123 6 6 <classpathentry exported="true" kind="lib" path="lib/commons-beanutils-1.9.2-noclassprop.jar"/> 7 7 <classpathentry exported="true" kind="lib" path="lib/commons-pool-1.5.4.jar"/> 8 <classpathentry exported="true" kind="lib" path="lib/GeographicLib-Java-1.4 4.jar"/>9 <classpathentry exported="true" kind="lib" path="lib/gt- api-19.2.jar" sourcepath="lib/gt-api-19.2-sources.jar">8 <classpathentry exported="true" kind="lib" path="lib/GeographicLib-Java-1.49.jar"/> 9 <classpathentry exported="true" kind="lib" path="lib/gt-coverage-api-22.0.jar" sourcepath="lib/gt-coverage-api-22.0-sources.jar"> 10 10 <attributes> 11 11 <attribute name="javadoc_location" value="http://docs.geotools.org/stable/javadocs/"/> 12 12 </attributes> 13 13 </classpathentry> 14 <classpathentry exported="true" kind="lib" path="lib/gt-coverage- 19.2.jar" sourcepath="lib/gt-coverage-19.2-sources.jar">14 <classpathentry exported="true" kind="lib" path="lib/gt-coverage-22.0.jar" sourcepath="lib/gt-coverage-22.0-sources.jar"> 15 15 <attributes> 16 16 <attribute name="javadoc_location" value="http://docs.geotools.org/stable/javadocs/"/> 17 17 </attributes> 18 18 </classpathentry> 19 <classpathentry exported="true" kind="lib" path="lib/gt- data-19.2.jar" sourcepath="lib/gt-data-19.2-sources.jar">19 <classpathentry exported="true" kind="lib" path="lib/gt-epsg-extension-22.0.jar" sourcepath="lib/gt-epsg-extension-22.0-sources.jar"> 20 20 <attributes> 21 21 <attribute name="javadoc_location" value="http://docs.geotools.org/stable/javadocs/"/> 22 22 </attributes> 23 23 </classpathentry> 24 <classpathentry exported="true" kind="lib" path="lib/gt-epsg- extension-19.2.jar" sourcepath="lib/gt-epsg-extension-19.2-sources.jar">24 <classpathentry exported="true" kind="lib" path="lib/gt-epsg-hsql-22.0.jar" sourcepath="lib/gt-epsg-hsql-22.0-sources.jar"> 25 25 <attributes> 26 26 <attribute name="javadoc_location" value="http://docs.geotools.org/stable/javadocs/"/> 27 27 </attributes> 28 28 </classpathentry> 29 <classpathentry exported="true" kind="lib" path="lib/gt- epsg-hsql-19.2.jar" sourcepath="lib/gt-epsg-hsql-19.2-sources.jar">29 <classpathentry exported="true" kind="lib" path="lib/gt-geotiff-22.0.jar" sourcepath="lib/gt-geotiff-22.0-sources.jar"> 30 30 <attributes> 31 31 <attribute name="javadoc_location" value="http://docs.geotools.org/stable/javadocs/"/> 32 32 </attributes> 33 33 </classpathentry> 34 <classpathentry exported="true" kind="lib" path="lib/gt- geotiff-19.2.jar" sourcepath="lib/gt-geotiff-19.2-sources.jar">34 <classpathentry exported="true" kind="lib" path="lib/gt-main-22.0.jar" sourcepath="lib/gt-main-22.0-sources.jar"> 35 35 <attributes> 36 36 <attribute name="javadoc_location" value="http://docs.geotools.org/stable/javadocs/"/> 37 37 </attributes> 38 38 </classpathentry> 39 <classpathentry exported="true" kind="lib" path="lib/gt-m ain-19.2.jar" sourcepath="lib/gt-main-19.2-sources.jar">39 <classpathentry exported="true" kind="lib" path="lib/gt-metadata-22.0.jar" sourcepath="lib/gt-metadata-22.0-sources.jar"> 40 40 <attributes> 41 41 <attribute name="javadoc_location" value="http://docs.geotools.org/stable/javadocs/"/> 42 42 </attributes> 43 43 </classpathentry> 44 <classpathentry exported="true" kind="lib" path="lib/gt- metadata-19.2.jar" sourcepath="lib/gt-metadata-19.2-sources.jar">44 <classpathentry exported="true" kind="lib" path="lib/gt-opengis-22.0.jar" sourcepath="lib/gt-opengis-22.0-sources.jar"> 45 45 <attributes> 46 46 <attribute name="javadoc_location" value="http://docs.geotools.org/stable/javadocs/"/> 47 47 </attributes> 48 48 </classpathentry> 49 <classpathentry exported="true" kind="lib" path="lib/gt- opengis-19.2.jar" sourcepath="lib/gt-opengis-19.2-sources.jar">49 <classpathentry exported="true" kind="lib" path="lib/gt-referencing-22.0.jar" sourcepath="lib/gt-referencing-22.0-sources.jar"> 50 50 <attributes> 51 51 <attribute name="javadoc_location" value="http://docs.geotools.org/stable/javadocs/"/> 52 52 </attributes> 53 53 </classpathentry> 54 <classpathentry exported="true" kind="lib" path="lib/gt-referencing-19.2.jar" sourcepath="lib/gt-referencing-19.2-sources.jar"> 55 <attributes> 56 <attribute name="javadoc_location" value="http://docs.geotools.org/stable/javadocs/"/> 57 </attributes> 58 </classpathentry> 59 <classpathentry exported="true" kind="lib" path="lib/gt-shapefile-19.2.jar" sourcepath="lib/gt-shapefile-19.2-sources.jar"> 54 <classpathentry exported="true" kind="lib" path="lib/gt-shapefile-22.0.jar" sourcepath="lib/gt-shapefile-22.0-sources.jar"> 60 55 <attributes> 61 56 <attribute name="javadoc_location" value="http://docs.geotools.org/stable/javadocs/"/> … … 63 58 </classpathentry> 64 59 <classpathentry exported="true" kind="lib" path="lib/hsqldb-2.4.1.jar"/> 65 <classpathentry exported="true" kind="lib" path="lib/imageio-ext-geocore-1. 1.24.jar"/>66 <classpathentry exported="true" kind="lib" path="lib/imageio-ext-streams-1. 1.24.jar"/>67 <classpathentry exported="true" kind="lib" path="lib/imageio-ext-tiff-1. 1.24.jar"/>68 <classpathentry exported="true" kind="lib" path="lib/imageio-ext-utilities-1. 1.24.jar"/>60 <classpathentry exported="true" kind="lib" path="lib/imageio-ext-geocore-1.3.2.jar"/> 61 <classpathentry exported="true" kind="lib" path="lib/imageio-ext-streams-1.3.2.jar"/> 62 <classpathentry exported="true" kind="lib" path="lib/imageio-ext-tiff-1.3.2.jar"/> 63 <classpathentry exported="true" kind="lib" path="lib/imageio-ext-utilities-1.3.2.jar"/> 69 64 <classpathentry exported="true" kind="lib" path="lib/jai_codec-1.1.3.jar"/> 70 65 <classpathentry exported="true" kind="lib" path="lib/jai_core-1.1.3.jar"/> 71 66 <classpathentry exported="true" kind="lib" path="lib/jai_imageio-1.1.jar"/> 72 67 <classpathentry exported="true" kind="lib" path="lib/jdom2-2.0.6.jar"/> 73 <classpathentry exported="true" kind="lib" path="lib/jsr-275-1.0-beta-2.jar"/> 74 <classpathentry exported="true" kind="lib" path="lib/jt-colorconvert-1.0.24.jar"/> 75 <classpathentry exported="true" kind="lib" path="lib/jt-contour-1.4.0.jar"/> 76 <classpathentry exported="true" kind="lib" path="lib/jt-rangelookup-1.4.0.jar"/> 77 <classpathentry exported="true" kind="lib" path="lib/jt-stats-1.0.24.jar"/> 78 <classpathentry exported="true" kind="lib" path="lib/jt-utilities-1.0.24.jar"/> 79 <classpathentry exported="true" kind="lib" path="lib/jt-utils-1.4.0.jar"/> 80 <classpathentry exported="true" kind="lib" path="lib/jt-vectorbin-1.0.24.jar"/> 81 <classpathentry exported="true" kind="lib" path="lib/jt-vectorbinarize-1.4.0.jar"/> 82 <classpathentry exported="true" kind="lib" path="lib/jt-vectorize-1.4.0.jar"/> 83 <classpathentry exported="true" kind="lib" path="lib/jt-warp-1.0.24.jar"/> 84 <classpathentry exported="true" kind="lib" path="lib/jt-zonal-1.0.24.jar"/> 85 <classpathentry exported="true" kind="lib" path="lib/jt-zonalstats-1.4.0.jar"/> 68 <classpathentry exported="true" kind="lib" path="lib/jt-colorconvert-1.1.12.jar"/> 69 <classpathentry exported="true" kind="lib" path="lib/jt-contour-1.5.0.jar"/> 70 <classpathentry exported="true" kind="lib" path="lib/jt-rangelookup-1.5.0.jar"/> 71 <classpathentry exported="true" kind="lib" path="lib/jt-stats-1.1.12.jar"/> 72 <classpathentry exported="true" kind="lib" path="lib/jt-utilities-1.1.12.jar"/> 73 <classpathentry exported="true" kind="lib" path="lib/jt-utils-1.5.0.jar"/> 74 <classpathentry exported="true" kind="lib" path="lib/jt-vectorbin-1.1.12.jar"/> 75 <classpathentry exported="true" kind="lib" path="lib/jt-vectorbinarize-1.5.0.jar"/> 76 <classpathentry exported="true" kind="lib" path="lib/jt-vectorize-1.5.0.jar"/> 77 <classpathentry exported="true" kind="lib" path="lib/jt-warp-1.1.12.jar"/> 78 <classpathentry exported="true" kind="lib" path="lib/jt-zonal-1.1.12.jar"/> 79 <classpathentry exported="true" kind="lib" path="lib/jt-zonalstats-1.5.0.jar"/> 86 80 <classpathentry combineaccessrules="false" kind="src" path="/JOSM-jts"/> 87 81 <classpathentry kind="output" path="bin"/> -
applications/editors/josm/plugins/geotools/jar/META-INF/services/org.geotools.referencing.operation.MathTransformProvider
r33930 r35123 14 14 org.geotools.referencing.operation.transform.SimilarityTransformProvider 15 15 org.geotools.referencing.operation.transform.WarpTransform2DProvider 16 org.geotools.referencing.operation.transform.EarthGravitationalModel$Provider 16 17 org.geotools.referencing.operation.projection.EquidistantCylindrical$Provider 17 18 org.geotools.referencing.operation.projection.EquidistantCylindrical$SphericalProvider … … 62 63 org.geotools.referencing.operation.projection.CylindricalEqualArea$BehrmannProvider 63 64 org.geotools.referencing.operation.projection.CylindricalEqualArea$LambertCylindricalEqualAreaProvider 65 org.geotools.referencing.operation.projection.EqualArea$Provider -
applications/editors/josm/plugins/geotools/jar/META-INF/services/org.geotools.util.ConverterFactory
r33930 r35123 1 org.geotools.util.CommonsConverterFactory 2 org.geotools.util.NumericConverterFactory 3 org.geotools.util.PercentageConverterFactory 4 org.geotools.util.GeometryConverterFactory 5 org.geotools.util.GeometryTypeConverterFactory 6 org.geotools.util.TemporalConverterFactory 7 org.geotools.util.BooleanConverterFactory 8 org.geotools.util.ColorConverterFactory 9 org.geotools.util.CollectionConverterFactory 10 org.geotools.util.CharsetConverterFactory 11 org.geotools.util.UuidConverterFactory 12 org.geotools.util.EnumerationConverterFactory 13 org.geotools.util.QNameConverterFactory 14 org.geotools.util.MeasureConverterFactory 1 org.geotools.data.util.CommonsConverterFactory 2 org.geotools.data.util.NumericConverterFactory 3 org.geotools.data.util.PercentageConverterFactory 4 org.geotools.data.util.GeometryConverterFactory 5 org.geotools.data.util.GeometryTypeConverterFactory 6 org.geotools.data.util.TemporalConverterFactory 7 org.geotools.data.util.BooleanConverterFactory 8 org.geotools.data.util.ColorConverterFactory 9 org.geotools.data.util.CollectionConverterFactory 10 org.geotools.data.util.CharsetConverterFactory 11 org.geotools.data.util.UuidConverterFactory 12 org.geotools.data.util.EnumerationConverterFactory 13 org.geotools.data.util.QNameConverterFactory 14 org.geotools.data.util.MeasureConverterFactory 15 15 org.geotools.temporal.TemporalConverterFactory 16 org.geotools.util.NameConverterFactory 16 org.geotools.data.util.NameConverterFactory 17 org.geotools.data.util.ArrayConverterFactory 18 org.geotools.data.util.ComplexAttributeConverterFactory 19 org.geotools.data.util.CRSConverterFactory 20 org.geotools.data.util.InterpolationConverterFactory 21 org.geotools.data.util.LobConverterFactory -
applications/editors/josm/plugins/geotools/jar/META-INF/services/org.opengis.coverage.processing.Operation
r31599 r35123 21 21 org.geotools.coverage.processing.operation.Scale 22 22 org.geotools.coverage.processing.operation.SelectSampleDimension 23 org.geotools.coverage.processing.operation.ShadedRelief 23 24 org.geotools.coverage.processing.operation.SubsampleAverage 24 25 org.geotools.coverage.processing.operation.SubtractConst -
applications/editors/josm/plugins/geotools/jar/META-INF/services/org.opengis.filter.expression.Function
r33335 r35123 1 org.geotools. resources.coverage.FilterFunction_isCoverage1 org.geotools.coverage.util.FilterFunction_isCoverage 2 2 org.geotools.filter.AreaFunction 3 3 org.geotools.filter.LengthFunction … … 8 8 org.geotools.filter.function.StandardDeviationFunction 9 9 org.geotools.filter.function.QuantileFunction 10 org.geotools.filter.function.EqualAreaFunction 10 11 org.geotools.filter.function.UniqueIntervalFunction 11 12 org.geotools.filter.function.Collection_AverageFunction … … 82 83 org.geotools.filter.function.FilterFunction_strStartsWith 83 84 org.geotools.filter.function.FilterFunction_strCapitalize 85 org.geotools.filter.function.FilterFunction_strAbbreviate 86 org.geotools.filter.function.FilterFunction_strDefaultIfBlank 87 org.geotools.filter.function.FilterFunction_strStripAccents 84 88 org.geotools.filter.function.FilterFunction_strEqualsIgnoreCase 85 89 org.geotools.filter.function.FilterFunction_strIndexOf … … 172 176 org.geotools.filter.function.math.ModuloFunction 173 177 org.geotools.filter.function.math.PiFunction 178 org.geotools.filter.function.PropertyExistsFunction 174 179 org.geotools.filter.function.string.ConcatenateFunction 175 180 org.geotools.filter.function.string.URLEncodeFunction 176 181 org.geotools.filter.function.JenksNaturalBreaksFunction 182 org.geotools.filter.function.FilterFunction_listMultiply 177 183 org.geotools.filter.function.FilterFunction_list 184 org.geotools.filter.function.LapplyFunction 185 org.geotools.filter.function.LitemFunction 186 org.geotools.filter.function.SizeFunction 178 187 org.geotools.styling.visitor.RescaleToPixelsFunction 188 org.geotools.filter.function.color.HSLFunction 189 org.geotools.filter.function.color.SaturateFunction 190 org.geotools.filter.function.color.DesaturateFunction 191 org.geotools.filter.function.color.DarkenFunction 192 org.geotools.filter.function.color.LightenFunction 193 org.geotools.filter.function.color.SpinFunction 194 org.geotools.filter.function.color.MixFunction 195 org.geotools.filter.function.color.TintFunction 196 org.geotools.filter.function.color.ShadeFunction 197 org.geotools.filter.function.color.GrayscaleFunction 198 org.geotools.filter.function.color.ConstrastFunction 199 org.geotools.filter.function.BoundedByFunction 200 org.geotools.filter.function.DateDifferenceFunction 201 org.geotools.filter.function.JsonPointerFunction -
applications/editors/josm/plugins/geotools/jar/META-INF/services/org.opengis.referencing.crs.CRSAuthorityFactory
r32813 r35123 1 org.geotools.referencing. factory.epsg.UnnamedExtension2 org.geotools.referencing. factory.epsg.EsriExtension3 org.geotools.referencing.factory.epsg.ThreadedHsqlEpsgFactory 1 org.geotools.referencing.epsg.esri.UnnamedExtension 2 org.geotools.referencing.epsg.esri.EsriExtension 3 org.geotools.referencing.factory.epsg.hsql.ThreadedHsqlEpsgFactory 4 4 # pending review 5 5 # org.geotools.referencing.factory.epsg.HsqlDialectEpsgMediator 6 org.geotools.referencing.factory.epsg.DefaultFactory7 6 org.geotools.referencing.factory.epsg.FactoryUsingWKT 8 7 org.geotools.referencing.factory.epsg.LongitudeFirstFactory -
applications/editors/josm/plugins/geotools/jar/META-INF/services/org.opengis.referencing.cs.CSAuthorityFactory
r32813 r35123 1 org.geotools.referencing.factory.epsg.ThreadedHsqlEpsgFactory 1 org.geotools.referencing.factory.epsg.hsql.ThreadedHsqlEpsgFactory 2 2 # pending review 3 3 # org.geotools.referencing.factory.epsg.HsqlDialectEpsgMediator 4 org.geotools.referencing.factory.epsg.DefaultFactory5 4 org.geotools.referencing.factory.epsg.LongitudeFirstFactory 6 5 org.geotools.referencing.factory.URN_AuthorityFactory -
applications/editors/josm/plugins/geotools/jar/META-INF/services/org.opengis.referencing.datum.DatumAuthorityFactory
r32813 r35123 1 org.geotools.referencing.factory.epsg.ThreadedHsqlEpsgFactory 1 org.geotools.referencing.factory.epsg.hsql.ThreadedHsqlEpsgFactory 2 2 # pending review 3 3 # org.geotools.referencing.factory.epsg.HsqlDialectEpsgMediator 4 org.geotools.referencing.factory.epsg.DefaultFactory5 4 org.geotools.referencing.factory.epsg.LongitudeFirstFactory 6 5 org.geotools.referencing.factory.URN_AuthorityFactory -
applications/editors/josm/plugins/geotools/jar/META-INF/services/org.opengis.referencing.operation.CoordinateOperationAuthorityFactory
r32813 r35123 1 org.geotools.referencing.factory.epsg.ThreadedHsqlEpsgFactory 1 org.geotools.referencing.factory.epsg.hsql.ThreadedHsqlEpsgFactory 2 2 # pending review 3 3 # org.geotools.referencing.factory.epsg.HsqlDialectEpsgMediator 4 4 org.geotools.referencing.factory.epsg.CoordinateOperationFactoryUsingWKT 5 org.geotools.referencing.factory.epsg.DefaultFactory6 5 org.geotools.referencing.factory.epsg.LongitudeFirstFactory 7 6 org.geotools.referencing.factory.URN_AuthorityFactory
Note:
See TracChangeset
for help on using the changeset viewer.