view src/treecms/api/MonotonicTreeNode.java @ 27:aecc55e87143 default tip

test commit
author Shoshi TAMAKI <shoshi@cr.ie.u-ryukyu.ac.jp>
date Thu, 18 Aug 2011 17:37:03 +0900
parents f3150b37f9be
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();
}