[Libreoffice-commits] core.git: wizards/com

Noel Grandin noel at peralex.com
Tue Oct 14 06:43:45 PDT 2014


 wizards/com/sun/star/wizards/common/ConfigGroup.java                         |    4 
 wizards/com/sun/star/wizards/common/ConfigSet.java                           |   10 -
 wizards/com/sun/star/wizards/common/Configuration.java                       |   10 -
 wizards/com/sun/star/wizards/common/Desktop.java                             |   21 --
 wizards/com/sun/star/wizards/common/FileAccess.java                          |   73 ----------
 wizards/com/sun/star/wizards/common/Helper.java                              |    1 
 wizards/com/sun/star/wizards/common/JavaTools.java                           |   22 ---
 wizards/com/sun/star/wizards/common/NumberFormatter.java                     |   12 -
 wizards/com/sun/star/wizards/common/NumericalHelper.java                     |   24 ---
 wizards/com/sun/star/wizards/common/PropertySetHelper.java                   |    1 
 wizards/com/sun/star/wizards/common/Resource.java                            |    3 
 wizards/com/sun/star/wizards/common/SystemDialog.java                        |   20 --
 wizards/com/sun/star/wizards/common/UCB.java                                 |    9 -
 wizards/com/sun/star/wizards/db/CommandMetaData.java                         |    9 -
 wizards/com/sun/star/wizards/db/DBMetaData.java                              |    4 
 wizards/com/sun/star/wizards/db/TableDescriptor.java                         |   10 -
 wizards/com/sun/star/wizards/db/TypeInspector.java                           |    2 
 wizards/com/sun/star/wizards/document/Control.java                           |    5 
 wizards/com/sun/star/wizards/document/FormHandler.java                       |   27 ---
 wizards/com/sun/star/wizards/document/OfficeDocument.java                    |    1 
 wizards/com/sun/star/wizards/report/IReportBuilderLayouter.java              |    9 -
 wizards/com/sun/star/wizards/report/IReportDefinitionReadAccess.java         |    1 
 wizards/com/sun/star/wizards/report/IReportDocument.java                     |   30 ----
 wizards/com/sun/star/wizards/report/ReportImplementationHelper.java          |    4 
 wizards/com/sun/star/wizards/reportbuilder/ReportBuilderImplementation.java  |    1 
 wizards/com/sun/star/wizards/reportbuilder/layout/DesignTemplate.java        |    4 
 wizards/com/sun/star/wizards/reportbuilder/layout/ReportBuilderLayouter.java |    4 
 wizards/com/sun/star/wizards/reportbuilder/layout/SectionLabel.java          |    1 
 wizards/com/sun/star/wizards/table/CallTableWizard.java                      |    1 
 wizards/com/sun/star/wizards/text/TextDocument.java                          |    2 
 wizards/com/sun/star/wizards/text/TextFieldHandler.java                      |    2 
 wizards/com/sun/star/wizards/ui/ButtonList.java                              |   50 ------
 wizards/com/sun/star/wizards/ui/CommandFieldSelection.java                   |   17 --
 wizards/com/sun/star/wizards/ui/FilterComponent.java                         |    9 -
 wizards/com/sun/star/wizards/ui/ImageList.java                               |   10 -
 wizards/com/sun/star/wizards/ui/PeerConfig.java                              |   15 --
 wizards/com/sun/star/wizards/ui/SortingComponent.java                        |    2 
 wizards/com/sun/star/wizards/ui/UnoDialog.java                               |   21 --
 wizards/com/sun/star/wizards/ui/WizardDialog.java                            |   36 ----
 wizards/com/sun/star/wizards/ui/event/DataAware.java                         |    1 
 wizards/com/sun/star/wizards/ui/event/DataAwareFields.java                   |    5 
 wizards/com/sun/star/wizards/ui/event/TaskEvent.java                         |    5 
 wizards/com/sun/star/wizards/ui/event/TaskListener.java                      |    1 
 43 files changed, 25 insertions(+), 474 deletions(-)

New commits:
commit 959f7f2b7de87f75e83068efaeebe07d5c2be4ac
Author: Noel Grandin <noel at peralex.com>
Date:   Tue Oct 14 15:41:30 2014 +0200

    java: remove useless javadoc tags
    
    Change-Id: I83c59418c9eb32984dd5a2105e3d729e400520a4

diff --git a/wizards/com/sun/star/wizards/common/ConfigGroup.java b/wizards/com/sun/star/wizards/common/ConfigGroup.java
index 0a71af2..c9ae076 100644
--- a/wizards/com/sun/star/wizards/common/ConfigGroup.java
+++ b/wizards/com/sun/star/wizards/common/ConfigGroup.java
@@ -65,12 +65,10 @@ public class ConfigGroup implements ConfigNode
     }
 
     /**
-     * convert the primitive type value of the
+     * Convert the primitive type value of the
      * given Field object to the corresponding
      * Java Object value.
-     * @param field
      * @return the value of the field as a Object.
-     * @throws IllegalAccessException
      */
     public Object convertValue(Field field) throws IllegalAccessException
     {
diff --git a/wizards/com/sun/star/wizards/common/ConfigSet.java b/wizards/com/sun/star/wizards/common/ConfigSet.java
index 2e97984..9b8b647 100644
--- a/wizards/com/sun/star/wizards/common/ConfigSet.java
+++ b/wizards/com/sun/star/wizards/common/ConfigSet.java
@@ -377,18 +377,14 @@ public class ConfigSet implements ConfigNode, XMLProvider, ListModel
     }
 
     /**
-     * Set members might include a property
-     * which orders them.
-     * This method reindexes the given member to be
-     * the index number 0
+     * Set members might include a property which orders them.
+     * This method reindexes the given member to b the index number 0.
      * Do not forget to call commit() after calling this method.
-     * @param confView
-     * @param memberName
      */
     public void reindexSet(Object confView, String memberName, String indexPropertyName) throws Exception
     {
         /*
-         * First I read all memebrs of the set,
+         * First I read all members of the set,
          * except the one that should be number 0
          * to a vector, ordered by there index property
          */
diff --git a/wizards/com/sun/star/wizards/common/Configuration.java b/wizards/com/sun/star/wizards/common/Configuration.java
index 2eb3827..44c71f5 100644
--- a/wizards/com/sun/star/wizards/common/Configuration.java
+++ b/wizards/com/sun/star/wizards/common/Configuration.java
@@ -140,10 +140,6 @@ public abstract class Configuration
     }
 
     /** Creates a new instance of RegistryEntry
-     * @param name
-     * @param parent
-     * @return
-     * @throws Exception
      */
     public static Object getConfigurationNode(String name, Object parent) throws Exception
     {
@@ -257,13 +253,7 @@ public abstract class Configuration
      * to the given view. Note that if a node with the given name
      * already exists it will be completely removed from
      * the configuration.
-     * @param configView
-     * @param name
      * @return the new created configuration node.
-     * @throws com.sun.star.lang.WrappedTargetException
-     * @throws ElementExistException
-     * @throws NoSuchElementException
-     * @throws com.sun.star.uno.Exception
      */
     public static Object addConfigNode(Object configView, String name) throws com.sun.star.lang.WrappedTargetException, ElementExistException, NoSuchElementException, com.sun.star.uno.Exception
     {
diff --git a/wizards/com/sun/star/wizards/common/Desktop.java b/wizards/com/sun/star/wizards/common/Desktop.java
index 8b2c39a..a40ed76 100644
--- a/wizards/com/sun/star/wizards/common/Desktop.java
+++ b/wizards/com/sun/star/wizards/common/Desktop.java
@@ -246,8 +246,6 @@ public class Desktop
     /**
      * Checks if the passed Element Name already exists in the  ElementContainer. If yes it appends a
      * suffix to make it unique
-     * @param xElementContainer
-     * @param sElementName
      * @return a unique Name ready to be added to the container.
      */
     public static String getUniqueName(XNameAccess xElementContainer, String sElementName)
@@ -259,8 +257,6 @@ public class Desktop
     /**
      * Checks if the passed Element Name already exists in the  ElementContainer. If yes it appends a
      * suffix to make it unique
-     * @param xElementContainer
-     * @param sElementName
      * @return a unique Name ready to be added to the container.
      */
     public static String getUniqueName(XHierarchicalNameAccess xElementContainer, String sElementName)
@@ -272,9 +268,6 @@ public class Desktop
     /**
      * Checks if the passed Element Name already exists in the list If yes it appends a
      * suffix to make it unique
-     * @param _slist
-     * @param _sElementName
-     * @param _sSuffixSeparator
      * @return a unique Name not being in the passed list.
      */
     public static String getUniqueName(String[] _slist, String _sElementName, String _sSuffixSeparator)
@@ -306,10 +299,6 @@ public class Desktop
 
     /**
      * @deprecated  use Configuration.getConfigurationRoot() with the same parameters instead
-     * @param xMSF
-     * @param KeyName
-     * @param bForUpdate
-     * @return
      */
     public static XInterface getRegistryKeyContent(XMultiServiceFactory xMSF, String KeyName, boolean bForUpdate)
     {
@@ -438,16 +427,10 @@ public class Desktop
      * with a componentWindow.
      * It does it in three phases:
      * 1. Check if the given desktop argument has a componentWindow.
-     * If it is null, the myFrame argument is taken.
+     *    If it is null, the myFrame argument is taken.
      * 2. Go up the tree of frames and search a frame with a component window.
      * 3. Get from the desktop all the components, and give the first one
-     * which has a frame.
-     * @param xMSF
-     * @param myFrame
-     * @param desktop
-     * @return
-     * @throws NoSuchElementException
-     * @throws WrappedTargetException
+     *    which has a frame.
      */
     public static XFrame findAFrame(XMultiServiceFactory xMSF, XFrame myFrame, XFrame desktop)
             throws NoSuchElementException,
diff --git a/wizards/com/sun/star/wizards/common/FileAccess.java b/wizards/com/sun/star/wizards/common/FileAccess.java
index 3424860..8e27966 100644
--- a/wizards/com/sun/star/wizards/common/FileAccess.java
+++ b/wizards/com/sun/star/wizards/common/FileAccess.java
@@ -52,12 +52,6 @@ import com.sun.star.document.XDocumentProperties;
 public class FileAccess
 {
 
-    /**
-     *
-     * @param xMSF
-     * @param sPath
-     * @param sAddPath
-     */
     public static void addOfficePath(XMultiServiceFactory xMSF, String sPath, String sAddPath)
     {
         XSimpleFileAccess xSimpleFileAccess = null;
@@ -96,9 +90,6 @@ public class FileAccess
     /**
      * Further information on arguments value see in OO Developer Guide,
      * chapter 6.2.7
-     * @param xMSF
-     * @param sPath
-     * @param xSimpleFileAccess
      * @return the respective path of the office application. A probable following "/" at the end is trimmed.
      */
     public static String getOfficePath(XMultiServiceFactory xMSF, String sPath, XSimpleFileAccess xSimpleFileAccess)
@@ -121,13 +112,8 @@ public class FileAccess
     /**
      * Further information on arguments value see in OO Developer Guide,
      * chapter 6.2.7
-     * @param xMSF
-     * @param sPath
      * @param sType use "share" or "user". Set to PropertyNames.EMPTY_STRING if not needed eg for the WorkPath;
-     * In the return Officepath a possible slash at the end is cut off
-     * @param sSearchDir
-     * @return
-     * @throws NoValidPathException
+     *    In the return Officepath a possible slash at the end is cut off
      */
     public static String getOfficePath(XMultiServiceFactory xMSF, String sPath, String sType, String sSearchDir) throws NoValidPathException
     {
@@ -492,13 +478,12 @@ public class FileAccess
     }
 
     /**
-     * searches a directory for files which start with a certain
-     * prefix, and returns their URLs and document-titles.
-     * @param xMSF
+     * Searches a directory for files which start with a certain prefix, and returns their URLs and document-titles.
+     *
      * @param FilterName the prefix of the filename. a "-" is added to the prefix !
      * @param FolderName the folder (URL) to look for files...
      * @return an array with two array members. The first one, with document titles,
-     * the second with the corresponding URLs.
+     *         the second with the corresponding URLs.
      * @deprecated please use the getFolderTitles() with ArrayList
      */
     public static String[][] getFolderTitles(com.sun.star.lang.XMultiServiceFactory xMSF, String FilterName, String FolderName)
@@ -554,9 +539,6 @@ public class FileAccess
 
     /**
      * We search in all given path for a given file
-     * @param _sPath
-     * @param _sPath2
-     * @return
      */
     public static String addPath(String _sPath, String _sPath2)
     {
@@ -597,14 +579,6 @@ public class FileAccess
         return sFoundFile;
     }
 
-    /**
-     *
-     * @param xMSF
-     * @param _sStartFilterName
-     * @param FolderNames
-     * @return
-     * @throws com.sun.star.wizards.common.NoValidPathException
-     */
     public static String[][] getFolderTitles(com.sun.star.lang.XMultiServiceFactory xMSF, String _sStartFilterName, ArrayList<String> FolderNames)
             throws NoValidPathException
     {
@@ -742,7 +716,6 @@ public class FileAccess
     }
 
     /**
-     * @param filename
      * @return the extension of the given filename.
      */
     public static String getExtension(String filename)
@@ -763,10 +736,6 @@ public class FileAccess
         return filename;
     }
 
-    /**
-     * @param s
-     * @return
-     */
     public boolean mkdir(String s)
     {
         try
@@ -786,10 +755,9 @@ public class FileAccess
     }
 
     /**
-     * @param filename
      * @param def what to return in case of an exception
      * @return true if the given file exists or not.
-     * if an exception accures, returns the def value.
+     * if an exception occurs, returns the default value.
      */
     public boolean exists(String filename, boolean def)
     {
@@ -807,10 +775,6 @@ public class FileAccess
         return def;
     }
 
-    /**
-     * @param filename
-     * @return
-     */
     public boolean isDirectory(String filename)
     {
         try
@@ -829,9 +793,6 @@ public class FileAccess
 
     /**
      * lists the files in a given directory
-     * @param dir
-     * @param includeFolders
-     * @return
      */
     public String[] listFiles(String dir, boolean includeFolders)
     {
@@ -849,10 +810,6 @@ public class FileAccess
         return new String[0];
     }
 
-    /**
-     * @param file
-     * @return
-     */
     public boolean delete(String file)
     {
         try
@@ -872,10 +829,6 @@ public class FileAccess
         return false;
     }
 
-    /**
-     * @param path
-     * @return
-     */
     public static String getFilename(String path)
     {
         return getFilename(path, "/");
@@ -883,19 +836,12 @@ public class FileAccess
 
     /**
      * return the filename out of a system-dependent path
-     * @param path
-     * @return
      */
     public static String getPathFilename(String path)
     {
         return getFilename(path, File.separator);
     }
 
-    /**
-     * @param path
-     * @param pathSeparator
-     * @return
-     */
     public static String getFilename(String path, String pathSeparator)
     {
         String[] s = JavaTools.ArrayoutofString(path, pathSeparator);
@@ -909,11 +855,6 @@ public class FileAccess
         return filename.substring(0, filename.length() - (sExtension.length() + 1));
     }
 
-    /**
-     * @param source
-     * @param target
-     * @return
-     */
     public boolean copy(String source, String target)
     {
         try
@@ -947,7 +888,6 @@ public class FileAccess
     }
 
     /**
-     * @param url
      * @return the parent dir of the given url.
      * if the path points to file, gives the directory in which the file is.
      */
@@ -1051,9 +991,6 @@ public class FileAccess
 
     /**
      * shortens a filename to a user displayable representation.
-     * @param path
-     * @param maxLength
-     * @return
      */
     public static String getShortFilename(String path, int maxLength)
     {
diff --git a/wizards/com/sun/star/wizards/common/Helper.java b/wizards/com/sun/star/wizards/common/Helper.java
index 3aa4628..798378e 100644
--- a/wizards/com/sun/star/wizards/common/Helper.java
+++ b/wizards/com/sun/star/wizards/common/Helper.java
@@ -326,7 +326,6 @@ public class Helper
 
         /**
          * @param format a constant of the enumeration NumberFormatIndex
-         * @return
          */
         public int getFormat(short format)
         {
diff --git a/wizards/com/sun/star/wizards/common/JavaTools.java b/wizards/com/sun/star/wizards/common/JavaTools.java
index d7935b5..0a48d74 100644
--- a/wizards/com/sun/star/wizards/common/JavaTools.java
+++ b/wizards/com/sun/star/wizards/common/JavaTools.java
@@ -91,10 +91,6 @@ public class JavaTools
     }
 
     /**converts a list of Integer values included in an Integer vector to a list of int values
-     *
-     *
-     * @param _aIntegerVector
-     * @return
      */
     public static int[] IntegerTointList(java.util.List<Integer> _aIntegerVector)
     {
@@ -110,10 +106,6 @@ public class JavaTools
     }
 
     /**converts a list of Boolean values included in a Boolean vector to a list of boolean values
-     *
-     *
-     * @param _aBooleanVector
-     * @return
      */
     public static boolean[] BooleanTobooleanList(java.util.List<Boolean> _aBooleanVector)
     {
@@ -174,8 +166,6 @@ public class JavaTools
     }
 
     /**
-     * @param SearchList
-     * @param SearchString
      * @return the index of the field that contains the string 'SearchString' or '-1' if not it is
      * not contained within the array
      */
@@ -296,11 +286,6 @@ public class JavaTools
         return SortList;
     }
 
-    /**
-     * @param MainString
-     * @param Token
-     * @return
-     */
     public static String[] ArrayoutofString(String MainString, String Token)
     {
         String[] StringArray;
@@ -515,8 +500,6 @@ public class JavaTools
      * MasterFieldName1;MasterFieldName2;MasterFieldName3
      * The entries SlaveFieldNameX and MasterFieldNameX are grouped together and then the created groups are compared
      * If a group is duplicate the entry of the second group is returned.
-     * @param _scomplist
-     * @return
      */
     public static int getDuplicateFieldIndex(String[][] _scomplist)
     {
@@ -543,8 +526,6 @@ public class JavaTools
 
     /**
      * not tested!!!!!
-     * @param scomplist
-     * @return
      */
     public static int getDuplicateFieldIndex(String[] scomplist)
     {
@@ -658,9 +639,6 @@ public class JavaTools
 
     /**
      * compares two strings. If one of them is empty and the other one is null it also returns true
-     * @param sFirstString
-     * @param sSecondString
-     * @return
      */
     public static boolean isSame(String sFirstString, String sSecondString)
     {
diff --git a/wizards/com/sun/star/wizards/common/NumberFormatter.java b/wizards/com/sun/star/wizards/common/NumberFormatter.java
index 05fb55f..db44b23 100644
--- a/wizards/com/sun/star/wizards/common/NumberFormatter.java
+++ b/wizards/com/sun/star/wizards/common/NumberFormatter.java
@@ -72,14 +72,6 @@ public class NumberFormatter
     }
 
 
-    /**
-     * @param _xMSF
-     * @param _xNumberFormatsSupplier
-     * @return
-     * @throws Exception
-     * @deprecated
-     *
-     */
     public static XNumberFormatter createNumberFormatter(XMultiServiceFactory _xMSF, XNumberFormatsSupplier _xNumberFormatsSupplier) throws Exception
     {
         Object oNumberFormatter = _xMSF.createInstance("com.sun.star.util.NumberFormatter");
@@ -98,7 +90,6 @@ public class NumberFormatter
      * XNumberFormatter nf = Desktop.createNumberFormatter(xmsf, nsf);
      * nf.convertNumberToString( key, 1972 );
      * </pre>
-     * @param numberFormatsSupplier
      * @param type - a constant out of i18n.NumberFormatIndex enumeration.
      * @return a key to use with a util.NumberFormat instance.
      *
@@ -159,9 +150,6 @@ public class NumberFormatter
 
     /**
      * returns a numberformat for a FormatString.
-     * @param _FormatString
-     * @param _aLocale
-     * @return
      */
     public int defineNumberFormat(String _FormatString, Locale _aLocale)
     {
diff --git a/wizards/com/sun/star/wizards/common/NumericalHelper.java b/wizards/com/sun/star/wizards/common/NumericalHelper.java
index ab1cd36..676a760 100644
--- a/wizards/com/sun/star/wizards/common/NumericalHelper.java
+++ b/wizards/com/sun/star/wizards/common/NumericalHelper.java
@@ -81,8 +81,6 @@ public class NumericalHelper
 
     /**
      * get a byte value from the object
-     * @param aValue
-     * @return a byte
      * @throws com.sun.star.lang.IllegalArgumentException if the object cannot be converted
      */
     public static byte toByte(Object aValue)
@@ -137,8 +135,6 @@ public class NumericalHelper
 
     /**
      * get a char value from the object
-     * @param aValue
-     * @return a char
      * @throws com.sun.star.lang.IllegalArgumentException  if the object cannot be converted
      */
     public static char toChar(Object aValue)
@@ -201,8 +197,6 @@ public class NumericalHelper
 
     /**
      * get a short value from the object
-     * @param aValue
-     * @return a short
      * @throws com.sun.star.lang.IllegalArgumentException if the object cannot be converted
      */
     public static short toShort(Object aValue)
@@ -335,7 +329,6 @@ public class NumericalHelper
     /**
     @param aValue a object this can contain anything
      * @return true, if the value is type of any integer values. double / float are not(!) integer values
-     * @throws com.sun.star.lang.IllegalArgumentException
      */
     public static boolean isInteger(Object aValue) throws com.sun.star.lang.IllegalArgumentException
     {
@@ -393,8 +386,6 @@ public class NumericalHelper
 
     /**
      * get an int value from the object
-     * @param aValue
-     * @return an int
      * @throws com.sun.star.lang.IllegalArgumentException if the object cannot be converted
      */
     public static int toInt(Object aValue)
@@ -448,8 +439,6 @@ public class NumericalHelper
 
     /**
      * get a long value from the object
-     * @param aValue
-     * @return a long
      * @throws com.sun.star.lang.IllegalArgumentException if the object cannot be converted
      */
     public static long toLong(Object aValue)
@@ -503,8 +492,6 @@ public class NumericalHelper
 
     /**
      * get a float value from the object
-     * @param aValue
-     * @return a float
      * @throws com.sun.star.lang.IllegalArgumentException if the object cannot be converted
      */
     public static float toFloat(Object aValue)
@@ -558,8 +545,6 @@ public class NumericalHelper
 
     /**
      * get a double value from the object
-     * @param aValue
-     * @return a double
      * @throws com.sun.star.lang.IllegalArgumentException if the object cannot be converted
      */
     public static double toDouble(Object aValue)
@@ -613,8 +598,6 @@ public class NumericalHelper
 
     /**
      * get a String value from the object
-     * @param aValue
-     * @return a String
      * @throws com.sun.star.lang.IllegalArgumentException if the object cannot be converted
      */
     public static String toString(Object aValue)
@@ -663,8 +646,6 @@ public class NumericalHelper
 
     /**
      * get a boolean value from the object
-     * @param aValue
-     * @return a boolean
      * @throws com.sun.star.lang.IllegalArgumentException if the object cannot be converted
      */
     public static boolean toBoolean(Object aValue)
@@ -720,7 +701,6 @@ public class NumericalHelper
      * get an int array from an object
      * @param anArrayValue a value that is constructed into an array
      * @return an integer array
-     * @throws com.sun.star.lang.IllegalArgumentException
      */
     public static int[] toIntArray(Object anArrayValue)
             throws com.sun.star.lang.IllegalArgumentException
@@ -750,7 +730,6 @@ public class NumericalHelper
      * get an byte array from an object
      * @param anArrayValue a value that is constructed into an array
      * @return a byte array
-     * @throws com.sun.star.lang.IllegalArgumentException
      */
     public static byte[] toByteArray(Object anArrayValue)
             throws com.sun.star.lang.IllegalArgumentException
@@ -780,7 +759,6 @@ public class NumericalHelper
      * get a short array from an object
      * @param anArrayValue a value that is constructed into an array
      * @return a short array
-     * @throws com.sun.star.lang.IllegalArgumentException
      */
     public static short[] toShortArray(Object anArrayValue)
             throws com.sun.star.lang.IllegalArgumentException
@@ -810,7 +788,6 @@ public class NumericalHelper
      * get a string array from an object
      * @param anArrayValue a value that is constructed into an array
      * @return a short array
-     * @throws com.sun.star.lang.IllegalArgumentException
      */
     public static String[] toStringArray(Object anArrayValue)
             throws com.sun.star.lang.IllegalArgumentException
@@ -841,7 +818,6 @@ public class NumericalHelper
      * @param _aValue a value that is constructed into an int
      * @param _ndefaultValue the value that is returned, if conversion fails, or if 'aValue' is null
      * @return an int value
-     * @throws java.lang.Exception
      */
     public static int toInt(Object _aValue, int _ndefaultValue) throws Exception
     {
diff --git a/wizards/com/sun/star/wizards/common/PropertySetHelper.java b/wizards/com/sun/star/wizards/common/PropertySetHelper.java
index 8cf933d..5862300 100644
--- a/wizards/com/sun/star/wizards/common/PropertySetHelper.java
+++ b/wizards/com/sun/star/wizards/common/PropertySetHelper.java
@@ -71,7 +71,6 @@ public class PropertySetHelper
     set a property,
     @param _sName name of the property to set
     @param _aValue property value as object
-     * @throws java.lang.Exception
      */
     public void setPropertyValue(String _sName, Object _aValue) throws java.lang.Exception
     {
diff --git a/wizards/com/sun/star/wizards/common/Resource.java b/wizards/com/sun/star/wizards/common/Resource.java
index 1b7ec56..0ea3f5d 100644
--- a/wizards/com/sun/star/wizards/common/Resource.java
+++ b/wizards/com/sun/star/wizards/common/Resource.java
@@ -34,9 +34,6 @@ public class Resource
     XIndexAccess xStringListIndexAccess;
 
     /** Creates a new instance of Resource
-     * @param _xMSF
-     * @param _Unit
-     * @param _Module
      */
     public Resource(XMultiServiceFactory _xMSF, String _Unit /* unused */, String _Module)
     {
diff --git a/wizards/com/sun/star/wizards/common/SystemDialog.java b/wizards/com/sun/star/wizards/common/SystemDialog.java
index 8cfc29e..5e8f77d 100644
--- a/wizards/com/sun/star/wizards/common/SystemDialog.java
+++ b/wizards/com/sun/star/wizards/common/SystemDialog.java
@@ -48,8 +48,6 @@ public class SystemDialog
 
     /**
      *
-     * @param xMSF
-     * @param ServiceName
      * @param type  according to com.sun.star.ui.dialogs.TemplateDescription
      */
     public SystemDialog(XMultiServiceFactory xMSF, String ServiceName, short type)
@@ -118,11 +116,6 @@ public class SystemDialog
      * ATTENTION a BUG : The extension calculated
      * here gives the last 3 chars of the filename - what
      * if the extension is of 4 or more chars?
-     *
-     * @param DisplayDirectory
-     * @param DefaultName
-     * @param sDocuType
-     * @return
      */
     public String callStoreDialog(String DisplayDirectory, String DefaultName, String sDocuType)
     {
@@ -131,13 +124,6 @@ public class SystemDialog
         return callStoreDialog(DisplayDirectory, DefaultName);
     }
 
-    /**
-     *
-     * @param displayDir
-     * @param defaultName
-     * given url to a local path.
-     * @return
-     */
     public String callStoreDialog(String displayDir, String defaultName)
     {
         sStorePath = null;
@@ -350,12 +336,6 @@ public class SystemDialog
     /**
      * just like the other showMessageBox(...) method, but receives a
      * peer argument to use to create the message box.
-     * @param xMSF
-     * @param peer
-     * @param windowServiceName
-     * @param windowAttribute
-     * @param MessageText
-     * @return
      */
     public static int showMessageBox(XMultiServiceFactory xMSF, XWindowPeer peer, String windowServiceName, int windowAttribute, String MessageText)
     {
diff --git a/wizards/com/sun/star/wizards/common/UCB.java b/wizards/com/sun/star/wizards/common/UCB.java
index 46e1cd2..adeb788 100644
--- a/wizards/com/sun/star/wizards/common/UCB.java
+++ b/wizards/com/sun/star/wizards/common/UCB.java
@@ -103,10 +103,6 @@ public class UCB
 
     /**
      * @deprecated
-     * @param sourceDir
-     * @param filename
-     * @param targetDir
-     * @throws Exception
      */
     public void copy(String sourceDir, String filename, String targetDir) throws Exception
     {
@@ -115,11 +111,6 @@ public class UCB
 
     /**
      * target name can be PropertyNames.EMPTY_STRING, in which case the name stays lige the source name
-     * @param sourceDir
-     * @param sourceFilename
-     * @param targetDir
-     * @param targetFilename
-     * @return
      */
     public GlobalTransferCommandArgument copyArg(String sourceDir, String sourceFilename, String targetDir, String targetFilename)
     {
diff --git a/wizards/com/sun/star/wizards/db/CommandMetaData.java b/wizards/com/sun/star/wizards/db/CommandMetaData.java
index a4fe388..87e26b6 100644
--- a/wizards/com/sun/star/wizards/db/CommandMetaData.java
+++ b/wizards/com/sun/star/wizards/db/CommandMetaData.java
@@ -470,8 +470,6 @@ public class CommandMetaData extends DBMetaData
 
     /**
      * the fieldnames passed over are not necessarily the ones that are defined in the class
-     * @param _DisplayFieldNames
-     * @return
      */
     public boolean hasNumericalFields(String[] _DisplayFieldNames)
     {
@@ -571,10 +569,6 @@ public class CommandMetaData extends DBMetaData
     }
 
     /**@deprecated use 'RelationController' class instead
-     *
-     * @param _stablename
-     * @param _ncommandtype
-     * @return
      */
     public String[] getReferencedTables(String _stablename, int _ncommandtype)
     {
@@ -617,9 +611,6 @@ public class CommandMetaData extends DBMetaData
     }
 
     /**@deprecated use 'RelationController' class instead
-     *
-     * @param _sreferencedtablename
-     * @return
      */
     public String[][] getKeyColumns(String _sreferencedtablename)
     {
diff --git a/wizards/com/sun/star/wizards/db/DBMetaData.java b/wizards/com/sun/star/wizards/db/DBMetaData.java
index 4fd83b1..a4c49c2 100644
--- a/wizards/com/sun/star/wizards/db/DBMetaData.java
+++ b/wizards/com/sun/star/wizards/db/DBMetaData.java
@@ -815,8 +815,6 @@ public class DBMetaData
 
     /**
      * inserts a Query to a datasource; There is no validation if the queryname is already existing in the datasource
-     * @param _oSQLQueryComposer
-     * @param _QueryName
      */
     public boolean createQuery(SQLQueryComposer _oSQLQueryComposer, String _QueryName)
     {
@@ -909,8 +907,6 @@ public class DBMetaData
     /**
      * adds the passed document as a report or a form to the database. Afterwards the document is deleted.
      * the document may not be open
-     * @param _xComponent
-     * @param _xDocNameAccess
      * @param i_createTemplate  describes the type of the document: "form" or "report"
      */
     public void addDatabaseDocument(XComponent _xComponent, XHierarchicalNameAccess _xDocNameAccess, boolean i_createTemplate)
diff --git a/wizards/com/sun/star/wizards/db/TableDescriptor.java b/wizards/com/sun/star/wizards/db/TableDescriptor.java
index 2d34c4f..d70063b 100644
--- a/wizards/com/sun/star/wizards/db/TableDescriptor.java
+++ b/wizards/com/sun/star/wizards/db/TableDescriptor.java
@@ -75,9 +75,6 @@ public class TableDescriptor extends CommandMetaData implements XContainerListen
     private String sColumnAlreadyExistsMessage = PropertyNames.EMPTY_STRING;
     private XWindow xWindow;
 
-    /**
-     * @param xMSF
-     */
     public TableDescriptor(XMultiServiceFactory xMSF, XWindow _xWindow, String _sColumnAlreadyExistsMessage)
     {
         super(xMSF);
@@ -227,10 +224,7 @@ public class TableDescriptor extends CommandMetaData implements XContainerListen
 
     /**
      * creates the table under the passed name
-     * @param _catalogname
-     * @param _schemaname
      * @param _tablename is made unique if necessary
-     * @param _fieldnames
      * @return true or false to indicate successful creation or not
      */
     public boolean createTable(String _catalogname, String _schemaname, String _tablename, String[] _fieldnames)
@@ -798,10 +792,6 @@ public class TableDescriptor extends CommandMetaData implements XContainerListen
     {
     }
 
-    /**
-     * @param _scomposedtablename
-     * @return
-     */
     public boolean appendTableNameToFilter(String _scomposedtablename)
     {
         boolean bhastoinsert = true;
diff --git a/wizards/com/sun/star/wizards/db/TypeInspector.java b/wizards/com/sun/star/wizards/db/TypeInspector.java
index d0fde03..6cd8a49 100644
--- a/wizards/com/sun/star/wizards/db/TypeInspector.java
+++ b/wizards/com/sun/star/wizards/db/TypeInspector.java
@@ -262,8 +262,6 @@ public class TypeInspector
     /**
      * an empty string is returned when no appropriate Typename can be found
      * finds the first TypeName of the passed datatype.
-     * @param _curDataType
-     * @return
      */
     public String getDefaultTypeName(int _curDataType, Integer precision)
     {
diff --git a/wizards/com/sun/star/wizards/document/Control.java b/wizards/com/sun/star/wizards/document/Control.java
index b581898..6bcb4f0 100644
--- a/wizards/com/sun/star/wizards/document/Control.java
+++ b/wizards/com/sun/star/wizards/document/Control.java
@@ -262,8 +262,6 @@ public class Control extends Shape
 
     /** the peer should be retrieved every time before it is used because it
      * might be disposed otherwise
-     *
-     * @return
      */
     public XLayoutConstrains getPeer()
     {
@@ -345,9 +343,6 @@ public class Control extends Shape
         }
     }
 
-    /**
-     * @return
-     */
     public int getControlType()
     {
         return icontroltype;
diff --git a/wizards/com/sun/star/wizards/document/FormHandler.java b/wizards/com/sun/star/wizards/document/FormHandler.java
index 8cd4489..38615af 100644
--- a/wizards/com/sun/star/wizards/document/FormHandler.java
+++ b/wizards/com/sun/star/wizards/document/FormHandler.java
@@ -377,9 +377,6 @@ public class FormHandler
         return xNamedForm;
     }
 
-    /**
-     * @return
-     */
     public int getXPixelFactor()
     {
         if (iXPixelFactor == -1)
@@ -389,9 +386,6 @@ public class FormHandler
         return iXPixelFactor;
     }
 
-    /**
-     * @return
-     */
     public int getYPixelFactor()
     {
         if (iYPixelFactor == -1)
@@ -401,33 +395,21 @@ public class FormHandler
         return iYPixelFactor;
     }
 
-    /**
-     * @param i
-     */
     public void setXPixelFactor(int i)
     {
         iXPixelFactor = i;
     }
 
-    /**
-     * @param i
-     */
     public void setYPixelFactor(int i)
     {
         iYPixelFactor = i;
     }
 
-    /**
-     * @return
-     */
     public int getImageControlHeight()
     {
         return iImageControlHeight;
     }
 
-    /**
-     * @param i
-     */
     public void setImageControlHeight(int i)
     {
         iImageControlHeight = i;
@@ -513,9 +495,6 @@ public class FormHandler
         }
     }
 
-    /**
-     * @return
-     */
     public int getBasicLabelDiffHeight()
     {
         if (this.BasicLabelDiffHeight == -1)
@@ -525,9 +504,6 @@ public class FormHandler
         return BasicLabelDiffHeight;
     }
 
-    /**
-     * @return
-     */
     public int getControlReferenceHeight()
     {
         if (this.nDBRefHeight == -1)
@@ -537,9 +513,6 @@ public class FormHandler
         return nDBRefHeight;
     }
 
-    /**
-     * @return
-     */
     public int getLabelHeight()
     {
         if (this.nLabelHeight == -1)
diff --git a/wizards/com/sun/star/wizards/document/OfficeDocument.java b/wizards/com/sun/star/wizards/document/OfficeDocument.java
index 540c503..a66cdcf 100644
--- a/wizards/com/sun/star/wizards/document/OfficeDocument.java
+++ b/wizards/com/sun/star/wizards/document/OfficeDocument.java
@@ -110,7 +110,6 @@ public class OfficeDocument
 
     /**
      * Create a new office document, attached to the given frame.
-     * @param frame
      * @param sDocumentType e.g. swriter, scalc, ( simpress, scalc : not tested)
      * @return the document Component (implements XComponent) object ( XTextDocument, or XSpreadsheedDocument )
      */
diff --git a/wizards/com/sun/star/wizards/report/IReportBuilderLayouter.java b/wizards/com/sun/star/wizards/report/IReportBuilderLayouter.java
index 3bffc85..6ccb7c5 100644
--- a/wizards/com/sun/star/wizards/report/IReportBuilderLayouter.java
+++ b/wizards/com/sun/star/wizards/report/IReportBuilderLayouter.java
@@ -41,7 +41,6 @@ public interface IReportBuilderLayouter
     /**
      * For Landscape give nOrientation == com.sun.star.wizards.report.ReportLayouter.SOOPTLANDSCAPE
      * All other numbers are interpreted as portrait format.
-     * @param nOrientation
      */
     public void setPageOrientation(int nOrientation);
 
@@ -54,31 +53,26 @@ public interface IReportBuilderLayouter
      * Set the table name of the report
      * This is the name to the database table.
      * @param _nType something of com.sun.star.sdb.CommandType
-     * @param TableName
      */
     public void setTableName(int _nType, String TableName);
 
     /**
      * Insert the field names, these are the field names out of a given datebase table
-     * @param FieldNames
      */
     public void insertFieldNames(final String[] FieldNames);
 
     /**
      * Insert the field type (Varchar, int, ...) as internal an int representation.
-     * @param FieldTypes
      */
     public void insertFieldTypes(int[] FieldTypes);
 
     /**
      * Insert the field width in count of chars as given in the database.
-     * @param FieldWidths
      */
     public void insertFieldWidths(int[] FieldWidths);
 
     /**
      * Insert the titles of the field names. This names are free formed
-     * @param _aFieldTitles
      */
     public void insertFieldTitles(String[] _aFieldTitles);
 
@@ -86,7 +80,6 @@ public interface IReportBuilderLayouter
      * Insert the names of the groups, the group names are names out of the field names.
      *
      * If a group name is given here, it will not shown in the fields/titles, but must be in the field string list.
-     * @param _aGroupFieldNames
      */
     public void insertGroupNames(String[] _aGroupFieldNames);
 
@@ -94,7 +87,6 @@ public interface IReportBuilderLayouter
      * Insert the names of the groups which should be used as sorting, the group names are names out of the field names.
      *
      * If a group name is given here, it will not shown in the fields/titles, but must be in the field string list.
-     * @param _aSortFieldNames
      */
     public void insertSortingNames(String[][] _aSortFieldNames);
 
@@ -107,7 +99,6 @@ public interface IReportBuilderLayouter
      * Initialize the current Layouter with data's out of an other Layouter.
      *
      * This Method copies the internal fields, groups and titles
-     * @param aOtherLayouter
      */
     public void initializeData(IReportBuilderLayouter aOtherLayouter);
 
diff --git a/wizards/com/sun/star/wizards/report/IReportDefinitionReadAccess.java b/wizards/com/sun/star/wizards/report/IReportDefinitionReadAccess.java
index b365a06..3038e4a 100644
--- a/wizards/com/sun/star/wizards/report/IReportDefinitionReadAccess.java
+++ b/wizards/com/sun/star/wizards/report/IReportDefinitionReadAccess.java
@@ -43,7 +43,6 @@ public interface IReportDefinitionReadAccess
 
     /**
      * Returns the file path to the default report definition, we need this name for early initialisation
-     * @return
      */
     public String getDefaultHeaderLayout();
 }
diff --git a/wizards/com/sun/star/wizards/report/IReportDocument.java b/wizards/com/sun/star/wizards/report/IReportDocument.java
index f071a2e..662d3ff 100644
--- a/wizards/com/sun/star/wizards/report/IReportDocument.java
+++ b/wizards/com/sun/star/wizards/report/IReportDocument.java
@@ -43,7 +43,6 @@ public interface IReportDocument
 
     /**
      * Gives access to the DB Values
-     * @return
      */
     public com.sun.star.wizards.db.RecordParser getRecordParser();
 
@@ -51,7 +50,6 @@ public interface IReportDocument
      * Give access to the parent document
      * It is a document in the old Wizard
      * It is a Report Builder in the new Wizard
-     * @return
      */
     public com.sun.star.awt.XWindowPeer getWizardParent();
 
@@ -68,9 +66,6 @@ public interface IReportDocument
 
     /**
      * Is called after first step, set Tablename and the fields, which should occur in the Report.
-     * @param _aType
-     * @param TableName
-     * @param FieldNames
      */
     public void initializeFieldColumns(final int _aType, final String TableName, final String[] FieldNames);
 
@@ -89,7 +84,6 @@ public interface IReportDocument
 
     /**
      * Set new names for the titles
-     * @param sFieldTitles
      */
     public void setFieldTitles(final String[] sFieldTitles);
 
@@ -98,8 +92,6 @@ public interface IReportDocument
      * It is possible to give all element names new names which are used as
      * element title of a given element name.
      * This is only used as a preview
-     * @param FieldName
-     * @param TitleName
      */
     public void liveupdate_changeUserFieldContent(final String FieldName, final String TitleName);
 
@@ -109,27 +101,17 @@ public interface IReportDocument
     // Document should not hold the grouping information!
     /**
      * Called by press ('greater then') add a group to the group list
-     * @param GroupNames
-     * @param CurGroupTitle
-     * @param GroupFieldVector
-     * @param ReportPath
-     * @param iSelCount
-     * @return
      */
     public boolean liveupdate_addGroupNametoDocument(String[] GroupNames, String CurGroupTitle, ArrayList<String> GroupFieldVector, ArrayList<String> ReportPath, int iSelCount);
 
     public void refreshGroupFields(String[] _sNewNames);
     /**
      * Called by press ('less then') Removes an already set Groupname out of the list
-     * @param NewSelGroupNames
-     * @param CurGroupTitle
-     * @param GroupFieldVector
      */
     public void liveupdate_removeGroupName(String[] NewSelGroupNames, String CurGroupTitle, java.util.ArrayList<String> GroupFieldVector);
 
     /**
      * set the list how to group
-     * @param aGroupList
      */
     public void setGrouping(String[] aGroupList);
 
@@ -137,7 +119,6 @@ public interface IReportDocument
 
     /**
      * Set the list how to sort
-     * @param aSort
      */
     public void setSorting(String[][] aSort);
 
@@ -156,13 +137,11 @@ public interface IReportDocument
 
     /**
      * Called if a new Layout is selected
-     * @param LayoutTemplatePath
      */
     public void liveupdate_changeLayoutTemplate(String LayoutTemplatePath/*, String BitmapPath*/);
 
     /**
      * Called if a new Template is selected
-     * @param ContentTemplatePath
      */
     public void liveupdate_changeContentTemplate(String ContentTemplatePath);
 
@@ -177,14 +156,11 @@ public interface IReportDocument
     /**
      * Set the Title into the document from the 'Create Report Page'
      * BUG: The Title is empty after create Report.
-     * @param _sTitleName
      */
     public void liveupdate_updateReportTitle(String _sTitleName);
 
     /**
      * Store the document by the given name
-     * @param Name
-     * @param OpenMode
      */
     public void store(String Name, int OpenMode) throws com.sun.star.uno.Exception;
 
@@ -199,9 +175,6 @@ public interface IReportDocument
 
     /**
      * Create the final Report document
-     * @param Name
-     * @param _bAsTemplate
-     * @param _bOpenInDesign
      */
     public void createAndOpenReportDocument(
         final String Name,
@@ -227,13 +200,11 @@ public interface IReportDocument
 
     /**
      * Returns a string list of layouts.
-     * @return
      */
     public String[][] getDataLayout();
 
     /**
      * Returns a string list of header layouts
-     * @return
      */
     public String[][] getHeaderLayout();
 
@@ -243,7 +214,6 @@ public interface IReportDocument
 
     /**
      * check internal invariants
-     * @throws java.lang.Exception
      */
     public void checkInvariants() throws java.lang.Exception;
 }
diff --git a/wizards/com/sun/star/wizards/report/ReportImplementationHelper.java b/wizards/com/sun/star/wizards/report/ReportImplementationHelper.java
index 70c735b..765d85e 100644
--- a/wizards/com/sun/star/wizards/report/ReportImplementationHelper.java
+++ b/wizards/com/sun/star/wizards/report/ReportImplementationHelper.java
@@ -27,10 +27,6 @@ public class ReportImplementationHelper
     private XMultiServiceFactory m_xMSF;
     protected int m_nDefaultPageOrientation;
 
-    /**
-     * @param _aMSF
-     * @param _nOrientation
-     */
     public ReportImplementationHelper(XMultiServiceFactory _aMSF, int _nOrientation)
     {
         m_xMSF = _aMSF;
diff --git a/wizards/com/sun/star/wizards/reportbuilder/ReportBuilderImplementation.java b/wizards/com/sun/star/wizards/reportbuilder/ReportBuilderImplementation.java
index 191df44..e3e2520 100644
--- a/wizards/com/sun/star/wizards/reportbuilder/ReportBuilderImplementation.java
+++ b/wizards/com/sun/star/wizards/reportbuilder/ReportBuilderImplementation.java
@@ -599,7 +599,6 @@ public class ReportBuilderImplementation extends ReportImplementationHelper
     /**
      * Return a string array array with all found layouts
      * At the moment these layout are hard coded
-     * @return
      */
     public String[][] getDataLayout()
     {
diff --git a/wizards/com/sun/star/wizards/reportbuilder/layout/DesignTemplate.java b/wizards/com/sun/star/wizards/reportbuilder/layout/DesignTemplate.java
index 65fed5b..2315ea5 100644
--- a/wizards/com/sun/star/wizards/reportbuilder/layout/DesignTemplate.java
+++ b/wizards/com/sun/star/wizards/reportbuilder/layout/DesignTemplate.java
@@ -264,10 +264,6 @@ public class DesignTemplate
     /**
      * create a new DesignTemplate by try to load a otr file from the given path.
      * Internally we store the loaded ReportDefinition.
-     *
-     * @param _xMSF
-     * @param _sPath
-     * @return
      */
     public static DesignTemplate create(XMultiServiceFactory _xMSF, String _sPath)
     {
diff --git a/wizards/com/sun/star/wizards/reportbuilder/layout/ReportBuilderLayouter.java b/wizards/com/sun/star/wizards/reportbuilder/layout/ReportBuilderLayouter.java
index e95ac8c..62fa471 100644
--- a/wizards/com/sun/star/wizards/reportbuilder/layout/ReportBuilderLayouter.java
+++ b/wizards/com/sun/star/wizards/reportbuilder/layout/ReportBuilderLayouter.java
@@ -338,7 +338,6 @@ abstract public class ReportBuilderLayouter implements IReportBuilderLayouter
 
     /**
      * Stores the Group names. To insert/create a report with such group names, call layout()
-     * @param _aGroupNames
      */
     public void insertGroupNames(String[] _aGroupNames)
     {
@@ -467,7 +466,6 @@ abstract public class ReportBuilderLayouter implements IReportBuilderLayouter
 
     /**
      * Give a list off all field title names to insert the field title names, call layout()
-     * @param _aFieldTitleNames
      */
     public void insertFieldTitles(String[] _aFieldTitleNames)
     {
@@ -582,7 +580,6 @@ abstract public class ReportBuilderLayouter implements IReportBuilderLayouter
 
     /**
      * Give a list off all field names to insert the field names, call layout()
-     * @param _aFieldNames
      */
     public void insertFieldNames(String[] _aFieldNames)
     {
@@ -1568,7 +1565,6 @@ abstract public class ReportBuilderLayouter implements IReportBuilderLayouter
 
     /**
      * load the given string as a template and use it's content to paint the other
-     * @param LayoutTemplatePath
      */
     public void loadAndSetBackgroundTemplate(String LayoutTemplatePath)
     {
diff --git a/wizards/com/sun/star/wizards/reportbuilder/layout/SectionLabel.java b/wizards/com/sun/star/wizards/reportbuilder/layout/SectionLabel.java
index 5a1c0e2..b00d24c 100644
--- a/wizards/com/sun/star/wizards/reportbuilder/layout/SectionLabel.java
+++ b/wizards/com/sun/star/wizards/reportbuilder/layout/SectionLabel.java
@@ -35,7 +35,6 @@ public class SectionLabel extends SectionObject
 
     /**
      * Return the current FontDescriptor
-     * @return
      */
     public FontDescriptor getFontDescriptor()
     {
diff --git a/wizards/com/sun/star/wizards/table/CallTableWizard.java b/wizards/com/sun/star/wizards/table/CallTableWizard.java
index 0674ff7..40aff48 100644
--- a/wizards/com/sun/star/wizards/table/CallTableWizard.java
+++ b/wizards/com/sun/star/wizards/table/CallTableWizard.java
@@ -62,7 +62,6 @@ public class CallTableWizard
         // </properties>
 
         /** The constructor of the inner class has a XMultiServiceFactory parameter.
-         * @param i_serviceFactory
          */
         public TableWizardImplementation(com.sun.star.lang.XMultiServiceFactory i_serviceFactory)
         {
diff --git a/wizards/com/sun/star/wizards/text/TextDocument.java b/wizards/com/sun/star/wizards/text/TextDocument.java
index 5ef82e0..618b1b3 100644
--- a/wizards/com/sun/star/wizards/text/TextDocument.java
+++ b/wizards/com/sun/star/wizards/text/TextDocument.java
@@ -432,8 +432,6 @@ public class TextDocument
 
     /**
      * removes an arbitrary Object which supports the  'XTextContent' interface
-     * @param oTextContent
-     * @return
      */
     public boolean removeTextContent(Object oTextContent)
     {
diff --git a/wizards/com/sun/star/wizards/text/TextFieldHandler.java b/wizards/com/sun/star/wizards/text/TextFieldHandler.java
index 66c818e..eb3b25e 100644
--- a/wizards/com/sun/star/wizards/text/TextFieldHandler.java
+++ b/wizards/com/sun/star/wizards/text/TextFieldHandler.java
@@ -50,8 +50,6 @@ public class TextFieldHandler
 
     /**
      * Creates a new instance of TextFieldHandler
-     * @param xMSF
-     * @param xTextDocument
      */
     public TextFieldHandler(XMultiServiceFactory xMSF, XTextDocument xTextDocument)
     {
diff --git a/wizards/com/sun/star/wizards/ui/ButtonList.java b/wizards/com/sun/star/wizards/ui/ButtonList.java
index f80d601..9d9504a 100644
--- a/wizards/com/sun/star/wizards/ui/ButtonList.java
+++ b/wizards/com/sun/star/wizards/ui/ButtonList.java
@@ -483,33 +483,21 @@ public class ButtonList implements XItemEventBroadcaster, XActionListener
         cols = i;
     }
 
-    /**
-     * @param size
-     */
     public void setGap(Size size)
     {
         gap = size;
     }
 
-    /**
-     * @param model
-     */
     public void setListModel(ListModel model)
     {
         listModel = model;
     }
 
-    /**
-     * @param short1
-     */
     public void setStep(Short short1)
     {
         step = short1;
     }
 
-    /**
-     * @param i
-     */
     public void setPageStart(int i)
     {
         if (i == pageStart)
@@ -521,33 +509,21 @@ public class ButtonList implements XItemEventBroadcaster, XActionListener
         refreshImages();
     }
 
-    /**
-     * @param _size
-     */
     public void setPos(Size _size)
     {
         pos = _size;
     }
 
-    /**
-     * @param _renderer
-     */
     public void setRenderer(IImageRenderer _renderer)
     {
         this.renderer = _renderer;
     }
 
-    /**
-     * @param i
-     */
     public void setRows(int i)
     {
         rows = i;
     }
 
-    /**
-     * @param i
-     */
     public void setSelected(int i)
     {
         if (rowSelect && (i >= 0))
@@ -575,17 +551,11 @@ public class ButtonList implements XItemEventBroadcaster, XActionListener
         Helper.setUnoPropertyValue(getModel(lblImageText), PropertyNames.PROPERTY_LABEL, sText);
     }
 
-    /**
-     * @param size
-     */
     public void setSelectionGap(Size size)
     {
         selectionGap = size;
     }
 
-    /**
-     * @param b
-     */
     public void setShowButtons(boolean b)
     {
         showButtons = b;
@@ -642,7 +612,6 @@ public class ButtonList implements XItemEventBroadcaster, XActionListener
     {
 
         /**
-         * @param listItem
          * @return two resource ids for an image referenced in the imaglist resourcefile of the
          * wizards project; The second one of them is designed to be used for High Contrast Mode.
          */
@@ -691,7 +660,6 @@ public class ButtonList implements XItemEventBroadcaster, XActionListener
     /**
      * jump to the given item (display the screen
      * that contains the given item).
-     * @param i
      */
     public void display(int i)
     {
@@ -705,9 +673,6 @@ public class ButtonList implements XItemEventBroadcaster, XActionListener
         return benabled;
     }
 
-    /**
-     * @param b
-     */
     public void setenabled(boolean b)
     {
 
@@ -725,9 +690,9 @@ public class ButtonList implements XItemEventBroadcaster, XActionListener
         benabled = b;
     }
 
-/**
- * refresh on all buttons, the selected button will get state pressed
- */
+    /**
+     * refresh on all buttons, the selected button will get state pressed
+     */
     private void refreshSelection()
     {
         // reset all buttons to not set
@@ -751,11 +716,10 @@ public class ButtonList implements XItemEventBroadcaster, XActionListener
         }
     }
 
-/**
- * implementation of XActionListener
- * will call if a button from the m_aButtonList is pressed.
- * @param actionEvent
- */
+    /**
+     * implementation of XActionListener
+     * will call if a button from the m_aButtonList is pressed.
+     */
     public void actionPerformed(com.sun.star.awt.ActionEvent actionEvent)
     {
         XControlModel xModel = (XControlModel)UnoDialog2.getModel(actionEvent.Source);
diff --git a/wizards/com/sun/star/wizards/ui/CommandFieldSelection.java b/wizards/com/sun/star/wizards/ui/CommandFieldSelection.java
index a67928a..19a4642 100644
--- a/wizards/com/sun/star/wizards/ui/CommandFieldSelection.java
+++ b/wizards/com/sun/star/wizards/ui/CommandFieldSelection.java
@@ -72,15 +72,6 @@ public class CommandFieldSelection extends FieldSelection implements Comparator<
 
     /**
      * instantiates a CommandFieldSelection with a preselected command
-     * @param _CurUnoDialog
-     * @param _CurDBMetaData
-     * @param iStep
-     * @param _iHeight
-     * @param _reslblFields
-     * @param _reslblSelFields
-     * @param _reslblTables
-     * @param _bgetQueries
-     * @param _ifirstHID
      */
     public CommandFieldSelection(WizardDialog _CurUnoDialog, CommandMetaData _CurDBMetaData, int iStep, int _iHeight, String _reslblFields, String _reslblSelFields, String _reslblTables, boolean _bgetQueries, int _ifirstHID)
     {
@@ -91,14 +82,6 @@ public class CommandFieldSelection extends FieldSelection implements Comparator<
 
     /**
      * instantiates a CommandFieldSelection with a preselected command
-     * @param _CurUnoDialog
-     * @param _CurDBMetaData
-     * @param _iHeight
-     * @param _reslblFields
-     * @param _reslblSelFields
-     * @param _reslblTables
-     * @param _bgetQueries
-     * @param _ifirstHID
      */
     public CommandFieldSelection(UnoDialog _CurUnoDialog, CommandMetaData _CurDBMetaData, int _iHeight, String _reslblFields, String _reslblSelFields, String _reslblTables, boolean _bgetQueries, int _ifirstHID)
     {
diff --git a/wizards/com/sun/star/wizards/ui/FilterComponent.java b/wizards/com/sun/star/wizards/ui/FilterComponent.java
index f608b32..000e196 100644
--- a/wizards/com/sun/star/wizards/ui/FilterComponent.java
+++ b/wizards/com/sun/star/wizards/ui/FilterComponent.java
@@ -374,15 +374,6 @@ public class FilterComponent
     }
 
     /** Creates a new instance of FilterComponent
-     * @param CurUnoDialog
-     * @param _xMSF
-     * @param iStep
-     * @param iPosX
-     * @param iPosY
-     * @param iWidth
-     * @param FilterCount
-     * @param _oQueryMetaData
-     * @param _firstHelpID
      */
     public FilterComponent(WizardDialog CurUnoDialog, XMultiServiceFactory _xMSF, int iStep, int iPosX, int iPosY, int iWidth, int FilterCount, QueryMetaData _oQueryMetaData, int _firstHelpID)
     {
diff --git a/wizards/com/sun/star/wizards/ui/ImageList.java b/wizards/com/sun/star/wizards/ui/ImageList.java
index 5b6677d..98757fa 100644
--- a/wizards/com/sun/star/wizards/ui/ImageList.java
+++ b/wizards/com/sun/star/wizards/ui/ImageList.java
@@ -570,9 +570,6 @@ public class ImageList implements XItemEventBroadcaster, ListDataListener
         }
     }
 
-    /**
-     * @return
-     */
     public int getCols()
     {
         return cols;
@@ -796,9 +793,8 @@ public class ImageList implements XItemEventBroadcaster, ListDataListener
     {
 
         /**
-         * @param listItem
          * @return two resource ids for an image referenced in the imaglist resourcefile of the
-         * wizards project; The second one of them is designed to be used for High Contrast Mode.
+         *         wizards project; The second one of them is designed to be used for High Contrast Mode.
          */
         public Object[] getImageUrls(Object listItem);
     }
@@ -956,9 +952,7 @@ public class ImageList implements XItemEventBroadcaster, ListDataListener
     }
 
     /**
-     * jump to the given item (display the screen
-     * that contains the given item).
-     * @param i
+     * jump to the given item (display the screen that contains the given item).
      */
     public void display(int i)
     {
diff --git a/wizards/com/sun/star/wizards/ui/PeerConfig.java b/wizards/com/sun/star/wizards/ui/PeerConfig.java
index 39df7c8..48ded39 100644
--- a/wizards/com/sun/star/wizards/ui/PeerConfig.java
+++ b/wizards/com/sun/star/wizards/ui/PeerConfig.java
@@ -150,7 +150,6 @@ public class PeerConfig implements XWindowListener
 
     /**
      * @param oAPIControl an API control that the interface XControl can be derived from
-     * @param _saccessname
      */
     public void setAccessibleName(Object oAPIControl, String _saccessname)
     {
@@ -177,8 +176,6 @@ public class PeerConfig implements XWindowListener
 
     /**
      * @param oAPIControl an API control that the interface XControl can be derived from
-     * @param _propnames
-     * @param _propvalues
      */
     public void setPeerProperties(Object oAPIControl, String[] _propnames, Object[] _propvalues)
     {
@@ -195,9 +192,6 @@ public class PeerConfig implements XWindowListener
     /**
      * assigns an arbitrary property to a control as soon as the peer is created
      * Note: The property 'ImageUrl' should better be assigned with 'setImageurl(...)', to consider the High Contrast Mode
-     * @param _ocontrolmodel
-     * @param _spropname
-     * @param _propvalue
      */
     public void setControlProperty(Object _ocontrolmodel, String _spropname, Object _propvalue)
     {
@@ -209,9 +203,6 @@ public class PeerConfig implements XWindowListener
      * Assigns an image to the property 'ImageUrl' of a dialog control. The image id must be assigned in a resource file
      * within the wizards project
      * wizards project
-     * @param _ocontrolmodel
-     * @param _nResId
-     * @param _nhcResId
      */
     public void setImageUrl(Object _ocontrolmodel, int _nResId, int _nhcResId)
     {
@@ -222,9 +213,6 @@ public class PeerConfig implements XWindowListener
     /**
      * Assigns an image to the property 'ImageUrl' of a dialog control. The image ids that the Resource urls point to
      * may be assigned in a Resource file outside the wizards project
-     * @param _ocontrolmodel
-     * @param _sResourceUrl
-     * @param _sHCResourceUrl
      */
     public void setImageUrl(Object _ocontrolmodel, String _sResourceUrl, String _sHCResourceUrl)
     {
@@ -236,9 +224,6 @@ public class PeerConfig implements XWindowListener
      * Assigns an image to the property 'ImageUrl' of a dialog control. The image id must be assigned in a resource file
      * within the wizards project
      * wizards project
-     * @param _ocontrolmodel
-     * @param _oResource
-     * @param _oHCResource
      */
     public void setImageUrl(Object _ocontrolmodel, Object _oResource, Object _oHCResource)
     {
diff --git a/wizards/com/sun/star/wizards/ui/SortingComponent.java b/wizards/com/sun/star/wizards/ui/SortingComponent.java
index 9b0ff2e..3f55cdc 100644
--- a/wizards/com/sun/star/wizards/ui/SortingComponent.java
+++ b/wizards/com/sun/star/wizards/ui/SortingComponent.java
@@ -193,7 +193,6 @@ public class SortingComponent
     /**
      * sets the controls of a Sorting criterion to readonly or not.
      * @param _index index of the Sorting criterion
-     * @param _breadonly
      */
     public void setReadOnly(int _index, boolean _breadonly)
     {
@@ -203,7 +202,6 @@ public class SortingComponent
     /**
      *
      * @param _index the first Sorting criterion in which 'ReadOnly is set to 'false'
-     * @param _bcomplete
      */
     public void setReadOnlyUntil(int _index, boolean _bcomplete)
     {
diff --git a/wizards/com/sun/star/wizards/ui/UnoDialog.java b/wizards/com/sun/star/wizards/ui/UnoDialog.java
index 45482fc..ee99889 100644
--- a/wizards/com/sun/star/wizards/ui/UnoDialog.java
+++ b/wizards/com/sun/star/wizards/ui/UnoDialog.java
@@ -612,7 +612,6 @@ public class UnoDialog implements EventNames
     }
 
     /** deselects a Listbox. MultipleMode is not supported
-     * @param _xBasisListBox
      */
     public static void deselectListBox(XInterface _xBasisListBox)
     {
@@ -640,9 +639,7 @@ public class UnoDialog implements EventNames
 
     /**
      *
-     * @param FramePosSize
      * @return 0 for cancel, 1 for ok
-     * @throws com.sun.star.uno.Exception
      */
     public short executeDialog(Rectangle FramePosSize) throws com.sun.star.uno.Exception
     {
@@ -674,9 +671,7 @@ public class UnoDialog implements EventNames
     }
 
     /**
-     * @param parent
      * @return 0 for cancel, 1 for ok.
-     * @throws com.sun.star.uno.Exception
      */
     public short executeDialog(UnoDialog parent)
             throws com.sun.star.uno.Exception
@@ -685,9 +680,7 @@ public class UnoDialog implements EventNames
     }
 
     /**
-     * @param xComponent
      * @return 0 for cancel, 1 for ok.
-     * @throws com.sun.star.uno.Exception
      */
     public short executeDialog(XInterface xComponent) throws com.sun.star.uno.Exception
     {
@@ -732,12 +725,7 @@ public class UnoDialog implements EventNames
     }
 
     /**
-     * create a peer for this
-     * dialog, using the given
-     * peer as a parent.
-     * @param parentPeer
-     * @return
-     * @throws com.sun.star.uno.Exception
+     * create a peer for this dialog, using the given peer as a parent.
      */
     public XWindowPeer createWindowPeer(XWindowPeer parentPeer) throws com.sun.star.uno.Exception
     {
@@ -756,11 +744,7 @@ public class UnoDialog implements EventNames
     }
 
     /**
-     * Creates a peer for this
-     * dialog, using the active OO frame
-     * as the parent window.
-     * @return
-     * @throws com.sun.star.uno.Exception
+     * Creates a peer for this dialog, using the active OO frame as the parent window.
      */
     public XWindowPeer createWindowPeer() throws com.sun.star.uno.Exception
     {
@@ -897,7 +881,6 @@ public class UnoDialog implements EventNames
     }
 
     /**
-     * @param oControlModel
      * @return the name of the property that contains the value of a controlmodel
      */
     public static String getDisplayProperty(Object oControlModel)
diff --git a/wizards/com/sun/star/wizards/ui/WizardDialog.java b/wizards/com/sun/star/wizards/ui/WizardDialog.java
index f7a6864..56b34b2 100644
--- a/wizards/com/sun/star/wizards/ui/WizardDialog.java
+++ b/wizards/com/sun/star/wizards/ui/WizardDialog.java
@@ -74,8 +74,6 @@ public abstract class WizardDialog extends UnoDialog2 implements VetoableChangeL
      * "HID:(hid+3)" - the next button
      * "HID:(hid+4)" - the create button
      * "HID:(hid+5)" - the cancel button
-     * @param xMSF
-     * @param hid_
      */
     public WizardDialog(XMultiServiceFactory xMSF, int hid_)
     {
@@ -87,10 +85,6 @@ public abstract class WizardDialog extends UnoDialog2 implements VetoableChangeL
     //new Resource(xMSF,"Common","com");
     }
 
-    /**
-     *
-     * @return
-     */
     public Resource getResource()
     {
         return oWizardResource;
@@ -383,50 +377,29 @@ public abstract class WizardDialog extends UnoDialog2 implements VetoableChangeL
     /* (non-Javadoc)
      * @see com.sun.star.wizards.ui.XCompletion#iscompleted(int)
      */
-    /**
-     *
-     * @param _ndialogpage
-     * @return
-     */
     public boolean iscompleted(int _ndialogpage)
     {
         return false;
     }
+
     /* (non-Javadoc)
      * @see com.sun.star.wizards.ui.XCompletion#ismodified(int)
      */
-
-    /**
-     *
-     * @param _ndialogpage
-     * @return
-     */
     public boolean ismodified(int _ndialogpage)
     {
         return false;
     }
+
     /* (non-Javadoc)
      * @see com.sun.star.wizards.ui.XCompletion#setcompleted(int, boolean)
      */
-
-    /**
-     *
-     * @param _ndialogpage
-     * @param _biscompleted
-     */
     public void setcompleted(int _ndialogpage, boolean _biscompleted)
     {
     }
+
     /* (non-Javadoc)
      * @see com.sun.star.wizards.ui.XCompletion#setmodified(int, java.lang.Object, java.lang.Object)
      */
-
-    /**
-     *
-     * @param _ndialogpage
-     * @param ooldValue
-     * @param onewValue
-     */
     public void setmodified(int _ndialogpage, Object ooldValue, Object onewValue)
     {
     }
@@ -534,9 +507,6 @@ public abstract class WizardDialog extends UnoDialog2 implements VetoableChangeL
 
     /** This method also enables and disables the "next" button,
      * if the step currently dis/enabled is the one of the next steps.
-     * @param _nStep
-     * @param bEnabled
-     * @param enableNextButton
      */
     public void setStepEnabled(int _nStep, boolean bEnabled, boolean enableNextButton)
     {
diff --git a/wizards/com/sun/star/wizards/ui/event/DataAware.java b/wizards/com/sun/star/wizards/ui/event/DataAware.java
index 32d8ded..f55c480 100644
--- a/wizards/com/sun/star/wizards/ui/event/DataAware.java
+++ b/wizards/com/sun/star/wizards/ui/event/DataAware.java
@@ -62,7 +62,6 @@ public abstract class DataAware {
 
     /**
      * returns the data object.
-     * @return
      */
     public Object getDataObject() {
         return dataObject;
diff --git a/wizards/com/sun/star/wizards/ui/event/DataAwareFields.java b/wizards/com/sun/star/wizards/ui/event/DataAwareFields.java
index f5294fd..d1d0c31 100644
--- a/wizards/com/sun/star/wizards/ui/event/DataAwareFields.java
+++ b/wizards/com/sun/star/wizards/ui/event/DataAwareFields.java
@@ -37,11 +37,6 @@ public class DataAwareFields
     /**
      * returns a Value Object which sets and gets values
      * and converting them to other types, according to the "value" argument.
-     *
-     * @param owner
-     * @param fieldname
-     * @param value
-     * @return
      */
     public static DataAware.Value getFieldValueFor(Object owner, String fieldname, Object value)
     {
diff --git a/wizards/com/sun/star/wizards/ui/event/TaskEvent.java b/wizards/com/sun/star/wizards/ui/event/TaskEvent.java
index a907df6..1c98cff 100644
--- a/wizards/com/sun/star/wizards/ui/event/TaskEvent.java
+++ b/wizards/com/sun/star/wizards/ui/event/TaskEvent.java
@@ -29,11 +29,6 @@ public class TaskEvent extends EventObject
     public static final int TASK_FAILED = 5;
     private int type;
 
-    /**
-     * general constructor-
-     * @param source
-     * @param type_
-     */
     public TaskEvent(Task source, int type_)
     {
         super(source);
diff --git a/wizards/com/sun/star/wizards/ui/event/TaskListener.java b/wizards/com/sun/star/wizards/ui/event/TaskListener.java
index ecec8bb..bb2292b 100644
--- a/wizards/com/sun/star/wizards/ui/event/TaskListener.java
+++ b/wizards/com/sun/star/wizards/ui/event/TaskListener.java
@@ -28,7 +28,6 @@ public interface TaskListener extends EventListener
 
     /**
      * is called when the status of the task has advanced.
-     * @param te
      */
     public void taskStatusChanged(TaskEvent te);
 


More information about the Libreoffice-commits mailing list