source: xssim/trunk/src/test/rewolucja/resources/StructureEntityInterface.java @ 104

Revision 104, 241 bytes checked in by wojtekp, 13 years ago (diff)
  • Property svn:mime-type set to text/plain
Line 
1package test.rewolucja.resources;
2
3import java.util.List;
4
5public interface StructureEntityInterface<T> {
6       
7        public T getParent();
8
9        public void setParent(T parent);
10
11        public List<T> getChildren() ;
12
13        public void addChild(T children) ;
14
15       
16}
Note: See TracBrowser for help on using the repository browser.