Searched defs:timeFactor (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicComboBoxUI.java150 private long timeFactor = 1000L; field in class:BasicComboBoxUI
337 Long l = (Long)UIManager.get("ComboBox.timeFactor");
338 timeFactor = l == null ? 1000L : l.longValue();
1969 if (time - lastTime < timeFactor) {
H A DBasicListUI.java115 private long timeFactor = 1000L; field in class:BasicListUI
801 Long l = (Long)UIManager.get("List.timeFactor");
802 timeFactor = (l!=null) ? l.longValue() : 1000L;
2363 * than value of <code>timeFactor</code> property (or 1000 milliseconds
2385 if (time - lastTime < timeFactor) {
H A DBasicTreeUI.java203 private long timeFactor = 1000L; field in class:BasicTreeUI
732 Long l = (Long)UIManager.get("Tree.timeFactor");
733 timeFactor = (l!=null) ? l.longValue() : 1000L;
3301 * than value of <code>timeFactor</code> property (or 1000 milliseconds
3321 if (time - lastTime < timeFactor) {

Completed in 52 milliseconds