source:
xssim/trunk/src/test/rewolucja/resources/StructureEntityInterface.java
@
104
Revision 104, 241 bytes checked in by wojtekp, 13 years ago (diff) | |
---|---|
|
Line | |
---|---|
1 | package test.rewolucja.resources; |
2 | |
3 | import java.util.List; |
4 | |
5 | public 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.