1 17 package org.alfresco.web.data; 18 19 22 public interface IDataContainer 23 { 24 29 public String getCurrentSortColumn(); 30 31 37 public boolean isCurrentSortDescending(); 38 39 42 public int getPageSize(); 43 44 49 public int getCurrentPage(); 50 51 56 public void setCurrentPage(int index); 57 58 63 public int getPageCount(); 64 65 70 public boolean isDataAvailable(); 71 72 77 public Object nextRow(); 78 79 86 public void sort(String column, boolean descending, String mode); 87 88 public final static String SORT_CASEINSENSITIVE = "case-insensitive"; 89 public final static String SORT_CASESENSITIVE = "case-sensitive"; 90 } 91 | Popular Tags |