Package ch.entwine.weblounge.common.content.page

Examples of ch.entwine.weblounge.common.content.page.Link


   * 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;
  }
View Full Code Here

TOP

Related Classes of ch.entwine.weblounge.common.content.page.Link

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.