Interface IDefinitionIdentifier
-
public interface IDefinitionIdentifier
The component identifier interface. It allows to determine the definition uniquely.
Each implementation of this interface should override#equals(Object)
and#hashCode()
correctly.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
matches(Object id)
Checks whether the identifier matches the specifiedid
.
-
-
-
Method Detail
-
matches
boolean matches(Object id)
Checks whether the identifier matches the specifiedid
.- Parameters:
id
- the object that represents identifier, cannot benull
.- Returns:
true
if the identifier matches the specified object,false
- otherwise.
-
-