Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/parameter/TensorParametersTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/parameter/TensorParametersTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/parameter/TensorParametersTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/parameter/TensorParametersTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -110,10 +110,10 @@ public strictfp class TensorParametersTe /** * Creates a new test case for a {@link MatrixParameters} defined by the subclass. * - * @param param The instance tested by this class. - * @param names The expected parameter names for all matrix elements. - * @param aliases The expected parameter aliases for all matrix elements, or {@code null} for no alias. - * @param identifiers The expected parameter identifiers for all matrix elements, or {@code null} for no identifier. + * @param param the instance tested by this class. + * @param names the expected parameter names for all matrix elements. + * @param aliases the expected parameter aliases for all matrix elements, or {@code null} for no alias. + * @param identifiers the expected parameter identifiers for all matrix elements, or {@code null} for no identifier. */ TensorParametersTest(final TensorParameters param, final String[][] names, final String[][] aliases, final short[][] identifiers) @@ -136,9 +136,9 @@ public strictfp class TensorParametersTe /** * Asserts that the given descriptor has the given name. * - * @param names The expected parameter name. - * @param defaultValue The expected parameter default value. - * @param actual The actual parameter to verify. + * @param names the expected parameter name. + * @param defaultValue the expected parameter default value. + * @param actual the actual parameter to verify. */ private static void verifyDescriptor(final String name, final Number defaultValue, final ParameterDescriptor actual) @@ -150,10 +150,10 @@ public strictfp class TensorParametersTe /** * Asserts that the given descriptor has the given name, alias, identifier and default value. * - * @param defaultValue The expected parameter default value. - * @param actual The actual parameter to verify. - * @param row Row index of the matrix element to test. - * @param column Column index of the matrix element to test. + * @param defaultValue the expected parameter default value. + * @param actual the actual parameter to verify. + * @param row row index of the matrix element to test. + * @param column column index of the matrix element to test. */ private void verifyDescriptor(final Number defaultValue, final ParameterDescriptor actual, final int row, final int column) @@ -197,7 +197,7 @@ public strictfp class TensorParametersTe verifyDescriptor(N0, e01, 0, 1); verifyDescriptor(N0, e10, 1, 0); verifyDescriptor(N1, e11, 1, 1); - assertSame(e00, param.getElementDescriptor(0, 0)); // Test caching. + assertSame(e00, param.getElementDescriptor(0, 0)); // Test caching. assertSame(e01, param.getElementDescriptor(0, 1)); assertSame(e10, param.getElementDescriptor(1, 0)); assertSame(e11, param.getElementDescriptor(1, 1)); Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/parameter/TensorValuesTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/parameter/TensorValuesTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/parameter/TensorValuesTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/parameter/TensorValuesTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -73,9 +73,9 @@ public final strictfp class TensorValues * Asserts that the given descriptor has the given name and default value. * Aliases and identifiers are ignored - testing them is the purpose of {@link MatrixParametersTest}. * - * @param name The expected parameter name. - * @param defaultValue The expected parameter default value. - * @param actual The actual parameter to verify. + * @param name the expected parameter name. + * @param defaultValue the expected parameter default value. + * @param actual the actual parameter to verify. */ private static void assertDescriptorEquals(final String name, final Number defaultValue, final GeneralParameterDescriptor actual) @@ -87,9 +87,9 @@ public final strictfp class TensorValues /** * Asserts that the given parameter has the given name and value. * - * @param name The expected parameter name. - * @param value The expected parameter value. - * @param actual The actual parameter to verify. + * @param name the expected parameter name. + * @param value the expected parameter value. + * @param actual the actual parameter to verify. */ private static void assertValueEquals(final String name, final Number value, final GeneralParameterValue actual) { assertEquals(name, actual.getDescriptor().getName().getCode()); Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/AbstractIdentifiedObjectTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/AbstractIdentifiedObjectTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/AbstractIdentifiedObjectTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/AbstractIdentifiedObjectTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -55,7 +55,7 @@ public final strictfp class AbstractIden * Creates a map of properties to be given to the {@link AbstractIdentifiedObject} constructor. * The values in the map are consistent with the values expected by the {@link #validate} method. * - * @param identifier The value for the {@code "identifiers"} property. + * @param identifier the value for the {@code "identifiers"} property. */ private static Map properties(final Set identifiers) { final Map properties = new HashMap<>(8); @@ -72,10 +72,10 @@ public final strictfp class AbstractIden /** * Validates the given object created by {@link #testCreateFromMap()}. * - * @param object The object to validate. - * @param identifiers The expected value of {@link AbstractIdentifiedObject#getIdentifiers()}. - * @param gmlID The expected value of {@link AbstractIdentifiedObject#getID()}. - * @return The value of {@link AbstractIdentifiedObject#getIdentifier()}. + * @param object the object to validate. + * @param identifiers the expected value of {@link AbstractIdentifiedObject#getIdentifiers()}. + * @param gmlID the expected value of {@link AbstractIdentifiedObject#getID()}. + * @return the value of {@link AbstractIdentifiedObject#getIdentifier()}. */ private static ReferenceIdentifier validate(final AbstractIdentifiedObject object, final Set identifiers, final String gmlID) @@ -108,8 +108,10 @@ public final strictfp class AbstractIden new AbstractIdentifiedObject(properties); fail("Should not allow unnamed object."); } catch (IllegalArgumentException e) { - // The message may be in any language, but shall - // contain at least the missing property name. + /* + * The message may be in any language, but shall + * contain at least the missing property name. + */ final String message = e.getMessage(); assertTrue(message, message.contains("name")); } Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/BuilderMock.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/BuilderMock.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/BuilderMock.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/BuilderMock.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -68,7 +68,7 @@ final strictfp class BuilderMock extends /** * Convenience accessor for aliases or identifiers as strings. * - * @param kind 0 for identifiers, or 1 for names. + * @param kind 0 for identifiers, or 1 for names. */ String[] getAsStrings(final int kind) { final Object[] values = (kind == 0) ? getIdentifiers() : getAliases(); Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/BuilderTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/BuilderTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/BuilderTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/BuilderTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -139,14 +139,14 @@ public final strictfp class BuilderTest * * @param withNames {@code true} for adding the names in the builder. * @param withIdentifiers {@code true} for adding the identifiers in the builder. - * @return The builder with Mercator names and/or identifiers. + * @return the builder with Mercator names and/or identifiers. */ private static BuilderMock createMercator(final boolean withNames, final boolean withIdentifiers) { final BuilderMock builder = new BuilderMock(); assertSame(builder, builder.setCodeSpace(Citations.EPSG, "EPSG")); if (withNames) { - assertSame(builder, builder.addName( "Mercator (variant A)")); // EPSG version 7.6 and later. - assertSame(builder, builder.addName( "Mercator (1SP)")); // EPSG before version 7.6. + assertSame(builder, builder.addName( "Mercator (variant A)")); // EPSG version 7.6 and later. + assertSame(builder, builder.addName( "Mercator (1SP)")); // EPSG before version 7.6. assertSame(builder, builder.addName(Citations.OGC, "Mercator_1SP")); assertSame(builder, builder.addName(Citations.GEOTIFF, "CT_Mercator")); } Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/CRSTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/CRSTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/CRSTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/CRSTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -73,7 +73,7 @@ public final strictfp class CRSTest exte /** * Tests {@link CRS#forCode(String)} with EPSG codes. * - * @throws FactoryException If a CRS can not be constructed. + * @throws FactoryException if a CRS can not be constructed. * * @see CommonCRSTest#testForCode() */ @@ -102,7 +102,7 @@ public final strictfp class CRSTest exte /** * Tests {@link CRS#forCode(String)} with CRS codes. * - * @throws FactoryException If a CRS can not be constructed. + * @throws FactoryException if a CRS can not be constructed. * * @see CommonCRSTest#testForCode() */ @@ -177,7 +177,7 @@ public final strictfp class CRSTest exte null, new DefaultGeographicBoundingBox(-1, +1, ymin, ymax), null, null)); crs[i] = new DefaultProjectedCRS(properties, baseCRS.geographic(), HardCodedConversions.MERCATOR, cs); } - final ProjectedCRS[] overlappingCRS = Arrays.copyOf(crs, 3); // Exclude the last CRS only. + final ProjectedCRS[] overlappingCRS = Arrays.copyOf(crs, 3); // Exclude the last CRS only. /* * Test between the 3 overlapping CRS without region of interest. We expect the CRS having a domain * of validity large enough for all CRS; this is the second CRS created in above 'switch' statement. @@ -285,20 +285,20 @@ public final strictfp class CRSTest exte @Test public void testGetComponentAt() { testGetComponentAt( - null, // Null because our CRS has no component for the 'x' axis alone. - null, // Null because our CRS has no component for the 'y' axis alone. + null, // Null because our CRS has no component for the 'x' axis alone. + null, // Null because our CRS has no component for the 'y' axis alone. HardCodedCRS.GRAVITY_RELATED_HEIGHT, HardCodedCRS.TIME, HardCodedCRS.WGS84, - null, // Null because our CRS has no (x,y,z) component. + null, // Null because our CRS has no (x,y,z) component. HardCodedCRS.GEOID_4D); /* * The above tests was for the standard (x,y,z,t) flat view. * Now test again, but with a more hierarchical structure: ((x,y,z),t) */ testGetComponentAt( - null, // Null because our CRS has no component for the 'x' axis alone. - null, // Null because our CRS has no component for the 'y' axis alone. + null, // Null because our CRS has no component for the 'x' axis alone. + null, // Null because our CRS has no component for the 'y' axis alone. HardCodedCRS.GRAVITY_RELATED_HEIGHT, HardCodedCRS.TIME, HardCodedCRS.WGS84, Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/CommonCRSTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/CommonCRSTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/CommonCRSTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/CommonCRSTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -268,8 +268,8 @@ public final strictfp class CommonCRSTes final TemporalCRS crs = e.crs(); final Date origin = datum.getOrigin(); Validators.validate(crs); - assertSame (name, datum, e.datum()); // Datum before CRS creation. - assertSame (name, crs.getDatum(), e.datum()); // Datum after CRS creation. + assertSame (name, datum, e.datum()); // Datum before CRS creation. + assertSame (name, crs.getDatum(), e.datum()); // Datum after CRS creation. assertEquals(name, epoch, format(origin)); assertEquals(name, days, origin.getTime() / DAY_LENGTH - julianEpoch, 0); } Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/GeodeticObjectVerifier.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/GeodeticObjectVerifier.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/GeodeticObjectVerifier.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/GeodeticObjectVerifier.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -67,8 +67,8 @@ public final strictfp class GeodeticObje *

Note: a future version of this method may accept other kinds of extent, * for example a polygon encompassing the world.

* - * @param extent The extent to verify, or {@code null} if none. - * @param isMandatory {@code true} if an absence of world extent is a failure. + * @param extent the extent to verify, or {@code null} if none. + * @param isMandatory {@code true} if an absence of world extent is a failure. */ private static void assertIsWorld(final Extent extent, boolean isMandatory) { if (extent != null) { @@ -98,7 +98,7 @@ public final strictfp class GeodeticObje * {@linkplain GeographicBoundingBox#getNorthBoundLatitude() North bound latitude} +90 * * - * @param box The geographic bounding box to verify. + * @param box the geographic bounding box to verify. */ public static void assertIsWorld(final GeographicBoundingBox box) { final Boolean inclusion = box.getInclusion(); @@ -126,7 +126,7 @@ public final strictfp class GeodeticObje * {@link Units#DEGREE} * * - * @param meridian The prime meridian to verify. + * @param meridian the prime meridian to verify. */ public static void assertIsGreenwich(final PrimeMeridian meridian) { assertEquals("name", "Greenwich", meridian.getName().getCode()); @@ -149,7 +149,7 @@ public final strictfp class GeodeticObje * {@link Units#GRAD} * * - * @param meridian The prime meridian to verify. + * @param meridian the prime meridian to verify. */ public static void assertIsParis(final PrimeMeridian meridian) { assertEquals("name", "Paris", meridian.getName().getCode()); @@ -178,7 +178,7 @@ public final strictfp class GeodeticObje * {@code true} * * - * @param ellipsoid The ellipsoid to verify. + * @param ellipsoid the ellipsoid to verify. */ public static void assertIsWGS84(final Ellipsoid ellipsoid) { assertEquals("name", "WGS 84", ellipsoid.getName().getCode()); @@ -206,9 +206,9 @@ public final strictfp class GeodeticObje * {@linkplain #assertIsWGS84(Ellipsoid) Is WGS84} * * - * @param datum The datum to verify. - * @param isExtentMandatory {@code true} if the domain of validity is required to contain an {@code Extent} element - * for the world, or {@code false} if optional. + * @param datum the datum to verify. + * @param isExtentMandatory {@code true} if the domain of validity is required to contain an + * {@code Extent} element for the world, or {@code false} if optional. */ public static void assertIsWGS84(final GeodeticDatum datum, final boolean isExtentMandatory) { assertEquals("name", "World Geodetic System 1984", datum.getName().getCode()); @@ -234,11 +234,11 @@ public final strictfp class GeodeticObje * {@linkplain #assertIsGeodetic2D(EllipsoidalCS, boolean) Is for a 2D geodetic CRS} * * - * @param crs The coordinate reference system to verify. - * @param isExtentMandatory {@code true} if the CRS and datum domains of validity are required to contain an - * {@code Extent} element for the world, or {@code false} if optional. - * @param isRangeMandatory {@code true} if the coordinate system axes range and range meaning properties - * shall be defined, or {@code false} if they are optional. + * @param crs the coordinate reference system to verify. + * @param isExtentMandatory {@code true} if the CRS and datum domains of validity are required to contain an + * {@code Extent} element for the world, or {@code false} if optional. + * @param isRangeMandatory {@code true} if the coordinate system axes range and range meaning properties + * shall be defined, or {@code false} if they are optional. */ public static void assertIsWGS84(final GeodeticCRS crs, final boolean isExtentMandatory, final boolean isRangeMandatory) { assertEquals("name", "WGS 84", crs.getName().getCode()); @@ -262,9 +262,9 @@ public final strictfp class GeodeticObje * {@linkplain #assertIsWorld(GeographicBoundingBox) Is world} or absent * * - * @param datum The datum to verify. - * @param isExtentMandatory {@code true} if the domain of validity is required to contain an {@code Extent} element - * for the world, or {@code false} if optional. + * @param datum the datum to verify. + * @param isExtentMandatory {@code true} if the domain of validity is required to contain an + * {@code Extent} element for the world, or {@code false} if optional. */ public static void assertIsMeanSeaLevel(final VerticalDatum datum, final boolean isExtentMandatory) { assertEquals("name", "Mean Sea Level", datum.getName().getCode()); @@ -300,7 +300,7 @@ public final strictfp class GeodeticObje * {@code null} * * - * @param cs The coordinate system to verify. + * @param cs the coordinate system to verify. */ public static void assertIsProjected2D(final CartesianCS cs) { assertEquals("dimension", 2, cs.getDimension()); @@ -353,9 +353,9 @@ public final strictfp class GeodeticObje * because the classical symbols (φ,λ) are often replaced by (lat,long). * * - * @param cs The coordinate system to verify. - * @param isRangeMandatory {@code true} if the axes range and range meaning properties shall be defined, - * or {@code false} if they are optional. + * @param cs the coordinate system to verify. + * @param isRangeMandatory {@code true} if the axes range and range meaning properties shall be defined, + * or {@code false} if they are optional. */ public static void assertIsGeodetic2D(final EllipsoidalCS cs, final boolean isRangeMandatory) { assertEquals("dimension", 2, cs.getDimension()); Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/crs/DefaultCompoundCRSTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/crs/DefaultCompoundCRSTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/crs/DefaultCompoundCRSTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/crs/DefaultCompoundCRSTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -96,9 +96,9 @@ public final strictfp class DefaultCompo /** * Verifies the components of the CRS created by {@link #testConstructionAndSerialization()}. * - * @param crs2 The expected two-dimensional component (for the 2 first axes). - * @param crs3 The expected three-dimensional component. - * @param crs4 The four-dimensional compound CRS to test. + * @param crs2 the expected two-dimensional component (for the 2 first axes). + * @param crs3 the expected three-dimensional component. + * @param crs4 the four-dimensional compound CRS to test. */ private static void verifyComponents(final DefaultGeographicCRS crs2, final DefaultCompoundCRS crs3, @@ -262,7 +262,7 @@ public final strictfp class DefaultCompo /** * Tests (un)marshalling of a derived coordinate reference system. * - * @throws JAXBException If an error occurred during (un)marshalling. + * @throws JAXBException if an error occurred during (un)marshalling. * * @since 0.7 */ Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/crs/DefaultDerivedCRSTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/crs/DefaultDerivedCRSTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/crs/DefaultDerivedCRSTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/crs/DefaultDerivedCRSTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -49,7 +49,7 @@ import static org.apache.sis.test.Refere * @module */ @DependsOn({ - DefaultProjectedCRSTest.class, // Has many similarities with DerivedCRS, but is simpler. + DefaultProjectedCRSTest.class, // Has many similarities with DerivedCRS, but is simpler. DefaultConversionTest.class }) public final strictfp class DefaultDerivedCRSTest extends XMLTestCase { @@ -217,7 +217,7 @@ public final strictfp class DefaultDeriv /** * Tests (un)marshalling of a derived coordinate reference system. * - * @throws JAXBException If an error occurred during (un)marshalling. + * @throws JAXBException if an error occurred during (un)marshalling. * * @since 0.7 */ Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/crs/DefaultGeodeticCRSTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/crs/DefaultGeodeticCRSTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/crs/DefaultGeodeticCRSTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/crs/DefaultGeodeticCRSTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -50,7 +50,7 @@ public final strictfp class DefaultGeode /** * Tests (un)marshalling of a geodetic coordinate reference system. * - * @throws JAXBException If an error occurred during unmarshalling. + * @throws JAXBException if an error occurred during unmarshalling. */ @Test public void testXML() throws JAXBException { Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/crs/DefaultProjectedCRSTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/crs/DefaultProjectedCRSTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/crs/DefaultProjectedCRSTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/crs/DefaultProjectedCRSTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -465,7 +465,7 @@ public final strictfp class DefaultProje * Tests (un)marshalling of a projected coordinate reference system. * * @throws FactoryException if the CRS creation failed. - * @throws JAXBException If an error occurred during (un)marshalling. + * @throws JAXBException if an error occurred during (un)marshalling. */ @Test public void testXML() throws FactoryException, JAXBException { Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/cs/AbstractCSTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/cs/AbstractCSTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/cs/AbstractCSTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/cs/AbstractCSTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -47,9 +47,9 @@ public final strictfp class AbstractCSTe /** * Gets a coordinate system for the given axes convention and compare against the expected values. * - * @param convention The convention to use. - * @param cs The coordinate system to test. - * @param expected The expected axes, in order. + * @param convention the convention to use. + * @param cs the coordinate system to test. + * @param expected the expected axes, in order. */ private static void verifyAxesConvention(final AxesConvention convention, final AbstractCS cs, final CoordinateSystemAxis... expected) Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/cs/DefaultCartesianCSTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/cs/DefaultCartesianCSTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/cs/DefaultCartesianCSTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/cs/DefaultCartesianCSTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -201,7 +201,7 @@ public final strictfp class DefaultCarte /** * Tests (un)marshalling of a Cartesian coordinate system. * - * @throws JAXBException If an error occurred during unmarshalling. + * @throws JAXBException if an error occurred during unmarshalling. */ @Test public void testXML() throws JAXBException { Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/cs/DefaultEllipsoidalCSTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/cs/DefaultEllipsoidalCSTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/cs/DefaultEllipsoidalCSTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/cs/DefaultEllipsoidalCSTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -116,7 +116,7 @@ public final strictfp class DefaultEllip /** * Tests (un)marshalling of an ellipsoidal coordinate system. * - * @throws JAXBException If an error occurred during unmarshalling. + * @throws JAXBException if an error occurred during unmarshalling. */ @Test public void testXML() throws JAXBException { Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/DefaultGeodeticDatumTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/DefaultGeodeticDatumTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/DefaultGeodeticDatumTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/DefaultGeodeticDatumTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -204,7 +204,7 @@ public final strictfp class DefaultGeode /** * Tests marshalling. * - * @throws JAXBException If an error occurred during marshalling. + * @throws JAXBException if an error occurred during marshalling. */ @Test public void testMarshalling() throws JAXBException { @@ -238,8 +238,8 @@ public final strictfp class DefaultGeode *

This method is part of a chain. * The next method is {@link #testUnmarshalledWKT()}.

* - * @return The unmarshalled datum. - * @throws JAXBException If an error occurred during unmarshalling. + * @return the unmarshalled datum. + * @throws JAXBException if an error occurred during unmarshalling. */ @TestStep public DefaultGeodeticDatum testUnmarshalling() throws JAXBException { @@ -265,7 +265,7 @@ public final strictfp class DefaultGeode /** * Tests the WKT formatting of the datum created by {@link #testUnmarshalling()}. * - * @throws JAXBException If an error occurred during unmarshalling. + * @throws JAXBException if an error occurred during unmarshalling. */ @Test @DependsOnMethod("testToWKT") Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/DefaultPrimeMeridianTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/DefaultPrimeMeridianTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/DefaultPrimeMeridianTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/DefaultPrimeMeridianTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -117,7 +117,7 @@ public final strictfp class DefaultPrime /** * Tests marshalling in the default namespace. * - * @throws JAXBException If an error occurred during marshalling. + * @throws JAXBException if an error occurred during marshalling. */ @Test public void testMarshall() throws JAXBException { @@ -128,7 +128,7 @@ public final strictfp class DefaultPrime /** * Tests marshalling in the GML 3.1 namespace. * - * @throws JAXBException If an error occurred during marshalling. + * @throws JAXBException if an error occurred during marshalling. */ @Test @DependsOnMethod("testMarshall") @@ -145,7 +145,7 @@ public final strictfp class DefaultPrime /** * Tests unmarshalling. * - * @throws JAXBException If an error occurred during unmarshalling. + * @throws JAXBException if an error occurred during unmarshalling. * * @see GML export of EPSG:8901 */ @@ -158,7 +158,7 @@ public final strictfp class DefaultPrime /** * Tests marshalling in the GML 3.1 namespace. * - * @throws JAXBException If an error occurred during unmarshalling. + * @throws JAXBException if an error occurred during unmarshalling. */ @Test @DependsOnMethod("testUnmarshall") @@ -175,7 +175,7 @@ public final strictfp class DefaultPrime /** * Tests unmarshalling of Paris prime meridian. * - * @throws JAXBException If an error occurred during unmarshalling. + * @throws JAXBException if an error occurred during unmarshalling. */ @Test @DependsOnMethod({"testUnmarshall", "testMarshall", "testWKT_inGrads"}) Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/DefaultTemporalDatumTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/DefaultTemporalDatumTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/DefaultTemporalDatumTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/DefaultTemporalDatumTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -95,7 +95,7 @@ public final strictfp class DefaultTempo /** * Tests XML marshalling. * - * @throws JAXBException If an error occurred during marshalling. + * @throws JAXBException if an error occurred during marshalling. */ @Test public void testMarshalling() throws JAXBException { @@ -106,7 +106,7 @@ public final strictfp class DefaultTempo /** * Tests XML unmarshalling. * - * @throws JAXBException If an error occurred during unmarshalling. + * @throws JAXBException if an error occurred during unmarshalling. */ @Test public void testUnmarshalling() throws JAXBException { Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/DefaultVerticalDatumTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/DefaultVerticalDatumTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/DefaultVerticalDatumTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/DefaultVerticalDatumTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -101,7 +101,7 @@ public final strictfp class DefaultVerti /** * Tests XML (un)marshalling. * - * @throws JAXBException If an error occurred during (un)marshalling. + * @throws JAXBException if an error occurred during (un)marshalling. */ @Test public void testXML() throws JAXBException { @@ -128,7 +128,7 @@ public final strictfp class DefaultVerti /** * Tests (un)marshalling of an older version, GML 3.1. * - * @throws JAXBException If an error occurred during unmarshalling. + * @throws JAXBException if an error occurred during unmarshalling. * * @see SIS-160: Need XSLT between GML 3.1 and 3.2 */ Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/PrimeMeridianMock.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/PrimeMeridianMock.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/PrimeMeridianMock.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/PrimeMeridianMock.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -48,7 +48,7 @@ final strictfp class PrimeMeridianMock e /** * Returns the longitude of this prime meridian relative to Greenwich. * - * @return The prime meridian longitude. + * @return the prime meridian longitude. */ @Override public double getGreenwichLongitude() { Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/TimeDependentBWPTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/TimeDependentBWPTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/TimeDependentBWPTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/datum/TimeDependentBWPTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -126,8 +126,8 @@ public final strictfp class TimeDependen * EPSG documentation truncates the numerical values given in their example, so it is normal that we have a * slight difference. * - * @param actual The coordinates calculated by the matrix, or {@code null} for comparing against - * the EPSG expected values. + * @param actual the coordinates calculated by the matrix, or {@code null} for comparing against + * the EPSG expected values. */ private void compareWithExplicitCalculation(final Matrix actual) { /* @@ -166,7 +166,7 @@ public final strictfp class TimeDependen assertEquals("Y", Yt, actual.getElement(1, 0), 0.0005); assertEquals("Z", Zt, actual.getElement(2, 0), 0.0005); } else { - assertEquals("X", -3789470.008, Xt, 0.013); // Smallest tolerance value such as the test do not fail. + assertEquals("X", -3789470.008, Xt, 0.013); // Smallest tolerance value such as the test do not fail. assertEquals("Y", 4841770.685, Yt, 0.009); assertEquals("Z", -1690895.103, Zt, 0.003); } Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/factory/AuthorityFactoryMock.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/factory/AuthorityFactoryMock.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/factory/AuthorityFactoryMock.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/factory/AuthorityFactoryMock.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -154,7 +154,7 @@ public final strictfp class AuthorityFac /** * Returns the unit of measurement for the given code. * - * @return The unit of measurement. + * @return the unit of measurement. * @throws NoSuchAuthorityCodeException if the given code is unknown. */ @Override @@ -176,7 +176,7 @@ public final strictfp class AuthorityFac /** * Returns the spatial extent for the given code. * - * @return The spatial extent. + * @return the spatial extent. * @throws NoSuchAuthorityCodeException if the given code is unknown. */ @Override Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/factory/sql/EPSGDataFormatter.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/factory/sql/EPSGDataFormatter.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/factory/sql/EPSGDataFormatter.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/factory/sql/EPSGDataFormatter.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -27,6 +27,7 @@ import java.io.Writer; import java.io.BufferedWriter; import java.io.OutputStreamWriter; import java.io.IOException; +import java.nio.charset.StandardCharsets; import java.sql.Connection; import java.sql.SQLException; import javax.sql.DataSource; @@ -37,9 +38,6 @@ import org.apache.sis.util.CharSequences import org.apache.sis.internal.metadata.sql.ScriptRunner; import org.apache.sis.internal.metadata.sql.TestDatabase; -// Branch-dependent imports -import java.nio.charset.StandardCharsets; - /** * Rewrites the {@code INSERT TO ...} statements in a SQL script in a more compact form. @@ -131,7 +129,7 @@ public final class EPSGDataFormatter ext *
  • {@code core/sis-referencing/src/main/resources/org/apache/sis/referencing/factory/sql/Data.sql}
  • * * - * @param arguments The source files and the destination file. + * @param arguments the source files and the destination file. * @throws Exception if an error occurred while reading of writing the file. */ @SuppressWarnings("UseOfSystemOutOrSystemErr") Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/CoordinateOperationFinderTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/CoordinateOperationFinderTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/CoordinateOperationFinderTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/CoordinateOperationFinderTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -258,8 +258,8 @@ public final strictfp class CoordinateOp * Implementation of {@link #testGeocentricTranslationInGeographic2D()} * and {@link #testGeocentricTranslationInGeographic3D()}. * - * @param sourceCRS The NAD27 geographic CRS. - * @param targetCRS Either the two-dimensional or the three-dimensional geographic CRS using WGS84 datum. + * @param sourceCRS the NAD27 geographic CRS. + * @param targetCRS either the two-dimensional or the three-dimensional geographic CRS using WGS84 datum. */ private void testGeocentricTranslationInGeographicDomain(final String method, final GeographicCRS sourceCRS, final GeographicCRS targetCRS) Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/CoordinateOperationRegistryTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/CoordinateOperationRegistryTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/CoordinateOperationRegistryTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/CoordinateOperationRegistryTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -312,8 +312,8 @@ public final strictfp class CoordinateOp /** * Verifies a coordinate operation which is expected to be "NTF (Paris) to WGS 84 (1)" (EPSG:8094). * - * @param domain either {@code "geog2D domain"} or either {@code "geog3D domain"}. - * @param isEPSG {@code true} if the coordinate operation is expected to contain EPSG identifiers. + * @param domain either {@code "geog2D domain"} or either {@code "geog3D domain"}. + * @param isEPSG {@code true} if the coordinate operation is expected to contain EPSG identifiers. */ private static void verifyNTF(final CoordinateOperation operation, final String domain, final boolean isEPSG) { assertInstanceOf("Operation should have two steps.", ConcatenatedOperation.class, operation); @@ -353,8 +353,8 @@ public final strictfp class CoordinateOp * or the addition of height. In such case the modified object is not allowed to have the EPSG identifier of the * original object. * - * @param name The expected EPSG name. - * @param object The object to verify. + * @param name the expected EPSG name. + * @param object the object to verify. */ private static void assertEpsgNameWithoutIdentifierEqual(final String name, final IdentifiedObject object) { assertNotNull(name, object); Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/DefaultConversionTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/DefaultConversionTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/DefaultConversionTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/DefaultConversionTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -76,9 +76,9 @@ public final strictfp class DefaultConve * but with the prime meridian optionally set to Greenwich. Such CRS is not in real usage, but this is convenient * for testing a conversion consisting of only a longitude rotation, which is a very simple operation easy to test. * - * @param isSource {@code true} if creating the source CRS, or {@code false} if creating the target CRS. - * @param cs {@link HardCodedCS#GEODETIC_2D}, {@link HardCodedCS#GEODETIC_φλ} or other compatible coordinate system. - * @param useGreenwich {@code true} for using Greenwich prime meridian, or {@code false} for staying on the Paris one. + * @param isSource {@code true} if creating the source CRS, or {@code false} if creating the target CRS. + * @param cs {@link HardCodedCS#GEODETIC_2D}, {@link HardCodedCS#GEODETIC_φλ} or other compatible coordinate system. + * @param useGreenwich {@code true} for using Greenwich prime meridian, or {@code false} for staying on the Paris one. * * @see HardCodedCRS#NTF */ @@ -110,8 +110,8 @@ public final strictfp class DefaultConve * change the prime meridian). However we handle them as conversions for testing purpose only, because the * longitude rotation is a very simple operation easy to test.

    * - * @param useGreenwich {@code true} for using Greenwich prime meridian in the {@code targetCRS}, - * or {@code false} for staying on the Paris one. + * @param useGreenwich {@code true} for using Greenwich prime meridian in the {@code targetCRS}, + * or {@code false} for staying on the Paris one. * @return a pseudo-conversion performing a longitude rotation. */ public static DefaultConversion createLongitudeRotation(final boolean useGreenwich) { Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/DefaultOperationMethodTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/DefaultOperationMethodTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/DefaultOperationMethodTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/DefaultOperationMethodTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -54,12 +54,12 @@ public final strictfp class DefaultOpera /** * Creates a new two-dimensional operation method for an operation of the given name and identifier. * - * @param method The operation name (example: "Mercator (variant A)"). - * @param identifier The EPSG numeric identifier (example: "9804"). - * @param formula Formula citation (example: "EPSG guidance note #7-2"). - * @param dimension The number of input and output dimension, or {@code null}. - * @param parameters The parameters (can be empty). - * @return The operation method. + * @param method the operation name (example: "Mercator (variant A)"). + * @param identifier the EPSG numeric identifier (example: "9804"). + * @param formula formula citation (example: "EPSG guidance note #7-2"). + * @param dimension the number of input and output dimension, or {@code null}. + * @param parameters the parameters (can be empty). + * @return the operation method. */ static DefaultOperationMethod create(final String method, final String identifier, final String formula, final Integer dimension, final ParameterDescriptor... parameters) Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/DefaultPassThroughOperationTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/DefaultPassThroughOperationTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/DefaultPassThroughOperationTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/DefaultPassThroughOperationTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -52,7 +52,7 @@ public final strictfp class DefaultPassT /** * Tests (un)marshalling of a concatenated operation. * - * @throws JAXBException If an error occurred during (un)marshalling. + * @throws JAXBException if an error occurred during (un)marshalling. */ @Test public void testXML() throws JAXBException { Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/SingleOperationMarshallingTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/SingleOperationMarshallingTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/SingleOperationMarshallingTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/SingleOperationMarshallingTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -176,10 +176,10 @@ public final strictfp class SingleOperat * Verify a parameter value. The descriptor is expected to be the same instance than the descriptors * defined in the {@link ParameterValueGroup} and in the {@link OperationMethod}. * - * @param method The method of the enclosing operation. - * @param group The group which contain the given parameter. - * @param expectedValue The expected parameter value. - * @param parameter The parameter to verify. + * @param method the method of the enclosing operation. + * @param group the group which contain the given parameter. + * @param expectedValue the expected parameter value. + * @param parameter the parameter to verify. */ private static void verifyParameter(final OperationMethod method, final ParameterValueGroup group, final double expectedValue, final ParameterValue parameter) Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/builder/LinearTransformBuilderTest.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/builder/LinearTransformBuilderTest.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/builder/LinearTransformBuilderTest.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/builder/LinearTransformBuilderTest.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -149,10 +149,10 @@ public final strictfp class LinearTransf /** * Implementation of {@link #testExact1D()} and {@link #testNonExact1D()}. * - * @param rd The random number generator to use. - * @param numPts The number of points to generate. - * @param addErrors {@code true} for adding a random error in the target points. - * @param scaleTolerance Tolerance threshold for floating point comparisons. + * @param rd the random number generator to use. + * @param numPts the number of points to generate. + * @param addErrors {@code true} for adding a random error in the target points. + * @param scaleTolerance tolerance threshold for floating point comparisons. */ private static void test1D(final Random rd, final int numPts, final boolean addErrors, final double scaleTolerance, final double translationTolerance) @@ -185,10 +185,10 @@ public final strictfp class LinearTransf /** * Implementation of {@link #testExact2D()} and {@link #testNonExact2D()}. * - * @param rd The random number generator to use. - * @param numPts The number of points to generate. - * @param addErrors {@code true} for adding a random error in the target points. - * @param scaleTolerance Tolerance threshold for floating point comparisons. + * @param rd the random number generator to use. + * @param numPts the number of points to generate. + * @param addErrors {@code true} for adding a random error in the target points. + * @param scaleTolerance tolerance threshold for floating point comparisons. */ private static void test2D(final Random rd, final int numPts, final boolean addErrors, final double scaleTolerance, final double translationTolerance) Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/matrix/Matrix3Test.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/matrix/Matrix3Test.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/matrix/Matrix3Test.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/matrix/Matrix3Test.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -76,7 +76,7 @@ public final strictfp class Matrix3Test * Verifies our claim that {@code A.solve(B)} is equivalent to {@code A.inverse().multiply(B)}. * This claim is documented in {@link MatrixSIS#solve(Matrix)} javadoc. * - * @throws NoninvertibleMatrixException Should not happen. + * @throws NoninvertibleMatrixException should not happen. */ @Test public void testSolveEquivalence() throws NoninvertibleMatrixException { Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/matrix/Matrix4Test.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/matrix/Matrix4Test.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/matrix/Matrix4Test.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/matrix/Matrix4Test.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -82,11 +82,11 @@ public final strictfp class Matrix4Test /** * Tests the accuracy of a chain of matrix operations. * - * @throws NoninvertibleMatrixException Should never happen. + * @throws NoninvertibleMatrixException should never happen. */ @Test public void testAccuracy() throws NoninvertibleMatrixException { - final double parisMeridian = 2 + (20 + 13.82/60)/60; // Paris meridian: 2°20'13.82" + final double parisMeridian = 2 + (20 + 13.82/60)/60; // Paris meridian: 2°20'13.82" final double toRadians = StrictMath.PI / 180; /* * Gradians to degrees with a Prime Meridian shift @@ -95,7 +95,7 @@ public final strictfp class Matrix4Test final Matrix4 step1 = new Matrix4( 0.9, 0, 0, parisMeridian, 0, 0.9, 0, 0, - 0, 0, 0.8, 0, // Random conversion factor for z values. + 0, 0, 0.8, 0, // Random conversion factor for z values. 0, 0, 0, 1); /* * Degrees to radians with swapping of (longitude, latitude) axes Modified: sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/matrix/MatrixTestCase.java URL: http://svn.apache.org/viewvc/sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/matrix/MatrixTestCase.java?rev=1779709&r1=1779708&r2=1779709&view=diff ============================================================================== --- sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/matrix/MatrixTestCase.java [UTF-8] (original) +++ sis/trunk/core/sis-referencing/src/test/java/org/apache/sis/referencing/operation/matrix/MatrixTestCase.java [UTF-8] Sat Jan 21 09:14:56 2017 @@ -335,7 +335,7 @@ public abstract strictfp class MatrixTes for (int j=0; j