comparison src/main/java/jp/ac/u_ryukyu/ie/cr/shoshi/jungle/store/trasnformer/EditableNode.java @ 78:540a27dde42f

Delete EnableNode and EnableNodeWrapper but not repair test program
author one
date Sun, 31 Aug 2014 00:44:35 +0900
parents 0f01ee222035
children
comparison
equal deleted inserted replaced
77:0f01ee222035 78:540a27dde42f
1 package jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.trasnformer; 1 /*package jp.ac.u_ryukyu.ie.cr.shoshi.jungle.store.trasnformer;
2 2
3 import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.core.AttributesContainer; 3 import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.core.AttributesContainer;
4 import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.core.Parent; 4 import jp.ac.u_ryukyu.ie.cr.shoshi.jungle.core.Parent;
5 5
6 public interface EditableNode<T extends Parent<T>> extends AttributesContainer , Parent<T> 6 public interface EditableNode<T extends Parent<T>> extends AttributesContainer , Parent<T>
7 { 7 {
8 public EditableAttributes<T> getAttributes(); 8 public EditableAttributes<T> getAttributes();
9 public EditableChildren<T> getChildren(); 9 public EditableChildren<T> getChildren();
10 } 10 }
11 11
12 */