Searched defs:hysteresis (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/dnd/
H A DDropTarget.java669 hysteresis = ((Integer)t.getDesktopProperty("DnD.Autoscroll.cursorHysteresis")).intValue();
709 if (Math.abs(locn.x - prev.x) > hysteresis ||
710 Math.abs(locn.y - prev.y) > hysteresis) {
751 private int hysteresis = 10; field in class:DropTarget.DropTargetAutoScroller
/openjdk7/jdk/src/share/classes/javax/swing/
H A DTransferHandler.java1308 private int hysteresis = 10; field in class:TransferHandler.DropHandler
1413 hysteresis = prop.intValue();
1496 if (Math.abs(p.x - lastPosition.x) > hysteresis
1497 || Math.abs(p.y - lastPosition.y) > hysteresis) {

Completed in 26 milliseconds