/*
 * Created on 18/08/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 aspect NodeOrderAspect {
	
	public interface DNodeOrderInterface{
		public int getOrder();
		public void setOrder(int newOrder);
	}
	
	declare parents: DNode extends DNodeOrderInterface;
	
	private int DNodeImpl.order = 0;
	
	public int DNodeImpl.getOrder(){return this.order;}
	public void DNodeImpl.setOrder(int newOrder){this.order=newOrder;}
	

}