Package net.sourceforge.pebble.domain

Examples of net.sourceforge.pebble.domain.PageBasedContent


   * @param o2  object 2
   * @return  -n, 0 or +n if the title of the first blog entry is less than,
   *          the same as or greater than the second, respectively
   */
  public int compare(Object o1, Object o2) {
    PageBasedContent c1 = (PageBasedContent)o1;
    PageBasedContent c2 = (PageBasedContent)o2;

    return c1.getTitle().compareToIgnoreCase(c2.getTitle());
  }
View Full Code Here

TOP

Related Classes of net.sourceforge.pebble.domain.PageBasedContent

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.