Author: desruisseaux
Date: Mon Feb 16 13:52:55 2015
New Revision: 1660120
URL: http://svn.apache.org/r1660120
Log:
Javadoc fixes: expected <div>, not <span>.
Modified:
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/AbstractMathTransform.java
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ConcatenatedTransform.java
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/CopyTransform.java
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/LinearTransform1D.java
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/LogarithmicTransform1D.java
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ProjectiveTransform.java
Modified:
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/AbstractMathTransform.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/AbstractMathTransform.java?rev=1660120&r1=1660119&r2=1660120&view=diff
==============================================================================
---
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/AbstractMathTransform.java
[UTF-8] (original)
+++
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/AbstractMathTransform.java
[UTF-8] Mon Feb 16 13:52:55 2015
@@ -149,11 +149,11 @@ public abstract class AbstractMathTransf
/**
* Returns the parameter descriptors for this math transform, or {@code
null} if unknown.
*
- * <span class="note"><b>Relationship with ISO 19111:</b>
+ * <div class="note"><b>Relationship with ISO 19111:</b>
* This method is similar to {@link OperationMethod#getParameters()},
except that typical
* {@link MathTransform} implementations return parameters in standard
units (usually
* {@linkplain SI#METRE metres} or {@linkplain NonSI#DEGREE_ANGLE decimal
degrees}).
- * </span>
+ * </div>
*
* @return The parameter descriptors for this math transform, or {@code
null}.
*
@@ -169,11 +169,11 @@ public abstract class AbstractMathTransf
* Since this method returns a copy of the parameter values, any change to
a value will have no
* effect on this math transform.
*
- * <span class="note"><b>Relationship with ISO 19111:</b>
+ * <div class="note"><b>Relationship with ISO 19111:</b>
* This method is similar to {@link SingleOperation#getParameterValues()},
except that typical
* {@link MathTransform} implementations return parameters in standard
units (usually
* {@linkplain SI#METRE metres} or {@linkplain NonSI#DEGREE_ANGLE decimal
degrees}).
- * </span>
+ * </div>
*
* @return A copy of the parameter values for this math transform, or
{@code null}.
*
Modified:
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ConcatenatedTransform.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ConcatenatedTransform.java?rev=1660120&r1=1660119&r2=1660120&view=diff
==============================================================================
---
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ConcatenatedTransform.java
[UTF-8] (original)
+++
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ConcatenatedTransform.java
[UTF-8] Mon Feb 16 13:52:55 2015
@@ -856,11 +856,11 @@ class ConcatenatedTransform extends Abst
* Tests whether this transform does not move any points.
* Implementation checks if the two transforms are identity.
*
- * <span class="note"><b>Note:</b> this method should always returns
{@code false}, since
+ * <div class="note"><b>Note:</b> this method should always returns {@code
false}, since
* {@code create(…)} should have created specialized implementations for
identity cases.
* Nevertheless we perform the full check as a safety, in case someone
instantiated this
* class directly instead than using a factory method, or in case the
given math transforms
- * are mutable (they should not, be we can not control what the user gave
to us).</span>
+ * are mutable (they should not, be we can not control what the user gave
to us).</div>
*/
@Override
public boolean isIdentity() {
Modified:
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/CopyTransform.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/CopyTransform.java?rev=1660120&r1=1660119&r2=1660120&view=diff
==============================================================================
---
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/CopyTransform.java
[UTF-8] (original)
+++
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/CopyTransform.java
[UTF-8] Mon Feb 16 13:52:55 2015
@@ -142,10 +142,10 @@ final class CopyTransform extends Abstra
/**
* Tests whether this transform does not move any points.
*
- * <span class="note"><b>Note:</b> this method should always returns
{@code false}, since
+ * <div class="note"><b>Note:</b> this method should always returns {@code
false}, since
* {@code MathTransforms.linear(…)} should have created specialized
implementations for identity cases.
* Nevertheless we perform the full check as a safety, in case someone
instantiated this class directly
- * instead than using a factory method.</span>
+ * instead than using a factory method.</div>
*/
@Override
public boolean isIdentity() {
Modified:
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/LinearTransform1D.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/LinearTransform1D.java?rev=1660120&r1=1660119&r2=1660120&view=diff
==============================================================================
---
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/LinearTransform1D.java
[UTF-8] (original)
+++
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/LinearTransform1D.java
[UTF-8] Mon Feb 16 13:52:55 2015
@@ -168,10 +168,10 @@ class LinearTransform1D extends Abstract
/**
* Tests whether this transform does not move any points.
*
- * <span class="note"><b>Note:</b> this method should always returns
{@code false}, since
+ * <div class="note"><b>Note:</b> this method should always returns {@code
false}, since
* {@code MathTransforms.linear(…)} should have created specialized
implementations for identity cases.
* Nevertheless we perform the full check as a safety, in case someone
instantiated this class directly
- * instead than using a factory method.</span>
+ * instead than using a factory method.</div>
*/
@Override
public boolean isIdentity() {
Modified:
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/LogarithmicTransform1D.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/LogarithmicTransform1D.java?rev=1660120&r1=1660119&r2=1660120&view=diff
==============================================================================
---
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/LogarithmicTransform1D.java
[UTF-8] (original)
+++
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/LogarithmicTransform1D.java
[UTF-8] Mon Feb 16 13:52:55 2015
@@ -285,10 +285,10 @@ class LogarithmicTransform1D extends Abs
/**
* The offset to add to the logarithm.
*
- * <span class="note"><b>Note:</b> the offset could be handled by a
concatenation with {@link LinearTransform1D}.
+ * <div class="note"><b>Note:</b> the offset could be handled by a
concatenation with {@link LinearTransform1D}.
* instead than an explicit field in this class. However the
<var>offset</var> + log<sub>base</sub>(<var>x</var>)
* formula is extensively used as a <cite>transfer function</cite> in
grid coverages. Consequently we keep this
- * explicit field for performance reasons.</span>
+ * explicit field for performance reasons.</div>
*/
private final double offset;
Modified:
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ProjectiveTransform.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ProjectiveTransform.java?rev=1660120&r1=1660119&r2=1660120&view=diff
==============================================================================
---
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ProjectiveTransform.java
[UTF-8] (original)
+++
sis/branches/JDK8/core/sis-referencing/src/main/java/org/apache/sis/referencing/operation/transform/ProjectiveTransform.java
[UTF-8] Mon Feb 16 13:52:55 2015
@@ -205,10 +205,10 @@ class ProjectiveTransform extends Abstra
/**
* Tests whether this transform does not move any points.
*
- * <span class="note"><b>Note:</b> this method should always returns
{@code false}, since
+ * <div class="note"><b>Note:</b> this method should always returns {@code
false}, since
* {@code MathTransforms.linear(…)} should have created specialized
implementations for identity cases.
* Nevertheless we perform the full check as a safety, in case someone
instantiated this class directly
- * instead than using a factory method.</span>
+ * instead than using a factory method.</div>
*/
@Override
public boolean isIdentity() {