コード例 #1
0
ファイル: TreeNode.java プロジェクト: ecario/SearchTest
 public boolean equals(TreeNode<T> node) {
   return node.getData().equals(getData());
 }