/*
* Created on 31/07/2003
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package sce.list;
/**
* @author TOSHIBA
*
* To change the template for this generated type comment go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
public interface DNode{
void setPrevious(DNode parDNode);
void setNext(DNode parDNode);
DNode getNext();
void setContent(Object parObject);
Object getContent();
DNode getPrevious();
}