comparison src/main/csharp/jp.ac.u-ryukyu.ie.cr/jungle-main/JungleTreeEditor.cs @ 17:01a08cf4b2d9

Liq Files
author Kazuma
date Mon, 07 Nov 2016 01:05:24 +0900
parents abe0c247f5a5
children
comparison
equal deleted inserted replaced
16:8f1ce942abfc 17:01a08cf4b2d9
1 
2 public interface JungleTreeEditor {
3 Either<Error,JungleTreeEditor> addNewChildAt(NodePath path,int pos);
4 Either<Error,JungleTreeEditor> deleteChildAt(NodePath path,int pos);
5 Either<Error,JungleTreeEditor> putAttribute(NodePath path,string key, byte[] value);
6 Either<Error,JungleTreeEditor> deleteAttribute(NodePath path,string key);
7 Either<Error, JungleTreeEditor> replaceNewRootNode();
8 Either<Error,JungleTreeEditor> edit(NodePath path,NodeEditor editor);
9 Either<Error,JungleTreeEditor> success();
10 Either<Error,JungleTreeEditor> flushSuccess();
11
12 }