view src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/store/impl/TreeNode.java @ 87:4c6b915302a8

Delete Logging Node Hock
author one
date Thu, 04 Sep 2014 13:12:08 +0900
parents fb1dc448ac8c
children a1e20a440ddd
line wrap: on
line source

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

import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.core.AttributesContainer;
import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.impl.logger.OperationLog;

public interface TreeNode extends AttributesContainer
{
	public TreeNodeChildren getChildren();
	
	@Override
	public TreeNodeAttributes getAttributes();
	
	public TreeNode createNewNode();
	
	public OperationLog getLog();
	
	public void putLog(OperationLog _log);
	
}