Package qilin.util
Interface Invalidable
- All Known Implementing Classes:
Edge
public interface Invalidable
A class implementing this interface can be invalidated. The invalidation state can be retrieved
by other classes.
- Author:
- Marc Miltenberger
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Invalidates the object.boolean
Return true if the object is invalid.
-
Method Details
-
isInvalid
boolean isInvalid()Return true if the object is invalid.- Returns:
- true if the object is invalid.
-
invalidate
void invalidate()Invalidates the object. Does nothing if the object is already invalid.
-