01: // LRUAble.java
02: // $Id: LRUAble.java,v 1.3 1998/01/22 14:25:09 bmahe Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1997.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.util;
07:
08: public interface LRUAble {
09: public LRUAble getNext();
10:
11: public LRUAble getPrev();
12:
13: public void setNext(LRUAble next);
14:
15: public void setPrev(LRUAble prev);
16:
17: }
|