comparison src/alice/jungle/persistence/PersistentChangeSet.java @ 87:f142dd4abc74

Implemented getTreeName and uuid method in some classes
author one
date Tue, 05 Nov 2013 08:41:12 +0900
parents e641f559559c
children
comparison
equal deleted inserted replaced
86:bcaf28f8244d 87:f142dd4abc74
12 private final ChangeList changeList; 12 private final ChangeList changeList;
13 private final String uuid; 13 private final String uuid;
14 private final long revision; 14 private final long revision;
15 private final String treeName; 15 private final String treeName;
16 16
17 public PersistentChangeSet(Node _node,ChangeSet _prev,ChangeList _log,String _uuid,long _revision, String _treeName) 17 public PersistentChangeSet(Node _node,ChangeSet _prev,ChangeList _log,String _uuid, String _treeName, long _revision)
18 { 18 {
19 root = _node; 19 root = _node;
20 previous = _prev; 20 previous = _prev;
21 changeList = _log; 21 changeList = _log;
22 uuid = _uuid; 22 uuid = _uuid;