Modified: sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/j2d/ParameterizedAffine.java
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/j2d/ParameterizedAffine.java?rev=1779706&r1=1779705&r2=1779706&view=diff
==============================================================================
--- sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/j2d/ParameterizedAffine.java [UTF-8] (original)
+++ sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/j2d/ParameterizedAffine.java [UTF-8] Sat Jan 21 09:00:40 2017
@@ -69,10 +69,10 @@ public final class ParameterizedAffine e
/**
* Creates a new transform from the given affine and parameters.
*
- * @param transform The affine transform to copy.
- * @param parameters The parameters to remember. It is caller's responsibility to provide an immutable instance.
- * @param isDefinitive {@code true} if {@code parameters} provides an accurate description of {@code transform}, or
- * {@code false} if the transform may be different than the one described by {@code parameters}.
+ * @param transform the affine transform to copy.
+ * @param parameters the parameters to remember. It is caller's responsibility to provide an immutable instance.
+ * @param isDefinitive {@code true} if {@code parameters} provides an accurate description of {@code transform}, or
+ * {@code false} if the transform may be different than the one described by {@code parameters}.
*/
public ParameterizedAffine(final AffineTransform transform, final ParameterValueGroup parameters, final boolean isDefinitive) {
super(transform);
@@ -84,8 +84,8 @@ public final class ParameterizedAffine e
* Returns the given transform associated to the same parameters than this {@code ParameterizedAffine},
* if possible. If the given transform is not affine, then it is returned unchanged.
*
- * @param transform The transform to be at least partially described by {@link #parameters}.
- * @return A copy of the given affine transform associated to the parameter of this object,
+ * @param transform the transform to be at least partially described by {@link #parameters}.
+ * @return a copy of the given affine transform associated to the parameter of this object,
* or the given transform unchanged if it was not affine.
*/
public MathTransform newTransform(final MathTransform transform) {
@@ -99,7 +99,7 @@ public final class ParameterizedAffine e
/**
* Returns the parameter descriptors for this map projection.
*
- * @return The map projection parameters if they are an accurate description of this transform,
+ * @return the map projection parameters if they are an accurate description of this transform,
* or the generic affine parameters in case of doubt.
*/
@Override
@@ -135,7 +135,7 @@ public final class ParameterizedAffine e
* The {@code Semaphores.ENCLOSED_IN_OPERATION} flag is SIS internal mechanism for distinguish the two above-cited
* cases.
*
- * @return The map projection parameters if they are an accurate description of this transform,
+ * @return the map projection parameters if they are an accurate description of this transform,
* or the generic affine parameters in case of doubt.
*/
@Override
@@ -149,7 +149,7 @@ public final class ParameterizedAffine e
* Parameters are compared only if the other object is also an instance of {@code ParameterizedAffine}
* in order to preserve the {@link AffineTransform#equals(Object)} symmetricity contract.
*
- * @param object The object to compare with this transform for equality.
+ * @param object the object to compare with this transform for equality.
* @return {@code true} if the given object is of appropriate class (as explained in the
* {@link AffineTransform2D#equals(Object)} documentation) and the coefficients are the same.
*/
Modified: sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/j2d/ShapeUtilities.java
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/j2d/ShapeUtilities.java?rev=1779706&r1=1779705&r2=1779706&view=diff
==============================================================================
--- sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/j2d/ShapeUtilities.java [UTF-8] (original)
+++ sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/j2d/ShapeUtilities.java [UTF-8] Sat Jan 21 09:00:40 2017
@@ -53,15 +53,15 @@ public final class ShapeUtilities extend
* if the intersection does not occur between the ending points {@linkplain Line2D#getP1() P1} and
* {@linkplain Line2D#getP2() P2} of the two line segments, then this method returns {@code null}.
*
- * @param ax1 x value of the first point on the first line.
- * @param ay1 y value of the first point on the first line.
- * @param ax2 x value of the last point on the first line.
- * @param ay2 y value of the last point on the first line.
- * @param bx1 x value of the first point on the second line.
- * @param by1 y value of the first point on the second line.
- * @param bx2 x value of the last point on the second line.
- * @param by2 y value of the last point on the second line.
- * @return The intersection point, or {@code null} if none.
+ * @param ax1 x value of the first point on the first line.
+ * @param ay1 y value of the first point on the first line.
+ * @param ax2 x value of the last point on the first line.
+ * @param ay2 y value of the last point on the first line.
+ * @param bx1 x value of the first point on the second line.
+ * @param by1 y value of the first point on the second line.
+ * @param bx2 x value of the last point on the second line.
+ * @param by2 y value of the last point on the second line.
+ * @return the intersection point, or {@code null} if none.
*
* @see org.apache.sis.geometry.Shapes2D#intersectionPoint(Line2D, Line2D)
*/
@@ -106,13 +106,13 @@ public final class ShapeUtilities extend
* This distance can be obtained with {@code point.distance(result)}.
*
*
- * @param x1 x value of the first point on the line.
- * @param y1 y value of the first point on the line.
- * @param x2 x value of the last point on the line.
- * @param y2 y value of the last point on the line.
- * @param x x value of a point close to the given line.
- * @param y y value of a point close to the given line.
- * @return The nearest point on the given line.
+ * @param x1 x value of the first point on the line.
+ * @param y1 y value of the first point on the line.
+ * @param x2 x value of the last point on the line.
+ * @param y2 y value of the last point on the line.
+ * @param x x value of a point close to the given line.
+ * @param y y value of a point close to the given line.
+ * @return the nearest point on the given line.
*
* @see #colinearPoint(double,double , double,double , double,double , double)
*
@@ -164,14 +164,14 @@ public final class ShapeUtilities extend
* If two result points meet those conditions, then this method returns the point
* which is the closest to {@code line.getP1()}.
*
- * @param x1 x value of the first point on the line.
- * @param y1 y value of the first point on the line.
- * @param x2 x value of the last point on the line.
- * @param y2 y value of the last point on the line.
- * @param x x value of a point close to the given line.
- * @param y y value of a point close to the given line.
- * @param distance The distance between the given point and the point to be returned.
- * @return A point on the given line located at the given distance from the given point.
+ * @param x1 x value of the first point on the line.
+ * @param y1 y value of the first point on the line.
+ * @param x2 x value of the last point on the line.
+ * @param y2 y value of the last point on the line.
+ * @param x x value of a point close to the given line.
+ * @param y y value of a point close to the given line.
+ * @param distance the distance between the given point and the point to be returned.
+ * @return a point on the given line located at the given distance from the given point.
*
* @see #nearestColinearPoint(double,double , double,double , double,double)
*
@@ -251,16 +251,16 @@ public final class ShapeUtilities extend
*
* Note that if {@code P0.y == P2.y}, then both {@code horizontal} values produce the same result.
*
- * @param x1 x value of the starting point.
- * @param y1 y value of the starting point.
- * @param px x value of a passing point.
- * @param py y value of a passing point.
- * @param x2 x value of the ending point.
- * @param y2 y value of the ending point.
- * @param horizontal If {@code true}, the x axis is considered horizontal while computing the
+ * @param x1 x value of the starting point.
+ * @param y1 y value of the starting point.
+ * @param px x value of a passing point.
+ * @param py y value of a passing point.
+ * @param x2 x value of the ending point.
+ * @param y2 y value of the ending point.
+ * @param horizontal if {@code true}, the x axis is considered horizontal while computing the
* {@code y=ax²+bx+c} equation terms. If {@code false}, it is considered parallel to the line
* joining the {@code P0} and {@code P2} points.
- * @return A quadratic curve passing by the given points. The curve starts at {@code P0} and ends at {@code P2}.
+ * @return a quadratic curve passing by the given points. The curve starts at {@code P0} and ends at {@code P2}.
* If two points are too close or if the three points are colinear, then this method returns {@code null}.
*
* @todo This method is used by Geotk (a sandbox for code that may migrate to SIS), but not yet by SIS.
@@ -292,16 +292,16 @@ public final class ShapeUtilities extend
*
* Note that if {@code P0.y == P2.y}, then both {@code horizontal} values produce the same result.
*
- * @param x1 x value of the starting point.
- * @param y1 y value of the starting point.
- * @param px x value of a passing point.
- * @param py y value of a passing point.
- * @param x2 x value of the ending point.
- * @param y2 y value of the ending point.
- * @param horizontal If {@code true}, the x axis is considered horizontal while computing the
+ * @param x1 x value of the starting point.
+ * @param y1 y value of the starting point.
+ * @param px x value of a passing point.
+ * @param py y value of a passing point.
+ * @param x2 x value of the ending point.
+ * @param y2 y value of the ending point.
+ * @param horizontal if {@code true}, the x axis is considered horizontal while computing the
* {@code y = ax²+bx+c} equation terms. If {@code false}, it is considered parallel to the line
* joining the {@code P0} and {@code P2} points.
- * @return The control point of a quadratic curve passing by the given points. The curve starts at {@code (x0,y0)}
+ * @return the control point of a quadratic curve passing by the given points. The curve starts at {@code (x0,y0)}
* and ends at {@code (x2,y2)}. If two points are too close or if the three points are colinear, then this
* method returns {@code null}.
*/
@@ -359,13 +359,13 @@ public final class ShapeUtilities extend
* Returns the center of a circle passing by the 3 given points. The distance between the returned
* point and any of the given points will be constant; it is the circle radius.
*
- * @param x1 x value of the first point.
- * @param y1 y value of the first point.
- * @param x2 x value of the second point.
- * @param y2 y value of the second point.
- * @param x3 x value of the third point.
- * @param y3 y value of the third point.
- * @return The center of a circle passing by the given points.
+ * @param x1 x value of the first point.
+ * @param y1 y value of the first point.
+ * @param x2 x value of the second point.
+ * @param y2 y value of the second point.
+ * @param x3 x value of the third point.
+ * @param y3 y value of the third point.
+ * @return the center of a circle passing by the given points.
*
* @see org.apache.sis.geometry.Shapes2D#circle(Point2D, Point2D, Point2D)
*/
@@ -389,9 +389,9 @@ public final class ShapeUtilities extend
* line or a quadratic curve, then this method replaces it by a {@link Line2D} or
* {@link QuadCurve2D} object respectively.
*
- * @param path The shape to replace by a simpler Java2D construct.
+ * @param path the shape to replace by a simpler Java2D construct.
* This is generally an instance of {@link Path2D}, but not necessarily.
- * @return A simpler Java construct, or {@code path} if no better construct is proposed.
+ * @return a simpler Java construct, or {@code path} if no better construct is proposed.
*/
public static Shape toPrimitive(final Shape path) {
final PathIterator it = path.getPathIterator(null);
Modified: sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AbridgedMolodensky.java
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AbridgedMolodensky.java?rev=1779706&r1=1779705&r2=1779706&view=diff
==============================================================================
--- sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AbridgedMolodensky.java [UTF-8] (original)
+++ sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AbridgedMolodensky.java [UTF-8] Sat Jan 21 09:00:40 2017
@@ -101,9 +101,9 @@ public final class AbridgedMolodensky ex
/**
* Creates an Abridged Molodensky transform from the specified group of parameter values.
*
- * @param factory The factory to use for creating concatenated transforms.
- * @param values The group of parameter values.
- * @return The created Abridged Molodensky transform.
+ * @param factory the factory to use for creating concatenated transforms.
+ * @param values the group of parameter values.
+ * @return the created Abridged Molodensky transform.
* @throws FactoryException if a transform can not be created.
*/
@Override
Modified: sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AbstractLambert.java
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AbstractLambert.java?rev=1779706&r1=1779705&r2=1779706&view=diff
==============================================================================
--- sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AbstractLambert.java [UTF-8] (original)
+++ sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AbstractLambert.java [UTF-8] Sat Jan 21 09:00:40 2017
@@ -72,7 +72,7 @@ class AbstractLambert extends MapProject
/**
* {@inheritDoc}
*
- * @return The map projection created from the given parameter values.
+ * @return the map projection created from the given parameter values.
*/
@Override
protected final NormalizedProjection createProjection(final Parameters parameters) {
Modified: sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AbstractMercator.java
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AbstractMercator.java?rev=1779706&r1=1779705&r2=1779706&view=diff
==============================================================================
--- sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AbstractMercator.java [UTF-8] (original)
+++ sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AbstractMercator.java [UTF-8] Sat Jan 21 09:00:40 2017
@@ -87,7 +87,7 @@ class AbstractMercator extends MapProjec
/**
* {@inheritDoc}
*
- * @return The map projection created from the given parameter values.
+ * @return the map projection created from the given parameter values.
*/
@Override
protected NormalizedProjection createProjection(final Parameters parameters) {
Modified: sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AbstractProvider.java
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AbstractProvider.java?rev=1779706&r1=1779705&r2=1779706&view=diff
==============================================================================
--- sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AbstractProvider.java [UTF-8] (original)
+++ sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AbstractProvider.java [UTF-8] Sat Jan 21 09:00:40 2017
@@ -57,10 +57,10 @@ public abstract class AbstractProvider e
/**
* Constructs a math transform provider from the given properties and a set of parameters.
*
- * @param properties Set of properties. Shall contain at least {@code "name"}.
- * @param sourceDimension Number of dimensions in the source CRS of this operation method.
- * @param targetDimension Number of dimensions in the target CRS of this operation method.
- * @param parameters The set of parameters (never {@code null}).
+ * @param properties set of properties. Shall contain at least {@code "name"}.
+ * @param sourceDimension number of dimensions in the source CRS of this operation method.
+ * @param targetDimension number of dimensions in the target CRS of this operation method.
+ * @param parameters the set of parameters (never {@code null}).
*/
AbstractProvider(final Map properties,
final int sourceDimension,
@@ -74,9 +74,9 @@ public abstract class AbstractProvider e
* Constructs a math transform provider from a set of parameters. The provider name and
* {@linkplain #getIdentifiers() identifiers} will be the same than the parameter ones.
*
- * @param sourceDimensions Number of dimensions in the source CRS of this operation method.
- * @param targetDimensions Number of dimensions in the target CRS of this operation method.
- * @param parameters Description of parameters expected by this operation.
+ * @param sourceDimensions number of dimensions in the source CRS of this operation method.
+ * @param targetDimensions number of dimensions in the target CRS of this operation method.
+ * @param parameters description of parameters expected by this operation.
*/
AbstractProvider(final int sourceDimensions,
final int targetDimensions,
Modified: sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AbstractStereographic.java
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AbstractStereographic.java?rev=1779706&r1=1779705&r2=1779706&view=diff
==============================================================================
--- sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AbstractStereographic.java [UTF-8] (original)
+++ sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AbstractStereographic.java [UTF-8] Sat Jan 21 09:00:40 2017
@@ -76,7 +76,7 @@ abstract class AbstractStereographic ext
* The default implementation creates a projection for the "Polar Stereographic" case only.
* Subclasses need to override if they want to support other cases (oblique and equatorial).
*
- * @return The map projection created from the given parameter values.
+ * @return the map projection created from the given parameter values.
*/
@Override
protected NormalizedProjection createProjection(Parameters parameters) throws ParameterNotFoundException {
Modified: sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/Affine.java
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/Affine.java?rev=1779706&r1=1779705&r2=1779706&view=diff
==============================================================================
--- sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/Affine.java [UTF-8] (original)
+++ sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/Affine.java [UTF-8] Sat Jan 21 09:00:40 2017
@@ -191,9 +191,9 @@ public final class Affine extends Abstra
/**
* Creates a projective transform from the specified group of parameter values.
*
- * @param factory Ignored (can be null).
- * @param values The group of parameter values.
- * @return The created math transform.
+ * @param factory ignored (can be null).
+ * @param values the group of parameter values.
+ * @return the created math transform.
* @throws ParameterNotFoundException if a required parameter was not found.
*/
@Override
@@ -210,9 +210,9 @@ public final class Affine extends Abstra
/**
* Returns the same operation method, but for different dimensions.
*
- * @param sourceDimensions The desired number of input dimensions.
- * @param targetDimensions The desired number of output dimensions.
- * @return The redimensioned operation method, or {@code this} if no change is needed.
+ * @param sourceDimensions the desired number of input dimensions.
+ * @param targetDimensions the desired number of output dimensions.
+ * @return the redimensioned operation method, or {@code this} if no change is needed.
*/
@Override
public OperationMethod redimension(final int sourceDimensions, final int targetDimensions) {
@@ -287,8 +287,8 @@ public final class Affine extends Abstra
* Returns the parameter values for the given matrix. This method is invoked by implementations of
* {@link org.apache.sis.referencing.operation.transform.AbstractMathTransform#getParameterValues()}.
*
- * @param matrix The matrix for which to get parameter values.
- * @return The parameters of the given matrix.
+ * @param matrix the matrix for which to get parameter values.
+ * @return the parameters of the given matrix.
*/
public static ParameterValueGroup parameters(final Matrix matrix) {
final int sourceDimensions = matrix.getNumCol() - 1;
Modified: sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AlbersEqualArea.java
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AlbersEqualArea.java?rev=1779706&r1=1779705&r2=1779706&view=diff
==============================================================================
--- sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AlbersEqualArea.java [UTF-8] (original)
+++ sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/AlbersEqualArea.java [UTF-8] Sat Jan 21 09:00:40 2017
@@ -188,7 +188,7 @@ public final class AlbersEqualArea exten
/**
* {@inheritDoc}
*
- * @return The map projection created from the given parameter values.
+ * @return the map projection created from the given parameter values.
*/
@Override
protected final NormalizedProjection createProjection(final Parameters parameters) {
Modified: sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/DatumShiftGridCompressed.java
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/DatumShiftGridCompressed.java?rev=1779706&r1=1779705&r2=1779706&view=diff
==============================================================================
--- sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/DatumShiftGridCompressed.java [UTF-8] (original)
+++ sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/DatumShiftGridCompressed.java [UTF-8] Sat Jan 21 09:00:40 2017
@@ -81,10 +81,10 @@ final class DatumShiftGridCompressed, T extends Quantity> DatumShiftGridFile compress(
final DatumShiftGridFile.Float grid, double[] averages, final double scale)
@@ -130,7 +130,7 @@ final class DatumShiftGridCompressedx value between cells at index gridX and gridX + 1.
- * @param Δy Increment in y value between cells at index gridY and gridY + 1.
- * @param nx Number of cells along the x axis in the grid.
- * @param ny Number of cells along the y axis in the grid.
+ * @param x0 longitude in degrees of the center of the cell at grid index (0,0).
+ * @param y0 latitude in degrees of the center of the cell at grid index (0,0).
+ * @param Δx increment in x value between cells at index gridX and gridX + 1.
+ * @param Δy increment in y value between cells at index gridY and gridY + 1.
+ * @param nx number of cells along the x axis in the grid.
+ * @param ny number of cells along the y axis in the grid.
*/
DatumShiftGridFile(final Unit coordinateUnit,
final Unit translationUnit,
@@ -140,7 +138,7 @@ public abstract class DatumShiftGridFile
/**
* Creates a new datum shift grid with the same grid geometry than the given grid.
*
- * @param other The other datum shift grid from which to copy the grid geometry.
+ * @param other the other datum shift grid from which to copy the grid geometry.
*/
DatumShiftGridFile(final DatumShiftGridFile other) {
super(other);
@@ -154,7 +152,7 @@ public abstract class DatumShiftGridFile
* Suggests a precision for the translation values in this grid.
* The default implementation returns a value smaller than the accuracy.
*
- * @return A precision for the translation values in this grid.
+ * @return a precision for the translation values in this grid.
*/
@Override
public double getCellPrecision() {
@@ -193,7 +191,7 @@ public abstract class DatumShiftGridFile
/**
* Sets all parameters for a value of type {@link Path} to the values given to th constructor.
*
- * @param parameters The parameter group where to set the values.
+ * @param parameters the parameter group where to set the values.
*/
public final void setFileParameters(final Parameters parameters) {
int i = 0; // The 'files' array should always contains at least one element.
@@ -223,13 +221,13 @@ public abstract class DatumShiftGridFile
/**
* Returns {@code true} if the given object is a grid containing the same data than this grid.
*
- * @param other The other object to compare with this datum shift grid.
+ * @param other the other object to compare with this datum shift grid.
* @return {@code true} if the given object is non-null, of the same class than this {@code DatumShiftGrid}
* and contains the same data.
*/
@Override
public boolean equals(final Object other) {
- if (other == this) { // Optimization for a common case.
+ if (other == this) { // Optimization for a common case.
return true;
}
if (super.equals(other)) {
@@ -252,7 +250,7 @@ public abstract class DatumShiftGridFile
/**
* Returns a string representation of this grid.
*
- * @return A string representation for debugging purpose.
+ * @return a string representation for debugging purpose.
*/
@Debug
@Override
@@ -343,10 +341,10 @@ public abstract class DatumShiftGridFile
* (not the binary digits) to 0. This is on the assumption that the {@code float} values were parsed
* from an ASCII file, or any other medium that format numbers in base 10.
*
- * @param dim The dimension for which to get an average value.
- * @param gridX The grid index along the x axis, from 0 inclusive to {@link #nx} exclusive.
- * @param gridY The grid index along the y axis, from 0 inclusive to {@link #ny} exclusive.
- * @return The offset at the given dimension in the grid cell at the given index.
+ * @param dim the dimension for which to get an average value.
+ * @param gridX the grid index along the x axis, from 0 inclusive to {@link #nx} exclusive.
+ * @param gridY the grid index along the y axis, from 0 inclusive to {@link #ny} exclusive.
+ * @return the offset at the given dimension in the grid cell at the given index.
*/
@Override
public final double getCellValue(final int dim, final int gridX, final int gridY) {
Modified: sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/DatumShiftGridLoader.java
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/DatumShiftGridLoader.java?rev=1779706&r1=1779705&r2=1779706&view=diff
==============================================================================
--- sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/DatumShiftGridLoader.java [UTF-8] (original)
+++ sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/DatumShiftGridLoader.java [UTF-8] Sat Jan 21 09:00:40 2017
@@ -21,6 +21,8 @@ import java.util.logging.LogRecord;
import java.io.EOFException;
import java.io.IOException;
import java.nio.ByteBuffer;
+import java.nio.file.Path;
+import java.nio.file.NoSuchFileException;
import java.nio.channels.ReadableByteChannel;
import org.opengis.util.FactoryException;
import org.apache.sis.util.resources.Errors;
@@ -30,10 +32,6 @@ import org.apache.sis.internal.referenci
import org.apache.sis.referencing.factory.FactoryDataException;
import org.apache.sis.referencing.factory.MissingFactoryResourceException;
-// Branch-dependent imports
-import java.nio.file.Path;
-import java.nio.file.NoSuchFileException;
-
/**
* Base class of datum shift grid loaders.
Modified: sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/EPSGName.java
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/EPSGName.java?rev=1779706&r1=1779705&r2=1779706&view=diff
==============================================================================
--- sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/EPSGName.java [UTF-8] (original)
+++ sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/EPSGName.java [UTF-8] Sat Jan 21 09:00:40 2017
@@ -72,8 +72,8 @@ public final class EPSGName { // TODO:
/**
* Creates an EPSG name or alias.
*
- * @param code The EPSG name to be returned by {@link NamedIdentifier#getCode()}.
- * @return An EPSG name or alias for the given string.
+ * @param code the EPSG name to be returned by {@link NamedIdentifier#getCode()}.
+ * @return an EPSG name or alias for the given string.
*/
public static NamedIdentifier create(final String code) {
return new NamedIdentifier(Citations.EPSG, Constants.EPSG, code, VERSION, REMARKS);
@@ -82,8 +82,8 @@ public final class EPSGName { // TODO:
/**
* Creates an EPSG identifier.
*
- * @param code The EPSG code.
- * @return The EPSG identifier for the given numerical value.
+ * @param code the EPSG code.
+ * @return the EPSG identifier for the given numerical value.
*/
public static Identifier identifier(final int code) {
return new ImmutableIdentifier(Citations.EPSG, Constants.EPSG, String.valueOf(code).intern(), VERSION, REMARKS);
@@ -93,10 +93,10 @@ public final class EPSGName { // TODO:
* Creates a map of properties to be given to the construction of an operation method.
* The returned map is modifiable - callers can add or remove entries after this method call.
*
- * @param identifier The EPSG code.
- * @param name The EPSG name.
- * @param nameOGC The OGC name, or {@code null} if none.
- * @return A map of properties for building the operation method.
+ * @param identifier the EPSG code.
+ * @param name the EPSG name.
+ * @param nameOGC the OGC name, or {@code null} if none.
+ * @return a map of properties for building the operation method.
*/
public static Map properties(final int identifier, final String name, final String nameOGC) {
return properties(identifier, name, (nameOGC == null) ? null :
@@ -108,10 +108,10 @@ public final class EPSGName { // TODO:
* Creates a map of properties to be given to the construction of an operation method.
* The returned map is modifiable - callers can add or remove entries after this method call.
*
- * @param identifier The EPSG code.
- * @param name The EPSG name.
- * @param nameOGC The OGC name, or {@code null} if none.
- * @return A map of properties for building the operation method.
+ * @param identifier the EPSG code.
+ * @param name the EPSG name.
+ * @param nameOGC the OGC name, or {@code null} if none.
+ * @return a map of properties for building the operation method.
*/
public static Map properties(final int identifier, final String name, final GenericName nameOGC) {
final Map properties = new HashMap<>(4);
Modified: sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/Equirectangular.java
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/Equirectangular.java?rev=1779706&r1=1779705&r2=1779706&view=diff
==============================================================================
--- sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/Equirectangular.java [UTF-8] (original)
+++ sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/Equirectangular.java [UTF-8] Sat Jan 21 09:00:40 2017
@@ -232,10 +232,10 @@ public final class Equirectangular exten
* This method performs the same work than {@code Initializer.getAndStore(ParameterDescriptor)} in the
* {@link org.apache.sis.referencing.operation.projection} package.
*
- * @param source The parameters from which to read the value.
- * @param target Where to store the parameter values.
- * @param descriptor The descriptor that specify the parameter names and desired units.
- * @return The parameter value in the units given by the descriptor.
+ * @param source the parameters from which to read the value.
+ * @param target where to store the parameter values.
+ * @param descriptor the descriptor that specify the parameter names and desired units.
+ * @return the parameter value in the units given by the descriptor.
* @throws IllegalArgumentException if the given value is out of bounds.
*/
private static double getAndStore(final Parameters source, final ParameterValueGroup target,
@@ -255,9 +255,9 @@ public final class Equirectangular exten
* reproduced in this method because we will create an affine transform instead than the usual projection
* classes.
*
- * @param factory The factory to use if this constructor needs to create other math transforms.
- * @param parameters The parameter values that define the transform to create.
- * @return The map projection created from the given parameter values.
+ * @param factory the factory to use if this constructor needs to create other math transforms.
+ * @param parameters the parameter values that define the transform to create.
+ * @return the map projection created from the given parameter values.
* @throws FactoryException if an error occurred while creating the math transform.
*/
@Override
Modified: sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/FranceGeocentricInterpolation.java
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/FranceGeocentricInterpolation.java?rev=1779706&r1=1779705&r2=1779706&view=diff
==============================================================================
--- sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/FranceGeocentricInterpolation.java [UTF-8] (original)
+++ sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/FranceGeocentricInterpolation.java [UTF-8] Sat Jan 21 09:00:40 2017
@@ -25,6 +25,8 @@ import java.util.logging.LogRecord;
import java.io.BufferedReader;
import java.io.EOFException;
import java.io.IOException;
+import java.nio.file.Path;
+import java.nio.file.Paths;
import javax.xml.bind.annotation.XmlTransient;
import javax.measure.quantity.Angle;
import javax.measure.quantity.Length;
@@ -55,8 +57,6 @@ import org.apache.sis.referencing.operat
import static java.lang.Float.parseFloat;
// Branch-specific imports
-import java.nio.file.Path;
-import java.nio.file.Paths;
import org.apache.sis.internal.jdk8.JDK8;
Modified: sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/GeocentricAffine.java
URL: http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/GeocentricAffine.java?rev=1779706&r1=1779705&r2=1779706&view=diff
==============================================================================
--- sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/GeocentricAffine.java [UTF-8] (original)
+++ sis/branches/JDK7/core/sis-referencing/src/main/java/org/apache/sis/internal/referencing/provider/GeocentricAffine.java [UTF-8] Sat Jan 21 09:00:40 2017
@@ -170,9 +170,9 @@ public abstract class GeocentricAffine e
* The default implementation creates an affine transform, but some subclasses
* will wrap that affine operation into Geographic/Geocentric conversions.
*
- * @param factory The factory to use for creating concatenated transforms.
- * @param values The group of parameter values.
- * @return The created math transform.
+ * @param factory the factory to use for creating concatenated transforms.
+ * @param values the group of parameter values.
+ * @return the created math transform.
* @throws FactoryException if a transform can not be created.
*/
@Override
@@ -203,10 +203,10 @@ public abstract class GeocentricAffine e
/**
* Creates parameter values for a Molodensky, Geocentric Translation or Position Vector transformation.
*
- * @param descriptor The {@code PARAMETERS} constant of the subclass describing the operation to create.
+ * @param descriptor the {@code PARAMETERS} constant of the subclass describing the operation to create.
* @param parameters Bursa-Wolf parameters from which to get the values.
* @param isTranslation {@code true} if the operation contains only translation terms.
- * @return The operation parameters with their values initialized.
+ * @return the operation parameters with their values initialized.
*/
private static Parameters createParameters(final ParameterDescriptorGroup descriptor,
final BursaWolfParameters parameters, final boolean isTranslation)
@@ -235,12 +235,12 @@ public abstract class GeocentricAffine e
* will cause this method to return {@code null}. In such case, it is caller's responsibility to apply
* the datum shift itself in Cartesian geocentric coordinates.
*
- * @param sourceCS The source coordinate system. Only the type and number of dimensions is checked.
- * @param targetCS The target coordinate system. Only the type and number of dimensions is checked.
- * @param datumShift The datum shift as a matrix.
+ * @param sourceCS the source coordinate system. Only the type and number of dimensions is checked.
+ * @param targetCS the target coordinate system. Only the type and number of dimensions is checked.
+ * @param datumShift the datum shift as a matrix.
* @param useMolodensky {@code true} for allowing the use of Molodensky approximation, or {@code false}
* for using the transformation in geocentric space (which should be more accurate).
- * @return The parameter values, or {@code null} if no single operation method can be found.
+ * @return the parameter values, or {@code null} if no single operation method can be found.
*/
public static ParameterValueGroup createParameters(final CoordinateSystem sourceCS,
final CoordinateSystem targetCS, final Matrix datumShift, boolean useMolodensky)
@@ -307,7 +307,7 @@ public abstract class GeocentricAffine e
* boolean)} except that we need to perform the {@code forDatumShift(…)} work only after {@code beforeFormat(…)}
* finished its work for all {@code ContextualParameters}, including the {@code EllipsoidToCentricTransform}'s one.
*
- * @param transforms The full chain of concatenated transforms.
+ * @param transforms the full chain of concatenated transforms.
*/
public static void asDatumShift(final List