Searched defs:notifyValue (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXScrollbarClient.java35 public void notifyValue(XScrollbar obj, int type, int value, boolean isAdjusting); method in interface:XScrollbarClient
H A DXScrollbarPeer.java117 public void notifyValue(XScrollbar obj, int type, int value, boolean isAdjusting) { method in class:XScrollbarPeer
170 tsb.notifyValue(tsb.getValue() - tsb.getUnitIncrement());
174 tsb.notifyValue(tsb.getValue() + tsb.getUnitIncrement());
178 tsb.notifyValue(tsb.getValue() - tsb.getUnitIncrement());
182 tsb.notifyValue(tsb.getValue() + tsb.getUnitIncrement());
186 tsb.notifyValue(tsb.getValue() - tsb.getBlockIncrement());
190 tsb.notifyValue(tsb.getValue() + tsb.getBlockIncrement());
194 tsb.notifyValue(0);
198 tsb.notifyValue(tsb.getMaximum());
H A DXScrollPanePeer.java526 public void notifyValue(XScrollbar obj, int type, int v, boolean isAdjusting) { method in class:XScrollPanePeer
H A DListHelper.java78 // on notifyValue()
79 private Color[] colors; // Passed in for painting on notifyValue()
441 public void notifyValue(XScrollbar obj, int type, int v, boolean isAdjusting) { method in class:ListHelper
H A DXScrollbar.java97 void notifyValue(int v) { method in class:XScrollbar
98 notifyValue(v, false);
101 void notifyValue(int v, final boolean isAdjusting) { method in class:XScrollbar
112 sb.notifyValue(XScrollbar.this, mode, value, isAdjusting);
386 * @see notifyValue
391 notifyValue(val - line);
395 notifyValue(val + line);
399 notifyValue(val - page);
403 notifyValue(val + page);
524 notifyValue(calculateCursorOffse
[all...]
H A DXListPeer.java994 public void notifyValue(XScrollbar obj, int type, int v, boolean isAdjusting) { method in class:XListPeer

Completed in 264 milliseconds