Searched refs:timeFactor (Results 1 - 4 of 4) 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) {
/openjdk7/jdk/src/share/classes/sun/swing/
H A DFilePane.java108 private final long timeFactor;
115 Long l = (Long) UIManager.get("Table.timeFactor");
116 timeFactor = (l != null) ? l : 1000L;
122 * less than value of <code>timeFactor</code>. Subsequent same key
158 if (time - lastTime < timeFactor) {

Completed in 135 milliseconds