summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/helper
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-08-07 08:55:52 +0200
committerNoel Grandin <noel@peralex.com>2014-08-12 09:41:31 +0200
commit1c496506bc0d720241e5f9877681197e3b6d576a (patch)
treea3cf74b38175e94811f429e88faf6e5daec44492 /qadevOOo/runner/helper
parentf086884fc33aabd4c9abb1efd8f6892dba4830cf (diff)
java: remove useless javadoc tags
that are not conveying any useful information Change-Id: Ic37934b8cc376fcdcb3d295232452f411dfd43b1
Diffstat (limited to 'qadevOOo/runner/helper')
-rw-r--r--qadevOOo/runner/helper/BuildEnvTools.java6
-rw-r--r--qadevOOo/runner/helper/ComplexDescGetter.java1
-rw-r--r--qadevOOo/runner/helper/LoggingThread.java5
-rw-r--r--qadevOOo/runner/helper/ObjectInspectorModelImpl.java1
-rw-r--r--qadevOOo/runner/helper/OfficeProvider.java7
-rw-r--r--qadevOOo/runner/helper/OfficeWatcher.java3
-rw-r--r--qadevOOo/runner/helper/ProcessHandler.java31
-rw-r--r--qadevOOo/runner/helper/PropertyHelper.java2
-rw-r--r--qadevOOo/runner/helper/StringHelper.java3
9 files changed, 0 insertions, 59 deletions
diff --git a/qadevOOo/runner/helper/BuildEnvTools.java b/qadevOOo/runner/helper/BuildEnvTools.java
index b35d14cb3f1c..3cd50a823397 100644
--- a/qadevOOo/runner/helper/BuildEnvTools.java
+++ b/qadevOOo/runner/helper/BuildEnvTools.java
@@ -46,9 +46,6 @@ public class BuildEnvTools {
* <li> Shell: Fill this parameter with a shell f.e '/bin/tcsh'
* or 'c:\\myShell\\myShell.exe'
* </li>
- * @param param
- * @param log
- * @throws helper.ParameterNotFoundException
*/
public BuildEnvTools(TestParameters param, LogWriter log) throws ParameterNotFoundException {
this.param = param;
@@ -95,9 +92,6 @@ public class BuildEnvTools {
/**
* Executes the given commands in OOo-Environment shell.
- * @param commands
- * @param workDir
- * @param shortWait
* @return the processHandler of the commands
* @see helper.ProcessHandler
*/
diff --git a/qadevOOo/runner/helper/ComplexDescGetter.java b/qadevOOo/runner/helper/ComplexDescGetter.java
index d0ec77879926..af288a514319 100644
--- a/qadevOOo/runner/helper/ComplexDescGetter.java
+++ b/qadevOOo/runner/helper/ComplexDescGetter.java
@@ -146,7 +146,6 @@ public class ComplexDescGetter extends DescGetter
* @param testObjectName the name of the object
* @param className the class name of the class to load
* @param testMethodNames list of all methods to test
- * @param log
* @return filled description entry
*/
public DescEntry createTestDesc(String testObjectName, String className, String[] testMethodNames, LogWriter log)
diff --git a/qadevOOo/runner/helper/LoggingThread.java b/qadevOOo/runner/helper/LoggingThread.java
index 6eb2e1861640..41e97845fc2d 100644
--- a/qadevOOo/runner/helper/LoggingThread.java
+++ b/qadevOOo/runner/helper/LoggingThread.java
@@ -41,11 +41,6 @@ public class LoggingThread extends Thread {
boolean finished = false;
boolean debug = false;
- /**
- *
- * @param log
- * @param tParam
- */
public LoggingThread(LogWriter log, TestParameters tParam) {
this.log = log;
this.param = tParam;
diff --git a/qadevOOo/runner/helper/ObjectInspectorModelImpl.java b/qadevOOo/runner/helper/ObjectInspectorModelImpl.java
index b40888102438..b0135cd84fe5 100644
--- a/qadevOOo/runner/helper/ObjectInspectorModelImpl.java
+++ b/qadevOOo/runner/helper/ObjectInspectorModelImpl.java
@@ -117,7 +117,6 @@ public class ObjectInspectorModelImpl implements XObjectInspectorModel{
/**
* retrieves an index in a global property ordering, for a given property name
* @param UIName the property whose global order index should be retrieved
- * @throws com.sun.star.beans.UnknownPropertyException if the given property is unknown
* @return the global order index of PropertyName
*/
public int getPropertyOrderIndex(String UIName) {
diff --git a/qadevOOo/runner/helper/OfficeProvider.java b/qadevOOo/runner/helper/OfficeProvider.java
index a208c1e09e7d..c12d2519e852 100644
--- a/qadevOOo/runner/helper/OfficeProvider.java
+++ b/qadevOOo/runner/helper/OfficeProvider.java
@@ -53,8 +53,6 @@ public class OfficeProvider implements AppProvider
/**
* copy the user layer to a safe place, usually to $TMP/user_backup$USER
- * @param param
- * @param msf
*/
public void backupUserLayer(TestParameters param, XMultiServiceFactory msf)
{
@@ -102,7 +100,6 @@ public class OfficeProvider implements AppProvider
* Dispose the office.
* This method can only be used, if the office was connected in the first
* place: getManager() was called first.
- * @param param
* @return return true if desktop is terminates, else false
*/
public boolean disposeManager(lib.TestParameters param)
@@ -144,8 +141,6 @@ public class OfficeProvider implements AppProvider
/**
* Method to get the ServiceManager of an Office
- * @param param
- * @return
*/
public Object getManager(lib.TestParameters param)
{
@@ -645,8 +640,6 @@ public class OfficeProvider implements AppProvider
/**
* converts directory without 'file:///' prefix.
* and System dependent file separator
- * @param dir
- * @return
*/
public static String getDirSys(String dir)
{
diff --git a/qadevOOo/runner/helper/OfficeWatcher.java b/qadevOOo/runner/helper/OfficeWatcher.java
index b01d81609b89..e001ca335ab2 100644
--- a/qadevOOo/runner/helper/OfficeWatcher.java
+++ b/qadevOOo/runner/helper/OfficeWatcher.java
@@ -28,9 +28,6 @@ public class OfficeWatcher extends Thread implements share.Watcher {
private int StoredPing = 0;
private boolean debug = false;
- /** Creates new OfficeWatcher
- * @param param
- */
public OfficeWatcher(TestParameters param) {
finish = false;
this.params = param;
diff --git a/qadevOOo/runner/helper/ProcessHandler.java b/qadevOOo/runner/helper/ProcessHandler.java
index 0bcabe4e8b68..e88a2a2181f4 100644
--- a/qadevOOo/runner/helper/ProcessHandler.java
+++ b/qadevOOo/runner/helper/ProcessHandler.java
@@ -138,7 +138,6 @@ public class ProcessHandler
* Creates instance with specified external command.
* Debug info and output
* of external command is printed to stdout.
- * @param cmdLine
*/
public ProcessHandler(String cmdLine)
{
@@ -150,7 +149,6 @@ public class ProcessHandler
* including parameters as an array.
* Debug info and output
* of external command is printed to stdout.
- * @param cmdLines
*/
public ProcessHandler(String[] cmdLines)
{
@@ -164,8 +162,6 @@ public class ProcessHandler
* variables.
* Debug info and output
* of external command is printed to stdout.
- * @param cmdLines
- * @param envVars
* @see java.lang.Runtime exec(String[], String[])
*/
public ProcessHandler(String[] cmdLines, String[] envVars)
@@ -180,8 +176,6 @@ public class ProcessHandler
* variables. The command will be started in workDir.
* Debug info and output
* of external command is printed to stdout.
- * @param cmdLines
- * @param workDir
*/
public ProcessHandler(String[] cmdLines, File workDir)
{
@@ -194,9 +188,6 @@ public class ProcessHandler
* Creates instance with specified external command and
* log stream where debug info and output
* of external command is printed out. The command will be started in workDir.
- * @param cmdLines
- * @param log
- * @param workDir
*/
public ProcessHandler(String[] cmdLines, PrintWriter log, File workDir)
{
@@ -208,8 +199,6 @@ public class ProcessHandler
* Creates instance with specified external command and
* log stream where debug info and output
* of external command is printed out.
- * @param cmdLine
- * @param log
*/
public ProcessHandler(String cmdLine, PrintWriter log)
{
@@ -218,8 +207,6 @@ public class ProcessHandler
/**
* Creates instance with specified external command and set the time out for the command.
- * @param cmdLine
- * @param timeOut
*/
public ProcessHandler(String cmdLine, int timeOut)
{
@@ -231,8 +218,6 @@ public class ProcessHandler
* will be executed in the some work directory.
* Debug info and output
* of external commandis printed to stdout.
- * @param cmdLine
- * @param workDir
*/
public ProcessHandler(String cmdLine, File workDir)
{
@@ -243,9 +228,6 @@ public class ProcessHandler
* Creates instance with specified external command which
* will be executed in the some work directory.
* Debug info and output printed in log stream.
- * @param cmdLine
- * @param log
- * @param workDir
*/
public ProcessHandler(String cmdLine, PrintWriter log, File workDir)
{
@@ -259,10 +241,6 @@ public class ProcessHandler
* of external command is printed .
* The specified environment variables are set for the new process.
* If log stream is null, logging is printed to stdout.
- * @param cmdLine
- * @param log
- * @param workDir
- * @param envVars
*/
public ProcessHandler(String cmdLine, PrintWriter log, File workDir, String[] envVars)
{
@@ -321,9 +299,6 @@ public class ProcessHandler
* log stream where debug info and output of external command is printed.
* If log stream is null, logging is printed to stdout.
* From the <CODE>TestParameters</CODE> the <CODE>OfficeWachter</CODE> get a ping.
- * @param commands
- * @param log
- * @param workDir
* @param shortWait If this parameter is ture the <CODE>mTimeOut</CODE> is set to 5000 ms, else it is set to
* half of time out from parameter timeout.
* @param param the TestParameters
@@ -349,7 +324,6 @@ public class ProcessHandler
/**
* If not equal 0, the time to maximal wait.
- * @param _n
*/
public void setProcessTimeout(int _n)
{
@@ -358,7 +332,6 @@ public class ProcessHandler
/**
* This command will call after ProcessTimeout is arrived.
- * @param _s
*/
public void setProcessKiller(String _s)
{
@@ -506,7 +479,6 @@ public class ProcessHandler
/**
* Returns the time in seconds since 1st January 1970
- * @return
*/
public static long getSystemTime()
{
@@ -773,7 +745,6 @@ public class ProcessHandler
* The method can also be called before the command
* starts its execution. Then the text is buffered
* and transferred to command when it will be started.
- * @param str
*/
public void printInputText(String str)
{
@@ -825,7 +796,6 @@ public class ProcessHandler
}
/** Causes the thread to sleep some time.
- * @param milliseconds
*/
public static void shortWait(long milliseconds)
{
@@ -868,7 +838,6 @@ public class ProcessHandler
/**
* returns true, if the thread should hold on
- * @return
*/
public synchronized boolean isInHoldOn()
{
diff --git a/qadevOOo/runner/helper/PropertyHelper.java b/qadevOOo/runner/helper/PropertyHelper.java
index c48c58be3a9e..7472024c0afc 100644
--- a/qadevOOo/runner/helper/PropertyHelper.java
+++ b/qadevOOo/runner/helper/PropertyHelper.java
@@ -26,8 +26,6 @@ public class PropertyHelper
{
/**
Create a PropertyValue[] from a ArrayList
- @param _aPropertyList
- @return a PropertyValue[]
*/
public static PropertyValue[] createPropertyValueArrayFormArrayList(ArrayList<PropertyValue> _aPropertyList)
{
diff --git a/qadevOOo/runner/helper/StringHelper.java b/qadevOOo/runner/helper/StringHelper.java
index f2921906ca0a..7d985cc03be1 100644
--- a/qadevOOo/runner/helper/StringHelper.java
+++ b/qadevOOo/runner/helper/StringHelper.java
@@ -95,9 +95,6 @@ public class StringHelper
* Convert a value to a string with a given length, if the len is greater the len of the value string representation
* fill it's front with '0'
* So ("5", 4) will result in a string "0005"
- * @param _nValue
- * @param _nLen
- * @return
*/
public static String createValueString(int _nValue, int _nLen)
{