view src/treecms/api/MonotonicTreeNode.java @ 21:f3150b37f9be

commit
author shoshi
date Mon, 06 Jun 2011 21:49:04 +0900
parents 084de6909451
children
line wrap: on
line source

package treecms.api;

/**
 * NodeのDoubleLinkedな実装です.SingleLinkedとは違いNodeの親情報まで保持します.
 * TreeNodeとは違い、この実装は木を非破壊的に編集します.
 * @author shoshi
 */
public interface MonotonicTreeNode extends NodeContext , NodeAttributes , NodeChildren<MonotonicTreeNode>
{
	public Node getNode();
	public MonotonicTreeNode getParent();
}