Package com.cubusmail.common.model

Examples of com.cubusmail.common.model.MessageListFields


    final int endIndex = (request.getEndRow() == null) ? -1 : request.getEndRow();
    final int pageSize = (endIndex != -1) ? (endIndex - startIndex) : GWTConstants.MESSAGE_LIST_PAGE_SIZE;

    final String folderId = GWTSessionManager.get().getCurrentMailFolder().getId();
    boolean ascending = true;
    MessageListFields sortColumn = null;

    if ( request.getSortBy() != null && request.getSortBy().length > 0 ) {
      SortSpecifier sortSpec = request.getSortBy()[0];
      sortColumn = MessageListFields.valueOf( sortSpec.getField() );
      ascending = SortDirection.ASCENDING == sortSpec.getSortDirection();
View Full Code Here

TOP

Related Classes of com.cubusmail.common.model.MessageListFields

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.