KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > innig > macker > example > conventions > Tree


1 package net.innig.macker.example.conventions;
2
3 import java.util.*;
4
5 public interface Tree
6     {
7     public Tree getParent();
8     public HashSet/*<Tree>*/ getChildren(); // WRONG: should return Set
9
}
Popular Tags