01: /*
02: * Created on 10-Jul-2005
03: *
04: */
05: package com.jofti.cache;
06:
07: /**
08:
09: *
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 {
16:
17: public Object getKey();
18: }
|