MATH-1284: Fix javadoc references
This commit is contained in:
parent
05edf06360
commit
c9e49faac2
|
@ -26,7 +26,7 @@ public abstract class Vector1D implements Vector<Euclidean1D> {
|
||||||
|
|
||||||
/** Get the abscissa of the vector.
|
/** Get the abscissa of the vector.
|
||||||
* @return abscissa of the vector
|
* @return abscissa of the vector
|
||||||
* @see #Vector1D(double)
|
* @see #Cartesian1D(double)
|
||||||
*/
|
*/
|
||||||
public abstract double getX();
|
public abstract double getX();
|
||||||
|
|
||||||
|
|
|
@ -25,13 +25,13 @@ public abstract class Vector2D implements Vector<Euclidean2D> {
|
||||||
|
|
||||||
/** Get the abscissa of the vector.
|
/** Get the abscissa of the vector.
|
||||||
* @return abscissa of the vector
|
* @return abscissa of the vector
|
||||||
* @see #Vector2D(double, double)
|
* @see #Cartesian2D(double, double)
|
||||||
*/
|
*/
|
||||||
public abstract double getX();
|
public abstract double getX();
|
||||||
|
|
||||||
/** Get the ordinate of the vector.
|
/** Get the ordinate of the vector.
|
||||||
* @return ordinate of the vector
|
* @return ordinate of the vector
|
||||||
* @see #Vector2D(double, double)
|
* @see #Cartesian2D(double, double)
|
||||||
*/
|
*/
|
||||||
public abstract double getY();
|
public abstract double getY();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue