This is an automated email from the ASF dual-hosted git repository. desruisseaux pushed a commit to branch geoapi-4.0 in repository https://gitbox.apache.org/repos/asf/sis.git
The following commit(s) were added to refs/heads/geoapi-4.0 by this push: new 2de34cd1d4 Documentation fixes. 2de34cd1d4 is described below commit 2de34cd1d40a8429e4b58609103ef2500ee38fc0 Author: Martin Desruisseaux <martin.desruisse...@geomatys.com> AuthorDate: Fri Aug 30 16:29:57 2024 +0200 Documentation fixes. --- .../main/org/apache/sis/image/ImageProcessor.java | 2 +- .../org/apache/sis/referencing/datum/DefaultVerticalDatum.java | 10 ++++++---- .../apache/sis/referencing/factory/GeodeticObjectFactory.java | 4 +--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/endorsed/src/org.apache.sis.feature/main/org/apache/sis/image/ImageProcessor.java b/endorsed/src/org.apache.sis.feature/main/org/apache/sis/image/ImageProcessor.java index ab355d2d31..6531270223 100644 --- a/endorsed/src/org.apache.sis.feature/main/org/apache/sis/image/ImageProcessor.java +++ b/endorsed/src/org.apache.sis.feature/main/org/apache/sis/image/ImageProcessor.java @@ -1149,7 +1149,7 @@ public class ImageProcessor implements Cloneable { } /** - * Computes immediately all tiles in the given region of interest, then return an image will those tiles ready. + * Computes immediately all tiles in the given region of interest, then returns an image with those tiles ready. * Computations will use many threads if {@linkplain #getExecutionMode() execution mode} is parallel. * * <h4>Properties used</h4> diff --git a/endorsed/src/org.apache.sis.referencing/main/org/apache/sis/referencing/datum/DefaultVerticalDatum.java b/endorsed/src/org.apache.sis.referencing/main/org/apache/sis/referencing/datum/DefaultVerticalDatum.java index 7240e83da7..c7ac53c321 100644 --- a/endorsed/src/org.apache.sis.referencing/main/org/apache/sis/referencing/datum/DefaultVerticalDatum.java +++ b/endorsed/src/org.apache.sis.referencing/main/org/apache/sis/referencing/datum/DefaultVerticalDatum.java @@ -238,8 +238,11 @@ public class DefaultVerticalDatum extends AbstractDatum implements VerticalDatum * Creates a dynamic reference frame from the given properties. * See super-class constructor for more information. * - * @param properties the properties to be given to the identified object. - * @param epoch the epoch to which the definition of the dynamic reference frame is referenced. + * @param properties the properties to be given to the identified object. + * @param method the realization method (geoid, tidal, <i>etc.</i>), or {@code null} if unspecified. + * @param epoch the epoch to which the definition of the dynamic reference frame is referenced. + * + * @since 2.0 (temporary version number until this branch is released) */ public Dynamic(Map<String,?> properties, RealizationMethod method, Temporal epoch) { super(properties, method); @@ -249,8 +252,7 @@ public class DefaultVerticalDatum extends AbstractDatum implements VerticalDatum /** * Creates a new datum with the same values as the specified datum, which must be dynamic. * - * @param datum the datum to copy. - * @param method the realization method (geoid, tidal, <i>etc.</i>), or {@code null} if unspecified. + * @param datum the datum to copy. * @throws ClassCastException if the given datum is not an instance of {@link DynamicReferenceFrame}. * * @see #castOrCopy(VerticalDatum) diff --git a/endorsed/src/org.apache.sis.referencing/main/org/apache/sis/referencing/factory/GeodeticObjectFactory.java b/endorsed/src/org.apache.sis.referencing/main/org/apache/sis/referencing/factory/GeodeticObjectFactory.java index f5033d0773..620896f25c 100644 --- a/endorsed/src/org.apache.sis.referencing/main/org/apache/sis/referencing/factory/GeodeticObjectFactory.java +++ b/endorsed/src/org.apache.sis.referencing/main/org/apache/sis/referencing/factory/GeodeticObjectFactory.java @@ -69,9 +69,7 @@ import org.opengis.referencing.datum.DynamicReferenceFrame; /** - * Creates {@linkplain org.apache.sis.referencing.crs.AbstractCRS Coordinate Reference System} (CRS) implementations, - * with their {@linkplain org.apache.sis.referencing.cs.AbstractCS Coordinate System} (CS) - * and {@linkplain org.apache.sis.referencing.datum.AbstractDatum Datum} components. + * Creates Coordinate Reference System (CRS) implementations, with their Coordinate System (CS) and Datum components. * This factory serves two purposes: * * <ul>