diff src/main/csharp/jp.ac.u-ryukyu.ie.cr/jungle-main/store/impl/TreeNodeChildren.cs @ 17:01a08cf4b2d9

Liq Files
author Kazuma
date Mon, 07 Nov 2016 01:05:24 +0900
parents abe0c247f5a5
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/main/csharp/jp.ac.u-ryukyu.ie.cr/jungle-main/store/impl/TreeNodeChildren.cs	Mon Nov 07 01:05:24 2016 +0900
@@ -0,0 +1,8 @@
+
+public interface TreeNodeChildren : Children {
+	Either<Error, TreeNode> addNewChildAt (int pos);
+	Either<Error, TreeNode> deleteChildAt(int pos);
+	Either<Error,TreeNode> addNewChildAt(int pos,TreeNode newChild);
+	Either<Error,TreeNode> replaceNode(int pos,TreeNode replacement);
+	List<TreeNode> getChildrenAsRawList();
+}