1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-06 17:26:01 +02:00

equals() method add

This commit is contained in:
Alain Magloire 2002-08-20 04:13:09 +00:00
parent cb3def3656
commit e1c0a5fdee

View file

@ -66,4 +66,10 @@ public interface ICDILocation
* @throws CDIException on failure. Reasons include:
*/
ICDIInstruction[] getInstructions( int maxCount ) throws CDIException;
/**
* Return true if the both location refers to the same
* place.
*/
boolean equals(ICDILocation location);
}