Author: desruisseaux
Date: Mon Feb 25 13:55:28 2013
New Revision: 1449705
URL: http://svn.apache.org/r1449705
Log:
Minor javadoc fixes.
Modified:
sis/branches/JDK7/sis-referencing/src/test/java/org/apache/sis/geometry/GeneralDirectPositionTest.java
sis/branches/JDK7/sis-referencing/src/test/java/org/apache/sis/geometry/GeneralEnvelopeTest.java
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/measure/RangeFormat.java
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/collection/RangeSet.java
sis/branches/JDK7/sis-utility/src/test/java/org/apache/sis/test/TestCase.java
Modified:
sis/branches/JDK7/sis-referencing/src/test/java/org/apache/sis/geometry/GeneralDirectPositionTest.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/sis-referencing/src/test/java/org/apache/sis/geometry/GeneralDirectPositionTest.java?rev=1449705&r1=1449704&r2=1449705&view=diff
==============================================================================
---
sis/branches/JDK7/sis-referencing/src/test/java/org/apache/sis/geometry/GeneralDirectPositionTest.java
[UTF-8] (original)
+++
sis/branches/JDK7/sis-referencing/src/test/java/org/apache/sis/geometry/GeneralDirectPositionTest.java
[UTF-8] Mon Feb 25 13:55:28 2013
@@ -73,7 +73,7 @@ public final strictfp class GeneralDirec
}
/**
- * Tests the {@link GeneralDirectPosition#GeneralDirectPosition(String)}
constructor
+ * Tests the {@link
GeneralDirectPosition#GeneralDirectPosition(CharSequence)} constructor
* with invalid input strings.
*/
@Test
Modified:
sis/branches/JDK7/sis-referencing/src/test/java/org/apache/sis/geometry/GeneralEnvelopeTest.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/sis-referencing/src/test/java/org/apache/sis/geometry/GeneralEnvelopeTest.java?rev=1449705&r1=1449704&r2=1449705&view=diff
==============================================================================
---
sis/branches/JDK7/sis-referencing/src/test/java/org/apache/sis/geometry/GeneralEnvelopeTest.java
[UTF-8] (original)
+++
sis/branches/JDK7/sis-referencing/src/test/java/org/apache/sis/geometry/GeneralEnvelopeTest.java
[UTF-8] Mon Feb 25 13:55:28 2013
@@ -428,7 +428,7 @@ public final strictfp class GeneralEnvel
}
/**
- * Tests the {@link GeneralEnvelope#GeneralEnvelope(String)} constructor.
+ * Tests the {@link GeneralEnvelope#GeneralEnvelope(CharSequence)}
constructor.
*/
@Test
public void testWktParsing() {
@@ -482,7 +482,8 @@ public final strictfp class GeneralEnvel
}
/**
- * Tests the {@link GeneralEnvelope#equals} method.
+ * Tests the {@link GeneralEnvelope#equals(Object)} and
+ * {@link GeneralEnvelope#equals(Envelope, double, boolean)} methods.
*/
@Test
public void testEquals() {
Modified:
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/measure/RangeFormat.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/measure/RangeFormat.java?rev=1449705&r1=1449704&r2=1449705&view=diff
==============================================================================
---
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/measure/RangeFormat.java
[UTF-8] (original)
+++
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/measure/RangeFormat.java
[UTF-8] Mon Feb 25 13:55:28 2013
@@ -182,7 +182,7 @@ public class RangeFormat extends Format
// All "character" fields below are code point values.
/**
* The character opening an empty range or a range containing only one
element.
- * The default value is {@code '{'}.
+ * The default value is <code>'{'</code>.
*/
private final int openSet;
@@ -208,7 +208,7 @@ public class RangeFormat extends Format
/**
* The character closing an empty range or a range containing only one
element.
- * The default value is {@code '}'}.
+ * The default value is <code>'}'</code>.
*/
private final int closeSet;
Modified:
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/collection/RangeSet.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/collection/RangeSet.java?rev=1449705&r1=1449704&r2=1449705&view=diff
==============================================================================
---
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/collection/RangeSet.java
[UTF-8] (original)
+++
sis/branches/JDK7/sis-utility/src/main/java/org/apache/sis/util/collection/RangeSet.java
[UTF-8] Mon Feb 25 13:55:28 2013
@@ -61,7 +61,7 @@ import static org.apache.sis.util.Number
* return the same values for all instances added to this set. Those values
need to be specified
* at construction time. If a user needs to store mixed kind of ranges, then
he needs to subclass
* this {@code RangeSet} class and override the {@link #add(Range)}, {@link
#remove(Object)} and
- * {@link newRange(Comparable, Comparable)} methods.
+ * {@link #newRange(Comparable, Comparable)} methods.
*
* {@note Current implementation does not yet support open intervals. The
ranges shall be either
* closed intervals, or half-open. This limitation exists because supporting
open intervals implies
@@ -254,7 +254,7 @@ public class RangeSet<E extends Comparab
/**
* Constructs an initially empty set of ranges.
* This constructor is provided for sub-classing only.
- * Client code should use the static {@link #create(Class)} method instead.
+ * Client code should use the static {@link #create(Class, boolean,
boolean)} method instead.
*
* @param elementType The type of the range elements.
* @param isMinIncluded {@code true} if the minimal values are inclusive,
or {@code false} if exclusive.
@@ -1396,7 +1396,7 @@ public class RangeSet<E extends Comparab
/**
* A {@link RangeSet} implementation for {@link NumberRange} elements.
*
- * @see RangeSet#create(Class)
+ * @see RangeSet#create(Class, boolean, boolean)
*/
private static final class Numeric<E extends Number & Comparable<? super
E>> extends RangeSet<E> {
private static final long serialVersionUID = 934107071458551753L;
Modified:
sis/branches/JDK7/sis-utility/src/test/java/org/apache/sis/test/TestCase.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/sis-utility/src/test/java/org/apache/sis/test/TestCase.java?rev=1449705&r1=1449704&r2=1449705&view=diff
==============================================================================
---
sis/branches/JDK7/sis-utility/src/test/java/org/apache/sis/test/TestCase.java
[UTF-8] (original)
+++
sis/branches/JDK7/sis-utility/src/test/java/org/apache/sis/test/TestCase.java
[UTF-8] Mon Feb 25 13:55:28 2013
@@ -80,7 +80,6 @@ public abstract strictfp class TestCase
* property has been set to a different value.
*
* @see org.apache.sis.test
- * @see #flushVerboseOutput()
*/
public static final PrintWriter out;