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

	private Object content;

	private SNode next;

	public SNode getNext() {
		return this.next;
	}

	public void setNext(SNode parSNode) {
		this.next = parSNode;
	}

	public void setContent(Object parObject) {
		this.content = parObject;
	}

	public Object getContent() {
		return this.content;
	}

	public SNodeImpl(Object parContent) {
		this.content = parContent;
	}

	public SNodeImpl(Object parContent, SNode parNext) {
		this(parContent);
		this.next = parNext;
	}

}