File:  [Public] / java / classes / org / w3c / util / LRUAble.java
Revision 1.4: download - view: text, annotated - select for diffs
Fri Oct 18 13:42:30 2013 UTC (11 years, 10 months ago) by ylafon
Branches: MAIN
CVS tags: HEAD
generics + raw types + serializer

// LRUAble.java
// $Id: LRUAble.java,v 1.4 2013/10/18 13:42:30 ylafon Exp $  
// (c) COPYRIGHT MIT and INRIA, 1997.
// Please first read the full copyright statement in file COPYRIGHT.html

package org.w3c.util;

public interface LRUAble {
    public LRUAble getNext();

    public LRUAble getPrev();

    public void setNext(LRUAble next);

    public void setPrev(LRUAble prev);

}

Webmaster