![]() ![]() | ![]() |
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); }