| dtw.webmail.util.Identifiable
All known Subclasses: dtw.webmail.util.AbstractIdentifiable,
Identifiable | public interface Identifiable (Code) | | Interface modeling an Associator.
author: Dieter Wimberger version: 0.9.7 07/02/2003 |
Method Summary | |
public boolean | equals(Object o) Tests if this Identifiable is
equal to a given Object instance.
Equality is defined by equality of the
unique identifier.
Parameters: o - the Object to compare to. | public String | getUID() Returns the unique identifier of
this Identifiable. |
equals | public boolean equals(Object o)(Code) | | Tests if this Identifiable is
equal to a given Object instance.
Equality is defined by equality of the
unique identifier.
Parameters: o - the Object to compare to. true if equal, false otherwise. |
getUID | public String getUID()(Code) | | Returns the unique identifier of
this Identifiable.
the unique identifier as String. |
|
|