summaryrefslogtreecommitdiffstats
path: root/src/javax/vecmath/Tuple3d.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/javax/vecmath/Tuple3d.java')
-rw-r--r--src/javax/vecmath/Tuple3d.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/javax/vecmath/Tuple3d.java b/src/javax/vecmath/Tuple3d.java
index 923ea25..bf87e60 100644
--- a/src/javax/vecmath/Tuple3d.java
+++ b/src/javax/vecmath/Tuple3d.java
@@ -322,6 +322,7 @@ public abstract class Tuple3d implements java.io.Serializable, Cloneable {
* The form is (x,y,z).
* @return the String representation
*/
+ @Override
public String toString() {
return "(" + this.x + ", " + this.y + ", " + this.z + ")";
}
@@ -335,6 +336,7 @@ public abstract class Tuple3d implements java.io.Serializable, Cloneable {
* same hash value, although this is not likely.
* @return the integer hash code value
*/
+ @Override
public int hashCode() {
long bits = 1L;
bits = 31L * bits + VecMathUtil.doubleToLongBits(x);
@@ -365,6 +367,7 @@ public abstract class Tuple3d implements java.io.Serializable, Cloneable {
* @param t1 the Object with which the comparison is made
* @return true or false
*/
+ @Override
public boolean equals(Object t1)
{
try {
@@ -670,6 +673,7 @@ public abstract class Tuple3d implements java.io.Serializable, Cloneable {
* @see java.lang.Cloneable
* @since vecmath 1.3
*/
+ @Override
public Object clone() {
// Since there are no arrays we can just use Object.clone()
try {