/* * RHQ Management Platform * Copyright (C) 2009-2010 Red Hat, Inc. * All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation version 2 of the License. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ package org.rhq.core.gui.model; import javax.faces.model.SelectItem; /** * @author Ian Springer */ public class DefaultPageControlSettingsUIBean { private static final int[] PAGE_SIZES = new int[] {15, 30, 45}; private static final SelectItem[] PAGE_SIZE_SELECT_ITEMS = new SelectItem[PAGE_SIZES.length]; static { for (int i = 0; i < PAGE_SIZES.length; i++) { PAGE_SIZE_SELECT_ITEMS[i] = new SelectItem(PAGE_SIZES[i], Integer.valueOf(PAGE_SIZES[i]).toString()); } } private static final int MINIMUM_PAGE_SIZE = PAGE_SIZES[0]; private static final int DEFAULT_PAGE_SIZE = PAGE_SIZES[0]; /** Limit to 7 pages until we find a general fix for RHQ-1813. */ private static final int MAXIMUM_PAGES = 7; public SelectItem[] getPageSizeSelectItems() { return PAGE_SIZE_SELECT_ITEMS; } public int getPageSizeCount() { return PAGE_SIZES.length; } public int getMinimumPageSize() { return MINIMUM_PAGE_SIZE; } public int getDefaultPageSize() { return DEFAULT_PAGE_SIZE; } public int getMaximumPages() { return MAXIMUM_PAGES; } }