KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > jofti > cache > INonComparableKeyWrapper


1 /*
2  * Created on 10-Jul-2005
3  *
4  */

5 package com.jofti.cache;
6
7 /**
8
9  *
10  * Provides an interface for implementations of keyWrapper around keys that do
11  * not implement Comparable. <p>
12  *
13  * @author Steve Woodcock
14  */

15 public interface INonComparableKeyWrapper extends Comparable JavaDoc {
16
17     public Object JavaDoc getKey();
18 }
19
Popular Tags