comparison src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/store/trasnformer/PutAttribute.java @ 87:4c6b915302a8

Delete Logging Node Hock
author one
date Thu, 04 Sep 2014 13:12:08 +0900
parents fb1dc448ac8c
children c5095a354dfc
comparison
equal deleted inserted replaced
86:fb1dc448ac8c 87:4c6b915302a8
26 { 26 {
27 TreeNodeAttributes attrs = _e.getAttributes(); 27 TreeNodeAttributes attrs = _e.getAttributes();
28 return attrs.put(key,value); 28 return attrs.put(key,value);
29 } 29 }
30 30
31 @Override
32 public OperationLog getLog() {
33 OperationLog op = new DefaultOperationLog();
34 PutAttributeOperation putAttribute = new PutAttributeOperation(key,value);
35 return op.add(putAttribute);
36 }
37 } 31 }