Author: desruisseaux
Date: Sun Dec 16 10:14:16 2012
New Revision: 1422498

URL: http://svn.apache.org/viewvc?rev=1422498&view=rev
Log:
Javadoc fixes.

Modified:
    
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/AbstractDirectPosition.java
    
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/AbstractEnvelope.java
    
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/DirectPosition1D.java
    
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/DirectPosition2D.java

Modified: 
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/AbstractDirectPosition.java
URL: 
http://svn.apache.org/viewvc/sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/AbstractDirectPosition.java?rev=1422498&r1=1422497&r2=1422498&view=diff
==============================================================================
--- 
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/AbstractDirectPosition.java
 (original)
+++ 
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/AbstractDirectPosition.java
 Sun Dec 16 10:14:16 2012
@@ -37,8 +37,8 @@ import static org.apache.sis.util.String
  * {@link #equals(Object)} and {@link #hashCode()} methods.
  *
  * <p>This base class does not hold any state and does not implement the 
{@link java.io.Serializable}
- * or {@link org.geotoolkit.util.Cloneable} interfaces. The internal 
representation, and the choice
- * to be cloneable or serializable, is left to subclasses.</p>
+ * or {@link Cloneable} interfaces. The internal representation, and the 
choice to be cloneable or
+ * serializable, is left to subclasses.</p>
  *
  * @author Martin Desruisseaux (IRD, Geomatys)
  * @since   0.3 (derived from geotk-2.4)

Modified: 
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/AbstractEnvelope.java
URL: 
http://svn.apache.org/viewvc/sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/AbstractEnvelope.java?rev=1422498&r1=1422497&r2=1422498&view=diff
==============================================================================
--- 
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/AbstractEnvelope.java
 (original)
+++ 
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/AbstractEnvelope.java
 Sun Dec 16 10:14:16 2012
@@ -46,8 +46,8 @@ import java.util.Objects;
 /**
  * Base class for {@link Envelope} implementations.
  * This base class does not hold any state and does not implement the {@link 
java.io.Serializable}
- * or {@link org.geotoolkit.util.Cloneable} interfaces. The internal 
representation, and the choice
- * to be cloneable or serializable, is left to subclasses.
+ * or {@link Cloneable} interfaces. The internal representation, and the 
choice to be cloneable or
+ * serializable, is left to subclasses.
  *
  * <p>Implementors needs to define at least the following methods:</p>
  * <ul>
@@ -209,8 +209,8 @@ public abstract class AbstractEnvelope i
     /**
      * Returns {@code true} if the given value is negative, without checks for 
{@code NaN}.
      * This method should be invoked only when the number is known to not be 
{@code NaN},
-     * otherwise the safer {@link 
org.geotoolkit.math.XMath#isNegative(double)} method shall
-     * be used instead. Note that the check for {@code NaN} doesn't need to be 
explicit.
+     * otherwise the safer {@link 
org.apache.sis.math.MathFunctions#isNegative(double)} method
+     * shall be used instead. Note that the check for {@code NaN} doesn't need 
to be explicit.
      * For example in the following code, {@code NaN} values were implicitly 
checked by
      * the {@code (a < b)} comparison:
      *

Modified: 
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/DirectPosition1D.java
URL: 
http://svn.apache.org/viewvc/sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/DirectPosition1D.java?rev=1422498&r1=1422497&r2=1422498&view=diff
==============================================================================
--- 
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/DirectPosition1D.java
 (original)
+++ 
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/DirectPosition1D.java
 Sun Dec 16 10:14:16 2012
@@ -90,7 +90,7 @@ public class DirectPosition1D extends Ab
      * @throws MismatchedDimensionException If the given point is not 
one-dimensional.
      *
      * @see #toString()
-     * @see org.geotoolkit.measure.CoordinateFormat
+     * @see org.apache.sis.measure.CoordinateFormat
      */
     public DirectPosition1D(final String wkt) throws IllegalArgumentException {
         final double[] ordinates = parse(wkt);

Modified: 
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/DirectPosition2D.java
URL: 
http://svn.apache.org/viewvc/sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/DirectPosition2D.java?rev=1422498&r1=1422497&r2=1422498&view=diff
==============================================================================
--- 
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/DirectPosition2D.java
 (original)
+++ 
sis/branches/JDK7/sis-referencing/src/main/java/org/apache/sis/geometry/DirectPosition2D.java
 Sun Dec 16 10:14:16 2012
@@ -152,7 +152,7 @@ public class DirectPosition2D extends Po
      * @throws MismatchedDimensionException If the given point is not 
two-dimensional.
      *
      * @see #toString()
-     * @see org.geotoolkit.measure.CoordinateFormat
+     * @see org.apache.sis.measure.CoordinateFormat
      */
     public DirectPosition2D(final String wkt) throws IllegalArgumentException {
         final double[] ordinates = AbstractDirectPosition.parse(wkt);


Reply via email to