comparison src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/store/ChangeSet.java @ 10:a2c019a77c27

commit
author Shoshi TAMAKI
date Mon, 10 Dec 2012 18:50:53 +0900
parents
children df42dca47c3e
comparison
equal deleted inserted replaced
9:bb96e631f022 10:a2c019a77c27
1 package jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store;
2
3 import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.core.Tree;
4
5 public interface ChangeSet
6 {
7 public Tree getTree();
8 public ChangeSet prev();
9
10 public String uuid();
11 public long revision();
12
13 public Iterable<Command> getCommands();
14 }