summaryrefslogtreecommitdiff
path: root/qadevOOo/runner/graphical
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/graphical
parentf086884fc33aabd4c9abb1efd8f6892dba4830cf (diff)
java: remove useless javadoc tags
that are not conveying any useful information Change-Id: Ic37934b8cc376fcdcb3d295232452f411dfd43b1
Diffstat (limited to 'qadevOOo/runner/graphical')
-rw-r--r--qadevOOo/runner/graphical/DirectoryHelper.java3
-rw-r--r--qadevOOo/runner/graphical/EnhancedComplexTestCase.java4
-rw-r--r--qadevOOo/runner/graphical/HTMLResult.java1
-rw-r--r--qadevOOo/runner/graphical/IDocument.java4
-rw-r--r--qadevOOo/runner/graphical/IOffice.java5
-rw-r--r--qadevOOo/runner/graphical/IniFile.java9
-rw-r--r--qadevOOo/runner/graphical/JPEGCreator.java3
-rw-r--r--qadevOOo/runner/graphical/MSOfficePostscriptCreator.java5
-rw-r--r--qadevOOo/runner/graphical/Office.java2
-rw-r--r--qadevOOo/runner/graphical/OpenOfficeDatabaseReportExtractor.java3
-rw-r--r--qadevOOo/runner/graphical/OpenOfficePostscriptCreator.java3
-rw-r--r--qadevOOo/runner/graphical/ParameterHelper.java5
12 files changed, 1 insertions, 46 deletions
diff --git a/qadevOOo/runner/graphical/DirectoryHelper.java b/qadevOOo/runner/graphical/DirectoryHelper.java
index 83430b4b24f1..0033de9853d5 100644
--- a/qadevOOo/runner/graphical/DirectoryHelper.java
+++ b/qadevOOo/runner/graphical/DirectoryHelper.java
@@ -62,9 +62,6 @@ public class DirectoryHelper
* System.out.println(aEntry);
* }
*
- * @param _sDirectory
- * @param _aFileFilter
- * @param _bRecursiveIsAllowed
* @return list of directories
*/
public static Object[] traverse( String _sDirectory, FileFilter _aFileFilter, boolean _bRecursiveIsAllowed )
diff --git a/qadevOOo/runner/graphical/EnhancedComplexTestCase.java b/qadevOOo/runner/graphical/EnhancedComplexTestCase.java
index 0e2be21334b0..dcde84492cc4 100644
--- a/qadevOOo/runner/graphical/EnhancedComplexTestCase.java
+++ b/qadevOOo/runner/graphical/EnhancedComplexTestCase.java
@@ -73,7 +73,6 @@ private void callEntry(String _sEntry, ParameterHelper _aParam)
/**
* Run through all documents found in Inputpath.
* Call the IDocument interface function call(...);
- * @param _aParam
*/
public void foreachDocumentinInputPath(ParameterHelper _aParam)
{
@@ -112,7 +111,6 @@ private void callEntry(String _sEntry, ParameterHelper _aParam)
* Run through a given index.ini or run through a given directory,
* find all postscript or pdf files.
* Call the IDocument interface function call(...);
- * @param _aParam
*/
public void foreachPSorPDFinInputPath(ParameterHelper _aParam)
{
@@ -296,7 +294,6 @@ private void callEntry(String _sEntry, ParameterHelper _aParam)
* Run through a given index.ini or run through a given directory,
* find all postscript or pdf files.
* Call the IDocument interface function call(...);
- * @param _aParam
*/
public void foreachJPEGcompareWithJPEG(ParameterHelper _aParam)
{
@@ -371,7 +368,6 @@ private void callEntry(String _sEntry, ParameterHelper _aParam)
* Run through a given index.ini or run through a given directory,
* find all ini files.
* Call the IDocument interface function call(...);
- * @param _aParam
*/
public void foreachResultCreateHTML(ParameterHelper _aParam)
{
diff --git a/qadevOOo/runner/graphical/HTMLResult.java b/qadevOOo/runner/graphical/HTMLResult.java
index 3482dc45de10..e170ec68ee62 100644
--- a/qadevOOo/runner/graphical/HTMLResult.java
+++ b/qadevOOo/runner/graphical/HTMLResult.java
@@ -73,7 +73,6 @@ public class HTMLResult
/**
* create the HTML header
- * @param _sTitle
*/
public void header(String _sTitle)
{
diff --git a/qadevOOo/runner/graphical/IDocument.java b/qadevOOo/runner/graphical/IDocument.java
index e0cee8aa7c43..ef07299d87d1 100644
--- a/qadevOOo/runner/graphical/IDocument.java
+++ b/qadevOOo/runner/graphical/IDocument.java
@@ -22,10 +22,6 @@ public interface IDocument
{
/**
* Call this for each document
- * @param _sDocument
- * @param _sResult
- * @param _aParams
- * @throws OfficeException
*/
public void checkOneFile(String _sDocument, String _sResult, ParameterHelper _aParams) throws OfficeException;
}
diff --git a/qadevOOo/runner/graphical/IOffice.java b/qadevOOo/runner/graphical/IOffice.java
index e3c892de109f..54d8cc24fea4 100644
--- a/qadevOOo/runner/graphical/IOffice.java
+++ b/qadevOOo/runner/graphical/IOffice.java
@@ -22,27 +22,22 @@ public interface IOffice
{
/**
* start an Office, if need
- * @throws graphical.OfficeException
*/
public void start() throws OfficeException;
/**
* Load a document by it's Name
- * @param Name
- * @throws graphical.OfficeException
*/
public void load(String Name) throws OfficeException;
/**
* Create a postscript file in the DOC_COMPARATOR_OUTPUT_DIR directory from a loaded document
- * @throws graphical.OfficeException
*/
public void storeAsPostscript() throws OfficeException;
/**
* Close the background office
- * @throws graphical.OfficeException
*/
public void close() throws OfficeException;
}
diff --git a/qadevOOo/runner/graphical/IniFile.java b/qadevOOo/runner/graphical/IniFile.java
index 7c3e31e588cf..f3bd88b764cd 100644
--- a/qadevOOo/runner/graphical/IniFile.java
+++ b/qadevOOo/runner/graphical/IniFile.java
@@ -116,8 +116,6 @@ public class IniFile implements Enumeration<String>
/**
* Check if a given Section and Key exists in the ini file
- * @param _sSectionName
- * @param _sKey
* @return true if the given Section, Key exists, now you can get the value
*/
public boolean hasValue(String _sSectionName, String _sKey)
@@ -197,7 +195,6 @@ public class IniFile implements Enumeration<String>
/**
* Checks if a given section exists in the ini file
- * @param _sSection
* @return true if the given _sSection was found
*/
public boolean hasSection(String _sSection)
@@ -330,10 +327,7 @@ public class IniFile implements Enumeration<String>
/**
* Returns the value at Section, Key converted to an integer
* Check with hasValue(Section, Key) to check before you get into trouble.
- * @param _sSection
- * @param _sKey
* @param _nDefault if there is a problem, key not found... this value will return
- * @return
*/
public int getIntValue(String _sSection, String _sKey, int _nDefault)
{
@@ -427,9 +421,6 @@ public class IniFile implements Enumeration<String>
1. section doesn't exist, goto end and insert a new section, insert a new key value pair
2. section exist but key not, search section, search key, if key is -1 get last known key position and insert new key value pair there
3. section exist and key exist, remove the old key and insert the key value pair at the same position
- * @param _sSection
- * @param _sKey
- * @param _sValue
*/
public void insertValue(String _sSection, String _sKey, String _sValue)
{
diff --git a/qadevOOo/runner/graphical/JPEGCreator.java b/qadevOOo/runner/graphical/JPEGCreator.java
index c95aad79e5bb..dccc588da516 100644
--- a/qadevOOo/runner/graphical/JPEGCreator.java
+++ b/qadevOOo/runner/graphical/JPEGCreator.java
@@ -90,7 +90,6 @@ public class JPEGCreator extends EnhancedComplexTestCase
/**
* Create a lot of smaller and nicer Pictures of the big fat pages.
* Looks better
- * @param _sJPEGSchema
*/
public void createSmallPictures(String _sJPEGSchema)
{
@@ -121,7 +120,6 @@ public class JPEGCreator extends EnhancedComplexTestCase
/**
* convert a picture to a new picture with 340 pixel width.
- * @param _sJPEGFilename
*/
public static void convertToNearSameFileWithWidth340(String _sJPEGFilename)
{
@@ -342,7 +340,6 @@ private static void convertToWidth340(String _sFrom, String _To)
* Return the number of really exists JPEG files
* Give a JPEG Schema which contains something like '%04d' which will be converted by a number between 0001 and 9999 always
* with leading '0' (zero)
- * @param _sJPEGSchema
* @return number of really existing pages of a given JPEG schema
*/
public int countPages(String _sJPEGSchema)
diff --git a/qadevOOo/runner/graphical/MSOfficePostscriptCreator.java b/qadevOOo/runner/graphical/MSOfficePostscriptCreator.java
index 42a777ade477..52a62c659da6 100644
--- a/qadevOOo/runner/graphical/MSOfficePostscriptCreator.java
+++ b/qadevOOo/runner/graphical/MSOfficePostscriptCreator.java
@@ -217,11 +217,6 @@ public class MSOfficePostscriptCreator implements IOffice
/**
* print the given file (_sInputFile) to the file name (_sPrintFile)
- * @param _aGTA
- * @param _sInputFile
- * @param _sPrintFilename
- * @throws OfficeException
- * @throws java.io.IOException
*/
public void printToFileWithMSOffice( ParameterHelper _aGTA,
String _sInputFile,
diff --git a/qadevOOo/runner/graphical/Office.java b/qadevOOo/runner/graphical/Office.java
index 34b1fa9a869a..0a08986c4af7 100644
--- a/qadevOOo/runner/graphical/Office.java
+++ b/qadevOOo/runner/graphical/Office.java
@@ -48,8 +48,6 @@ public class Office implements IOffice
/**
* Load a document with an already started Office.
- * @param _sDocumentName
- * @throws graphical.OfficeException
*/
public void load(String _sDocumentName) throws OfficeException
{
diff --git a/qadevOOo/runner/graphical/OpenOfficeDatabaseReportExtractor.java b/qadevOOo/runner/graphical/OpenOfficeDatabaseReportExtractor.java
index 217a4cb327a7..96a6d0a69f77 100644
--- a/qadevOOo/runner/graphical/OpenOfficeDatabaseReportExtractor.java
+++ b/qadevOOo/runner/graphical/OpenOfficeDatabaseReportExtractor.java
@@ -137,10 +137,7 @@ public class OpenOfficeDatabaseReportExtractor extends Assurance
/**
* This is the main test Function of current ReportDesignerTest
- * @param _sDocument
- * @return
*/
-
public ArrayList<String> load(String _sDocument /*, int _nType*/)
{
// We need to copy the database file to a place where we have write access, NEVER use the docpool for this
diff --git a/qadevOOo/runner/graphical/OpenOfficePostscriptCreator.java b/qadevOOo/runner/graphical/OpenOfficePostscriptCreator.java
index 3df97f5f2d8d..05de2b8a5f9c 100644
--- a/qadevOOo/runner/graphical/OpenOfficePostscriptCreator.java
+++ b/qadevOOo/runner/graphical/OpenOfficePostscriptCreator.java
@@ -577,9 +577,6 @@ public class OpenOfficePostscriptCreator implements IOffice
/**
- * @param _aGTA
- * @param _sAbsoluteOutputPath
- * @param _sAbsoluteInputFile
* @return true, if the reference (*.prrn file) based on given output path and given input path exist.
* If OVERWRITE_REFERENCE is set, always return false.
*/
diff --git a/qadevOOo/runner/graphical/ParameterHelper.java b/qadevOOo/runner/graphical/ParameterHelper.java
index 3ca201ff276e..8839a728dec8 100644
--- a/qadevOOo/runner/graphical/ParameterHelper.java
+++ b/qadevOOo/runner/graphical/ParameterHelper.java
@@ -88,8 +88,7 @@ public class ParameterHelper
}
/**
- * return the input path, if given.
- * @return
+ * @return the input path, if given.
*/
public String getInputPath()
{
@@ -185,7 +184,6 @@ public class ParameterHelper
PerformanceContainer m_aPerformanceContainer = null;
/**
* helper class for performance analyser features
- * @return
*/
public PerformanceContainer getPerformance()
{
@@ -199,7 +197,6 @@ public class ParameterHelper
/**
* Helper function to get the buildid of the current used OpenOffice.org
* out of the AppExecutionCommand the build ID
- * @return
*/
public String getBuildID()
{