summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/lib
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-07-02 13:08:33 +0200
committerCaolán McNamara <caolanm@redhat.com>2012-08-20 12:55:03 +0100
commit360f566cf91b2b78a39512ce0f87f5375f7e0479 (patch)
tree19d5a94a0f2eea587bd37aa8f5bcf59286ac6669 /qadevOOo/runner/lib
parentf6a62d9e4106f36aff899c847d63e3198532796e (diff)
Java update - fix a bunch of javadoc warnings in @param tags
Change-Id: Ibaccfd0312ab6697d8c9887367ea664163767587
Diffstat (limited to 'qadevOOo/runner/lib')
-rw-r--r--qadevOOo/runner/lib/MultiPropertyTest.java10
-rw-r--r--qadevOOo/runner/lib/Status.java8
2 files changed, 9 insertions, 9 deletions
diff --git a/qadevOOo/runner/lib/MultiPropertyTest.java b/qadevOOo/runner/lib/MultiPropertyTest.java
index 5935fb697c81..9e69f2f1b049 100644
--- a/qadevOOo/runner/lib/MultiPropertyTest.java
+++ b/qadevOOo/runner/lib/MultiPropertyTest.java
@@ -253,11 +253,11 @@ public class MultiPropertyTest extends MultiMethodTest
/**
* The method checks result of setting a new value to the
* property based o the following arguments:
- * @propName - the property to test
- * @oldValue - the old value of the property, before changing it.
- * @newValue - the new value the property has been set with
- * @resValue - the value of the property after having changed it
- * @exception - if not null - the exception thrown by
+ * @param propName - the property to test
+ * @param oldValue - the old value of the property, before changing it.
+ * @param newValue - the new value the property has been set with
+ * @param resValue - the value of the property after having changed it
+ * @param exception - if not null - the exception thrown by
* XPropertySet.setPropertyValue, else indicates
* normal method completion.
*
diff --git a/qadevOOo/runner/lib/Status.java b/qadevOOo/runner/lib/Status.java
index 5c47f5bac5e6..c6629f520698 100644
--- a/qadevOOo/runner/lib/Status.java
+++ b/qadevOOo/runner/lib/Status.java
@@ -38,8 +38,8 @@ public class Status extends SimpleStatus {
/**
* Construct a status: use runState and state
- * @param runState: either PASSED, SKIPPED, etc.
- * @param state: OK or FAILED.
+ * @param runState either PASSED, SKIPPED, etc.
+ * @param state OK or FAILED.
*/
public Status(int runState, boolean state ) {
super(runState, state);
@@ -47,8 +47,8 @@ public class Status extends SimpleStatus {
/**
* Construct a status: use own message and state.
- * @parame messaeg An own message for the status.
- * @param state: OK or FAILED.
+ * @param message An own message for the status.
+ * @param state OK or FAILED.
*/
public Status(String message, boolean state) {
super( message, state );