- Timestamp:
- 03/25/08 20:32:12 (10 months ago)
- Files:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
collected/trunk/java-dsu/src/com/bitstructures/SortKey.java
r67 r70 3 3 import java.lang.Comparable; 4 4 5 public interface ComparableExtractor<T,V extends Comparable<V>> {6 public V extract(T obj);5 public interface SortKey<T,C extends Comparable<C>> { 6 public C getValue(T obj); 7 7 }
