summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/util/utils.java
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-12-22 10:27:15 +0200
committerNoel Grandin <noel@peralex.com>2015-01-13 08:42:55 +0200
commitc55f945e4b092a7c972e6f64260ba98784c85a77 (patch)
tree2e83e6b8ebbe532e9217df8bfa80aa5e4634f168 /qadevOOo/runner/util/utils.java
parentb82cc80e8405086856a795a17e655cdcf85020fc (diff)
java: move DEFAULT_SHORT_WAIT_MS to util.utils
so I can turn PopertyNames into an enum Change-Id: I939a83c0962813302a3653e75976147b2300cb18
Diffstat (limited to 'qadevOOo/runner/util/utils.java')
-rw-r--r--qadevOOo/runner/util/utils.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/qadevOOo/runner/util/utils.java b/qadevOOo/runner/util/utils.java
index 4557cb5484e5..4a77e41e2331 100644
--- a/qadevOOo/runner/util/utils.java
+++ b/qadevOOo/runner/util/utils.java
@@ -648,7 +648,7 @@ public class utils {
* This is the default call, which waits for 500ms.
*/
public static void shortWait() {
- pause(PropertyName.DEFAULT_SHORT_WAIT_MS);
+ pause(utils.DEFAULT_SHORT_WAIT_MS);
}
/** Causes the thread to sleep some time.
@@ -857,4 +857,9 @@ public class utils {
dfmt.format(cal.get(Calendar.MILLISECOND));
return "[" + dateTime + "]";
}
+
+ /**
+ * Default short wait time for the Office
+ */
+ public static final int DEFAULT_SHORT_WAIT_MS = 500;
}