view src/treecms/api/Node.java @ 1:bdde898e8ef9

add Forest
author shoshi
date Wed, 16 Feb 2011 17:06:51 +0900
parents 7ecb9273581d
children 4a5ee88f02cf
line wrap: on
line source

package treecms.api;

public interface Node extends Iterable<Node>
{
	public NodeID getID();
	public NodeData getData();
	public NodeData newData();
}