view src/treecms/api/NodeTable.java @ 23:77a894c0b919

commit
author shoshi
date Thu, 09 Jun 2011 01:03:48 +0900
parents
children
line wrap: on
line source

package treecms.api;

public interface NodeTable
{
	public void register(Node _newNode);
	public Node get(NodeID _id);
	public Node tip(String _fid);
}