コード例 #1
0
ファイル: TreeNode.java プロジェクト: ecario/SearchTest
 public TreeNode(T data) {
   this();
   setData(data);
 }