コード例 #1
0
ファイル: Node.java プロジェクト: rbirky1/cmsc341-proj2
  @Override
  /** This function ONLY worries about matching the STRING portion of this node */
  public int compareTo(Object x) {

    Node that = (Node) x;
    return this.getWord().compareTo(that.getWord());
  }
コード例 #2
0
ファイル: Node.java プロジェクト: rbirky1/cmsc341-proj2
  public boolean startsWith(Object x) {

    Node that = (Node) x;
    return that.getWord().startsWith(this.getWord());
  }