Package wicket.extensions.markup.html.repeater.util

Examples of wicket.extensions.markup.html.repeater.util.SortParam


  }

  public Iterator iterator(final int first, final int count)
  {

    final SortParam sp = this.getSort();
    return this.find(first, count, sp.getProperty(), sp.isAscending())
        .iterator();

  }
View Full Code Here


  }

  public Iterator iterator(final int first, final int count)
  {

    final SortParam sp = this.getSort();
    return this.find(first, count, sp.getProperty(), sp.isAscending())
        .iterator();

  }
View Full Code Here

TOP

Related Classes of wicket.extensions.markup.html.repeater.util.SortParam

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.