Last change
on this file since 339 was
193,
checked in by Maciej Komosinski, 11 years ago
|
Set svn:eol-style native for all textual files
|
-
Property svn:eol-style set to
native
|
File size:
249 bytes
|
Line | |
---|
1 | /* |
---|
2 | Copyright 2009 by Marcin Szubert |
---|
3 | Licensed under the Academic Free License version 3.0 |
---|
4 | */ |
---|
5 | |
---|
6 | package cecj.utils; |
---|
7 | |
---|
8 | /** |
---|
9 | * |
---|
10 | * @author Marcin Szubert |
---|
11 | * |
---|
12 | * @param <T> |
---|
13 | */ |
---|
14 | public interface EquivalenceComparator<T> { |
---|
15 | boolean equal(T o1, T o2); |
---|
16 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.