Skip to content

Package: Matchable

Matchable

Coverage

1: package de.fhdw.wtf.persistence.meta;
2:
3: /**
4: * Provides Compareation between 2 Objects.
5: */
6: public interface Matchable {
7:         /**
8:          * Checks if two DatabaseItems are the same.
9:          *
10:          * @param other
11:          * Another object.
12:          * @return Provides true the Objects are the same. (not equals)
13:          */
14:         boolean isTheSameAs(java.lang.Object other);
15: }