Here you can find the source of movePageUp(JList list)
public static void movePageUp(JList list)
//package com.java2s; /*// w w w .j a v a 2 s .c om * Copyright 2000-2009 JetBrains s.r.o. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import javax.swing.*; import java.awt.*; public class Main { public static final int ROW_PADDING = 2; public static void movePageUp(JList list) { int visible = getVisibleRowCount(list); ListSelectionModel selectionModel = list.getSelectionModel(); if (visible <= 0) { moveHome(list); return; } int size = list.getModel().getSize(); int decrement = visible - 1; int index = Math.max(list.getSelectedIndex() - decrement, 0); int top = list.getFirstVisibleIndex() - decrement; if (top < 0) { top = 0; } int bottom = top + visible - 1; if (bottom >= size) { bottom = size - 1; } //list.clearSelection(); Rectangle cellBounds = list.getCellBounds(top, bottom); if (cellBounds == null) { moveHome(list); return; } list.scrollRectToVisible(cellBounds); selectionModel.setSelectionInterval(index, index); list.ensureIndexIsVisible(index); } private static int getVisibleRowCount(JList list) { return list.getLastVisibleIndex() - list.getFirstVisibleIndex() + 1; } public static void moveHome(JList list) { list.setSelectedIndex(0); list.ensureIndexIsVisible(0); } public static void ensureIndexIsVisible(JList list, int index, int moveDirection) { int visible = getVisibleRowCount(list); int top; int bottom; if (moveDirection == 0) { top = index - (visible - 1) / ROW_PADDING; bottom = top + visible - 1; } else if (moveDirection < 0) { top = index - ROW_PADDING; bottom = index; } else { top = index; bottom = index + ROW_PADDING; } ensureRangeIsVisible(list, top, bottom); } public static void ensureRangeIsVisible(JList list, int top, int bottom) { int size = list.getModel().getSize(); if (top < 0) { top = 0; } if (bottom >= size) { bottom = size - 1; } Rectangle cellBounds = list.getCellBounds(top, bottom); if (cellBounds != null) { cellBounds.x = 0; list.scrollRectToVisible(cellBounds); } } }