summaryrefslogtreecommitdiff
path: root/tools/runner/java/vogar/Action.java
diff options
context:
space:
mode:
authorJesse Wilson <jessewilson@google.com>2010-03-31 23:51:56 -0700
committerJesse Wilson <jessewilson@google.com>2010-04-01 14:42:05 -0700
commit575e89934e81c1bebaecee13d3048268648f5adc (patch)
tree245873cb76eb1f5d49aacf40fab1046eca2f25f1 /tools/runner/java/vogar/Action.java
parentba6fad59410d74c4dbb19715dea6f5ea09a4b14c (diff)
New method-level granularity and output streaming for vogar.
Diffstat (limited to 'tools/runner/java/vogar/Action.java')
-rw-r--r--tools/runner/java/vogar/Action.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/runner/java/vogar/Action.java b/tools/runner/java/vogar/Action.java
index 3580ef4934..1e3de3e179 100644
--- a/tools/runner/java/vogar/Action.java
+++ b/tools/runner/java/vogar/Action.java
@@ -50,7 +50,7 @@ public final class Action {
}
/**
- * Returns the local directory containing this test's java file.
+ * Returns the local directory containing this action's java file.
*/
public File getJavaDirectory() {
return actionDirectory;
@@ -69,14 +69,14 @@ public final class Action {
}
/**
- * Returns a unique identifier for this test.
+ * Returns a unique identifier for this action.
*/
public String getName() {
return name;
}
/**
- * Returns an English description of this test, or null if no such
+ * Returns an English description of this action, or null if no such
* description is known.
*/
public String getDescription() {
@@ -84,7 +84,8 @@ public final class Action {
}
/**
- * Initializes the directory from which local files can be read by the test.
+ * Initializes the directory from which local files can be read by the
+ * action.
*/
public void setUserDir(File base) {
this.userDir = base;