From a77ea6aabd1ddf527176a1c1c7a124e4e4b27fb8 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Sat, 19 Mar 2011 08:44:01 +0100 Subject: Add @Override --- .../classes/javax/media/nativewindow/CapabilitiesImmutable.java | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/nativewindow') diff --git a/src/nativewindow/classes/javax/media/nativewindow/CapabilitiesImmutable.java b/src/nativewindow/classes/javax/media/nativewindow/CapabilitiesImmutable.java index 3aae8c8fb..8fb704bad 100644 --- a/src/nativewindow/classes/javax/media/nativewindow/CapabilitiesImmutable.java +++ b/src/nativewindow/classes/javax/media/nativewindow/CapabilitiesImmutable.java @@ -104,14 +104,17 @@ public interface CapabilitiesImmutable extends WriteCloneable { Object cloneMutable(); /** Equality over the immutable attributes of both objects */ + @Override boolean equals(Object obj); /** hash code over the immutable attributes of both objects */ + @Override int hashCode(); /** Return a textual representation of this object. Use the given StringBuffer [optional]. */ StringBuffer toString(StringBuffer sink); /** Returns a textual representation of this object. */ + @Override String toString(); } -- cgit v1.2.3