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

/openjdk7/jdk/src/share/classes/javax/swing/
H A DAbstractButton.java1691 * on intervals less than the threshhold will be ignored and no
1692 * corresponding action event generated. By default the threshhold is 0,
1696 * in a dialog), this threshhold should be set to an appropriate
1700 * @param threshhold the amount of time required between mouse
1702 * @exception IllegalArgumentException if threshhold < 0
1705 public void setMultiClickThreshhold(long threshhold) { argument
1706 if (threshhold < 0) {
1707 throw new IllegalArgumentException("threshhold must be >= 0");
1709 this.multiClickThreshhold = threshhold;

Completed in 28 milliseconds