/*
 * 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 SNode {

	SNode getNext();

	void setNext(SNode parSNode);

	void setContent(Object parObject);

	Object getContent();

}