diff options
author | Noel Grandin <noel@peralex.com> | 2012-08-21 09:27:24 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-08-28 16:15:44 +0200 |
commit | 96fb2453e40f97a0bffcfe7e046b4599beace152 (patch) | |
tree | 7b285005e900f3223009bb0368762ec6835d1c54 /qadevOOo/runner | |
parent | 9dc3b1bf6120e958e1a943a9c3c8432302bd25e3 (diff) |
Javadoc warnings - fix some tags and references
Change-Id: I13be16beac258c551e58654b4fc37877d7bb9695
Diffstat (limited to 'qadevOOo/runner')
-rw-r--r-- | qadevOOo/runner/graphical/JPEGComparator.java | 1 | ||||
-rw-r--r-- | qadevOOo/runner/helper/PropertyHandlerImpl.java | 1 | ||||
-rw-r--r-- | qadevOOo/runner/lib/MultiPropertyTest.java | 4 | ||||
-rw-r--r-- | qadevOOo/runner/lib/TestCase.java | 6 | ||||
-rw-r--r-- | qadevOOo/runner/lib/TestResult.java | 2 |
5 files changed, 6 insertions, 8 deletions
diff --git a/qadevOOo/runner/graphical/JPEGComparator.java b/qadevOOo/runner/graphical/JPEGComparator.java index 1ac08f7f590c..d468bd8f45e5 100644 --- a/qadevOOo/runner/graphical/JPEGComparator.java +++ b/qadevOOo/runner/graphical/JPEGComparator.java @@ -393,7 +393,6 @@ public class JPEGComparator extends EnhancedComplexTestCase * @param _sDocumentName * @param _sResult * @param _aParams - * @return 0=no difference !=0 both files differ */ private void compareJPEG(String _sDocumentName, String _sResult, ParameterHelper _aParams) { diff --git a/qadevOOo/runner/helper/PropertyHandlerImpl.java b/qadevOOo/runner/helper/PropertyHandlerImpl.java index d933e80dc5e9..e08922c053c4 100644 --- a/qadevOOo/runner/helper/PropertyHandlerImpl.java +++ b/qadevOOo/runner/helper/PropertyHandlerImpl.java @@ -101,7 +101,6 @@ public class PropertyHandlerImpl implements XPropertyHandler{ /** * This method currently does nothing * @param PropertyName the name of the property whose user interface is to be described - * @param out_Descriptor the descriptor of the property line, to be filled by the XPropertyHandler implementation * @param ControlFactory a factory for creating XPropertyControl instances. Must not be NULL . * @throws com.sun.star.beans.UnknownPropertyException ::com::sun::star::beans::UnknownPropertyException if the given property is not supported by this handler * @throws com.sun.star.lang.NullPointerException ::com::sun::star::lang::NullPointerException if ControlFactory is NULL . diff --git a/qadevOOo/runner/lib/MultiPropertyTest.java b/qadevOOo/runner/lib/MultiPropertyTest.java index 5d6132341b69..c52a9d84f71c 100644 --- a/qadevOOo/runner/lib/MultiPropertyTest.java +++ b/qadevOOo/runner/lib/MultiPropertyTest.java @@ -100,7 +100,7 @@ public class MultiPropertyTest extends MultiMethodTest * calls testProperty method for the method. Otherwise calls * super.invokeTestMethod(). * - * @see #MultiMethodTest.invokeTestMethod() + * @see MultiMethodTest#invokeTestMethod */ protected void invokeTestMethod(Method meth, String methName) { @@ -554,7 +554,7 @@ public class MultiPropertyTest extends MultiMethodTest * Tests the property using <code>PropertyValueSwitcher</code> * tester and two values for this property. * - * @see #PropertyValueSwitcher + * @see PropertyValueSwitcher */ protected void testProperty(String propName, Object val1, Object val2) { diff --git a/qadevOOo/runner/lib/TestCase.java b/qadevOOo/runner/lib/TestCase.java index eae36ba9c086..0477ebef7c8c 100644 --- a/qadevOOo/runner/lib/TestCase.java +++ b/qadevOOo/runner/lib/TestCase.java @@ -78,7 +78,7 @@ public abstract class TestCase { * @param tParam test parameters * @param log writer to log information while testing * - * @see #initializeTestCase() + * @see #initializeTestCase */ protected void initialize( TestParameters tParam, PrintWriter log ) { } @@ -114,7 +114,7 @@ public abstract class TestCase { * * @return the created <code>TestEnvironment</code> * - * @see #createTestEnvironment() + * @see #createTestEnvironment * @see lib.TestEnvironment */ public synchronized TestEnvironment getTestEnvironment( TestParameters tParam ) { @@ -157,7 +157,7 @@ public abstract class TestCase { * @param log writer to log information while testing * * @see TestEnvironment - * @see #getTestEnvironment() + * @see #getTestEnvironment */ protected abstract TestEnvironment createTestEnvironment( TestParameters tParam, PrintWriter log ); diff --git a/qadevOOo/runner/lib/TestResult.java b/qadevOOo/runner/lib/TestResult.java index 1df57a950d53..4d89fc71b90b 100644 --- a/qadevOOo/runner/lib/TestResult.java +++ b/qadevOOo/runner/lib/TestResult.java @@ -54,7 +54,7 @@ public class TestResult { * The method makes the method tested with the status, i.e. it adds the * status to its state and makes it completed. * - * @param method reffers to the method whoch was tested + * @param method refers to the method which was tested * @param status describes the result of testing the method * @return <tt>true</tt> if status is OK, <tt>false</tt> otherwise. * |