Searched refs:getBlockIncrement (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/
H A DAdjustable.java109 int getBlockIncrement(); method in interface:Adjustable
H A DScrollPaneAdjustable.java136 * @see #getBlockIncrement
269 public int getBlockIncrement() { method in class:ScrollPaneAdjustable
H A DScrollbar.java786 * @see java.awt.Scrollbar#getBlockIncrement
825 public int getBlockIncrement() { method in class:Scrollbar
831 * replaced by <code>getBlockIncrement()</code>.
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWScrollBarPeer.java61 setPageIncrement(target.getBlockIncrement());
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWScrollPanePeer.java225 newpos -= adj.getBlockIncrement();
228 newpos += adj.getBlockIncrement();
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXScrollbarPeer.java186 tsb.notifyValue(tsb.getValue() - tsb.getBlockIncrement());
190 tsb.notifyValue(tsb.getValue() + tsb.getBlockIncrement());
H A DListHelper.java342 int newIdx = firstDisplayedIndex() - vsb.getBlockIncrement();
646 incr = wheelRotation * scroll.getBlockIncrement();
H A DXScrollbar.java723 int getBlockIncrement() { method in class:XScrollbar
H A DXListPeer.java858 vsb.setValue(vsb.getValue() - vsb.getBlockIncrement());
878 vsb.setValue(vsb.getValue() + vsb.getBlockIncrement());
/openjdk7/jdk/src/share/classes/sun/awt/
H A DScrollPaneWheelScroller.java139 increment = adj.getBlockIncrement() * e.getWheelRotation();
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJScrollBar.java397 public int getBlockIncrement(int direction) { method in class:JScrollBar
407 * @see #getBlockIncrement()
432 * @see Adjustable#getBlockIncrement
433 * @see #getBlockIncrement(int)
435 public int getBlockIncrement() { method in class:JScrollBar
H A DJScrollPane.java670 * <code>getUnitIncrement</code> and <code>getBlockIncrement</code>
775 * <code>super.getBlockIncrement</code>.
782 public int getBlockIncrement(int direction) { method in class:JScrollPane.ScrollBar
785 return super.getBlockIncrement(direction);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicScrollBarUI.java944 int blockIncrement = scrollbar.getBlockIncrement(direction);
985 scrollbar.getBlockIncrement(direction);
989 scrollbar.getBlockIncrement(direction);
1553 amount = -1 * scrollBar.getBlockIncrement(-1);
1556 amount = scrollBar.getBlockIncrement(1);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DHighPrecisionJScrollBar.java238 setBlockIncrementHP(new BigInteger(Integer.toString(getBlockIncrement())));
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaScrollBarUI.java206 final int blockIncrement = fScrollBar.getBlockIncrement(direction);

Completed in 233 milliseconds