Package evolaris.platform.smssvc.web.form.InteractionLogListForm

Examples of evolaris.platform.smssvc.web.form.InteractionLogListForm.InteractionLogListEntry


    for (InteractionLog interactionLog : interactionLogs) {
      if (pos >= end){
        break;
      }
      if (pos >= start){
        interactionLogsPaginated.add(new InteractionLogListEntry(interactionLog));
      }
      pos++;
    }

    InteractionLogListForm.InteractionLogPaginatedList paginatedList = new InteractionLogListForm.InteractionLogPaginatedList(interactionLogsPaginated,interactionLogs.size(),ENTRIES_PER_PAGE,pageNumber, sortCriterion,sortOrderDisplayTag);
View Full Code Here

TOP

Related Classes of evolaris.platform.smssvc.web.form.InteractionLogListForm.InteractionLogListEntry

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.