comparison src/main/java/jp/ac/u_ryukyu/ie/cr/jungle/transaction/editor/jungleTreeEditor/JungleTreeEditor.java @ 308:201cc75a9984

change Red Black Tree Edit Path Extends
author tatsuki
date Thu, 26 Jan 2017 15:23:25 +0900
parents 1a5f3d3f3437
children 2a0cb1f0ba4e
comparison
equal deleted inserted replaced
307:67c330ef2472 308:201cc75a9984
13 13
14 public Either<Error, JungleTreeEditor> addNewChildAndPutAttribute(NodePath path, int pos, String key, ByteBuffer value); 14 public Either<Error, JungleTreeEditor> addNewChildAndPutAttribute(NodePath path, int pos, String key, ByteBuffer value);
15 15
16 public Either<Error, JungleTreeEditor> deleteChildAt(NodePath path, int pos); 16 public Either<Error, JungleTreeEditor> deleteChildAt(NodePath path, int pos);
17 17
18 public Either<Error, JungleTreeEditor> deleteChildAt(NodePath path, int pos, String Key, ByteBuffer value);
19
20 public Either<Error, JungleTreeEditor> putAttribute(NodePath path, String key, ByteBuffer value); 18 public Either<Error, JungleTreeEditor> putAttribute(NodePath path, String key, ByteBuffer value);
21 19
22 public Either<Error, JungleTreeEditor> deleteAttribute(NodePath path, String key); 20 public Either<Error, JungleTreeEditor> deleteAttribute(NodePath path, String key);
23 21
24 public Either<Error, JungleTreeEditor> replaceNewRootNode(); 22 public Either<Error, JungleTreeEditor> replaceNewRootNode();