view src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/store/impl/logger/TreeOperationLog.java @ 53:ed890dcb673e

modified JungleTreeEditor
author Shoshi TAMAKI
date Fri, 08 Feb 2013 12:32:37 +0900
parents 8c6ff361b68a
children
line wrap: on
line source

package jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.impl.logger;

import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.NodePath;
import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.operations.NodeOperation;
import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.operations.TreeOperation;

public interface TreeOperationLog extends Iterable<TreeOperation>
{
	public TreeOperationLog add(NodePath _p,NodeOperation _op);
	public TreeOperationLog append(TreeOperationLog _log);
	public int length();
}