Loading functional interfaces with generic parameters.

This commit is contained in:
Evgeny Gerashchenko
2013-03-18 18:53:42 +04:00
parent 526cc3ce15
commit 3b558d575c
5 changed files with 44 additions and 5 deletions
@@ -0,0 +1,7 @@
package test;
public interface Comparator<T> {
int compare(T o1, T o2);
boolean equals(Object obj);
}