HTML
439440441442443444445446447448
* Returns <code>true</code> if <code>o</code> is a <code>Link</code> as well * pointing to the same resource. */ public boolean equals(Object o) { if (o instanceof Link) { Link l = (Link) o; return href.equals(l.getHref()); } return false; }