diff options
Diffstat (limited to 'qadevOOo')
112 files changed, 270 insertions, 329 deletions
diff --git a/qadevOOo/runner/convwatch/GraphicalDifferenceCheck.java b/qadevOOo/runner/convwatch/GraphicalDifferenceCheck.java index a8c0a08fd8a2..74cc2477487b 100644 --- a/qadevOOo/runner/convwatch/GraphicalDifferenceCheck.java +++ b/qadevOOo/runner/convwatch/GraphicalDifferenceCheck.java @@ -128,8 +128,6 @@ public class GraphicalDifferenceCheck * * @param _sInputFile the original document * @param _sReferencePath the directory where the document will print as file or export as pdf. - * - * @throws ConvWatchException if the are problems, see containing message */ public static boolean isReferenceExists(String _sInputFile, String _sReferencePath, GraphicalTestArguments _aGTA) { @@ -146,7 +144,7 @@ public class GraphicalDifferenceCheck * needed very much disk space (up to 10MB per page). * The path _sOutputPath must be writeable. * @param _sReferencePath the directory where the document will print as file or export as pdf. - * @param _GTA Helper class for lot of parameter to control the office. + * @param _aGTA Helper class for lot of parameter to control the office. * * Disadvantage: stops rest if one test file has a problem. */ @@ -165,7 +163,7 @@ public class GraphicalDifferenceCheck * needed very much disk space (up to 10MB per page). * The path _sOutputPath must be writeable. * @param _sDiffPath Path to older differences. - * @param _GTA Helper class for lot of parameter to control the office. + * @param _aGTA Helper class for lot of parameter to control the office. * * * Stops all, if one creation of reference fails @@ -268,10 +266,10 @@ public class GraphicalDifferenceCheck * These documents need sufficient disk space (up to 10MB per page). * A directory structure will be created, which is a mirrored from input path. * - * @param resultDocName Name by which the xComponent shall be saved as OpenOffice.org XML document. + * @param _resultDocName Name by which the xComponent shall be saved as OpenOffice.org XML document. * If provided without suffix, the suffix will be derived from the export filter. * @param _sReferencePath the directory where the document will print as file or export as pdf. - * @param _GTA Helper class for lot of parameter to control the office. + * @param _aGTA Helper class for lot of parameter to control the office. */ public static boolean checkOneFile(XComponent xComponent, String _sOutputPath, String _resultDocName, String _sReferencePath, GraphicalTestArguments _aGTA ) throws ConvWatchException { diff --git a/qadevOOo/runner/convwatch/ReportDesignerTest.java b/qadevOOo/runner/convwatch/ReportDesignerTest.java index 3148e7f1509b..8efb5e430aa4 100644 --- a/qadevOOo/runner/convwatch/ReportDesignerTest.java +++ b/qadevOOo/runner/convwatch/ReportDesignerTest.java @@ -117,7 +117,7 @@ class PropertyHelper { /** Create a PropertyValue[] from a ArrayList - @param _aArrayList + @param _aPropertyList @return a PropertyValue[] */ public static PropertyValue[] createPropertyValueArrayFormArrayList(ArrayList _aPropertyList) diff --git a/qadevOOo/runner/helper/ConfigurationRead.java b/qadevOOo/runner/helper/ConfigurationRead.java index 4f19755d5c8b..b933f6143fa6 100644 --- a/qadevOOo/runner/helper/ConfigurationRead.java +++ b/qadevOOo/runner/helper/ConfigurationRead.java @@ -127,7 +127,7 @@ public class ConfigurationRead { /** * Get contents of a node by its hierarchical name. - * @param The hierarchical name of the node. + * @param name The hierarchical name of the node. * @return The contents as an object */ public Object getByHierarchicalName(String name) throws NoSuchElementException { diff --git a/qadevOOo/runner/helper/PropertyHelper.java b/qadevOOo/runner/helper/PropertyHelper.java index 94525abe73d9..f61565b14d5f 100644 --- a/qadevOOo/runner/helper/PropertyHelper.java +++ b/qadevOOo/runner/helper/PropertyHelper.java @@ -31,7 +31,7 @@ public class PropertyHelper { /** Create a PropertyValue[] from a ArrayList - @param _aArrayList + @param _aPropertyList @return a PropertyValue[] */ public static PropertyValue[] createPropertyValueArrayFormArrayList(ArrayList _aPropertyList) diff --git a/qadevOOo/runner/helper/URLHelper.java b/qadevOOo/runner/helper/URLHelper.java index 47db2a2e8248..c7dec7cd183c 100644 --- a/qadevOOo/runner/helper/URLHelper.java +++ b/qadevOOo/runner/helper/URLHelper.java @@ -242,7 +242,7 @@ public class URLHelper * used for further purposes. One parameter define the start directory, * another one describe the url protocol, which the return URL names should have. * - * @param sDir + * @param sStartDir * the start directory, which should include all test files * * @return [Vector] diff --git a/qadevOOo/runner/lib/MultiPropertyTest.java b/qadevOOo/runner/lib/MultiPropertyTest.java index 20e6cc96b4bc..ab6120b8a628 100644 --- a/qadevOOo/runner/lib/MultiPropertyTest.java +++ b/qadevOOo/runner/lib/MultiPropertyTest.java @@ -59,7 +59,7 @@ import com.sun.star.uno.Type; * * @see MultiMethodTest * @see #testProperty(String) - * @see #testProperty(String, Propertytester) + * @see #testProperty(String, PropertyTester) * @see #getNewValue * @see #compare * @see #toString(Object) @@ -258,11 +258,11 @@ public class MultiPropertyTest extends MultiMethodTest /** * The method checks result of setting a new value to the * property based o the following arguments: - * @propName - the property to test - * @oldValue - the old value of the property, before changing it. - * @newValue - the new value the property has been set with - * @resValue - the value of the property after having changed it - * @exception - if not null - the exception thrown by + * @param propName - the property to test + * @param oldValue - the old value of the property, before changing it. + * @param newValue - the new value the property has been set with + * @param resValue - the value of the property after having changed it + * @param exception - if not null - the exception thrown by * XPropertySet.setPropertyValue, else indicates * normal method completion. * @@ -509,9 +509,9 @@ public class MultiPropertyTest extends MultiMethodTest * specified as parameters. * * @param val1 Not <code>null</code> value for the property - * tested. - * @param val1 Not <code>null</code> value for the property - * tested which differs from the first value. + * tested. + * @param val2 Not <code>null</code> value for the property + * tested which differs from the first value. */ public PropertyValueSwitcher(Object val1, Object val2) { diff --git a/qadevOOo/runner/lib/Status.java b/qadevOOo/runner/lib/Status.java index d7ae42303efc..46af7202e56e 100644 --- a/qadevOOo/runner/lib/Status.java +++ b/qadevOOo/runner/lib/Status.java @@ -43,8 +43,8 @@ public class Status extends SimpleStatus { /** * Construct a status: use runState and state - * @param runState: either PASSED, SKIPPED, etc. - * @param state: OK or FAILED. + * @param runState either PASSED, SKIPPED, etc. + * @param state OK or FAILED. */ public Status(int runState, boolean state ) { super(runState, state); diff --git a/qadevOOo/runner/stats/OutProducerFactory.java b/qadevOOo/runner/stats/OutProducerFactory.java index f2fc7fe3795f..d81530ae7c0f 100644 --- a/qadevOOo/runner/stats/OutProducerFactory.java +++ b/qadevOOo/runner/stats/OutProducerFactory.java @@ -38,7 +38,7 @@ public class OutProducerFactory { * <li>DataBaseOut - If set to true, a database outproducer is created. * <li>OutProducer - The value of this parameter names the class that is created. * </ul> - * @param Parameters of the test. + * @param param Parameters of the test. * @return The created out producer. */ public static LogWriter createOutProducer(Hashtable param) { diff --git a/qadevOOo/runner/util/DBTools.java b/qadevOOo/runner/util/DBTools.java index 56940d6cba7b..c0c2c332163b 100644 --- a/qadevOOo/runner/util/DBTools.java +++ b/qadevOOo/runner/util/DBTools.java @@ -412,9 +412,8 @@ public class DBTools { /** * Performs connection to DataSource specified. * @param dbSource <code>com.sun.star.sdb.DataSource</code> service - * specified data source which must be already registered in the - * <code>DatabaseContext</code> service. - * @param dbSource Data source to be connected to. + * specified data source which must be already registered in the + * <code>DatabaseContext</code> service. * @return Connection to the data source. */ public XConnection connectToSource(Object dbSource) @@ -763,7 +762,7 @@ public class DBTools { * are declared for column index fast find. * @param statement object used for executing a static SQL * statement and obtaining the results produced by it. - * @param table Test table name. + * @param tbl_name Test table name. */ protected void createMySQLTable(Statement statement, String tbl_name) throws java.sql.SQLException { @@ -811,7 +810,7 @@ public class DBTools { * Drops table. * @param statement object used for executing a static SQL * statement and obtaining the results produced by it. - * @param table Test table name. + * @param tbl_name Test table name. */ protected void dropMySQLTable(Statement statement, String tbl_name) throws java.sql.SQLException { diff --git a/qadevOOo/runner/util/PropertyName.java b/qadevOOo/runner/util/PropertyName.java index 2921945170e8..860d834cf702 100644 --- a/qadevOOo/runner/util/PropertyName.java +++ b/qadevOOo/runner/util/PropertyName.java @@ -134,7 +134,7 @@ public interface PropertyName { /** * parameter name: "NoCwsAttach"<p> * If this parameter is set to "true" , a status of CWS-UnoAPI-Tests was not attached to EIS<p> - * @see tests.complex.unoapi.CheckModuleAPI + * @see complex.unoapi.CheckModuleAPI */ final public static String NO_CWS_ATTACH = "NoCwsAttach"; /** diff --git a/qadevOOo/runner/util/XMLTools.java b/qadevOOo/runner/util/XMLTools.java index b6149973ac6a..3337462d0e6c 100644 --- a/qadevOOo/runner/util/XMLTools.java +++ b/qadevOOo/runner/util/XMLTools.java @@ -908,7 +908,7 @@ public class XMLTools { * @param xDoc Target document to be imported. * @param docType Type of document (for example 'Calc', 'Writer', 'Draw') * The type must start with <b>capital</b> letter. - * @param exportType The type of export specifies if the whole + * @param importType The type of export specifies if the whole * document will be exported or one of its parts (Meta info, Styles, etc.). * The following types supported (it hardly depends of XML data in file) : * "" (empty string) - for the whole document ; @@ -932,4 +932,4 @@ public class XMLTools { xImp.setTargetDocument(xDoc) ; parseXMLFile(xMSF, fileURL, xDocHandImp) ; } -}
\ No newline at end of file +} diff --git a/qadevOOo/runner/util/utils.java b/qadevOOo/runner/util/utils.java index 2c7b0d77b835..f86ac4f77402 100644 --- a/qadevOOo/runner/util/utils.java +++ b/qadevOOo/runner/util/utils.java @@ -439,7 +439,7 @@ public class utils { /** * converts a fileURL to a system URL - * @param a file URL + * @param fileURL a file URL * @return a system URL */ public static String getSystemURL(String fileURL) { @@ -490,7 +490,7 @@ public class utils { /** * This method deletes via office the given file URL. It checks the existance * of <CODE>fileURL</CODE>. If exists it will be deletet. - * @param msf the multiservice factory + * @param xMsf the multiservice factory * @param fileURL the file to delete * @return true if the file could be deletet or the file does not exist */ @@ -515,9 +515,9 @@ public class utils { /** * This method copies via office a given file to a new one - * @param msf the multi service factory - * @param oldF the source file - * @param newF the destination file + * @param xMsf the multi service factory + * @param source the source file + * @param destinaion the destination file * @return true at success */ public static boolean copyFile(XMultiServiceFactory xMsf, String source, String destinaion) { @@ -897,7 +897,7 @@ public class utils { * @param expand the string to expand * @throws java.lang.Exception was thrown on any exception * @return return the expanded string - * @see com.sun.star.util.theMacroExpander + * @see com.sun.star.util.XMacroExpander */ public static String expandMacro(XMultiServiceFactory xMSF, String expand) throws java.lang.Exception { try { @@ -964,7 +964,7 @@ public class utils { /** * dispatches given <CODE>URL</CODE> to the <CODE>XController</CODE> * @param xMSF the <CODE>XMultiServiceFactory</CODE> - * @param xComp the <CODE>XController</CODE> to query for a XDispatchProvider + * @param xCont the <CODE>XController</CODE> to query for a XDispatchProvider * @param URL the <CODE>URL</CODE> to dispatch * @throws java.lang.Exception throws <CODE>java.lang.Exception</CODE> on any error */ diff --git a/qadevOOo/testdocs/qadevlibs/source/com/sun/star/cmp/MyPersistObject.java b/qadevOOo/testdocs/qadevlibs/source/com/sun/star/cmp/MyPersistObject.java index 254c5b7316bd..455d37760f2a 100644 --- a/qadevOOo/testdocs/qadevlibs/source/com/sun/star/cmp/MyPersistObject.java +++ b/qadevOOo/testdocs/qadevlibs/source/com/sun/star/cmp/MyPersistObject.java @@ -172,7 +172,7 @@ public class MyPersistObject implements XPersistObject, XTypeProvider, /** - * Fuction to get information about the property set. + * Function to get information about the property set. * @return The information * @see com.sun.star.io.XPropertySet */ diff --git a/qadevOOo/tests/java/ifc/accessibility/_XAccessibleSelection.java b/qadevOOo/tests/java/ifc/accessibility/_XAccessibleSelection.java index 13de4e4b61e3..2d87b644be9c 100644 --- a/qadevOOo/tests/java/ifc/accessibility/_XAccessibleSelection.java +++ b/qadevOOo/tests/java/ifc/accessibility/_XAccessibleSelection.java @@ -74,7 +74,7 @@ public class _XAccessibleSelection extends MultiMethodTest { * Retrieves the interface <code>XAccessibleContext</code> * and object relation. * @see com.sun.star.accessibility.XAccessibleContext - * @see ifc.accessibility.XAccessibleContext + * @see ifc.accessibility._XAccessibleContext */ protected void before() { xAC = (XAccessibleContext) UnoRuntime.queryInterface( @@ -593,4 +593,4 @@ public class _XAccessibleSelection extends MultiMethodTest { } catch (InterruptedException ex) { } } -}
\ No newline at end of file +} diff --git a/qadevOOo/tests/java/ifc/frame/_XNotifyingDispatch.java b/qadevOOo/tests/java/ifc/frame/_XNotifyingDispatch.java index cc5cc646f9f2..264becf93dd1 100644 --- a/qadevOOo/tests/java/ifc/frame/_XNotifyingDispatch.java +++ b/qadevOOo/tests/java/ifc/frame/_XNotifyingDispatch.java @@ -48,7 +48,7 @@ import com.sun.star.frame.DispatchResultEvent; * <ul> <p> * @see com.sun.star.frame.XDispatch * @see com.sun.star.frame.XNotifyingDispatch -* @see ifc.frmae._XDispatch +* @see ifc.frame._XDispatch */ public class _XNotifyingDispatch extends MultiMethodTest { diff --git a/qadevOOo/tests/java/ifc/i18n/_XCharacterClassification.java b/qadevOOo/tests/java/ifc/i18n/_XCharacterClassification.java index dc2d9d4d0fc5..d7515693acb5 100644 --- a/qadevOOo/tests/java/ifc/i18n/_XCharacterClassification.java +++ b/qadevOOo/tests/java/ifc/i18n/_XCharacterClassification.java @@ -301,7 +301,7 @@ public class _XCharacterClassification extends MultiMethodTest { * is equal to a number where element is located in array. Also method has * <b> OK </b> status for symbol with code 55296, because it doesn't work * since it hasn't the right neighborhood.<p> - * @see http://ppewww.ph.gla.ac.uk/~flavell/unicode/unidata.html + * @see "http://ppewww.ph.gla.ac.uk/~flavell/unicode/unidata.html" */ public void _getScript() { boolean res = true; @@ -401,7 +401,7 @@ public class _XCharacterClassification extends MultiMethodTest { /** * Method returns locale for a given language and country. - * @param localeIndex index of needed locale. + * @param k index of needed locale. */ private Locale getLocale(int k) { return new Locale(languages[k],countries[k],""); diff --git a/qadevOOo/tests/java/ifc/i18n/_XIndexEntrySupplier.java b/qadevOOo/tests/java/ifc/i18n/_XIndexEntrySupplier.java index c7216f4f5e17..a2980e6635c3 100644 --- a/qadevOOo/tests/java/ifc/i18n/_XIndexEntrySupplier.java +++ b/qadevOOo/tests/java/ifc/i18n/_XIndexEntrySupplier.java @@ -91,7 +91,7 @@ public class _XIndexEntrySupplier extends MultiMethodTest { /** * Method returns locale for a given language and country. - * @param localeIndex index of needed locale. + * @param k index of needed locale. * @return Locale by the index from arrays defined above */ public Locale getLocale(int k) { diff --git a/qadevOOo/tests/java/ifc/i18n/_XLocaleData.java b/qadevOOo/tests/java/ifc/i18n/_XLocaleData.java index bd2c160a218f..d5e23a5f9fea 100644 --- a/qadevOOo/tests/java/ifc/i18n/_XLocaleData.java +++ b/qadevOOo/tests/java/ifc/i18n/_XLocaleData.java @@ -400,7 +400,7 @@ public class _XLocaleData extends MultiMethodTest { /** * Method returns locale for a given language and country. - * @param localeIndex index of needed locale. + * @param k index of needed locale. * @return Locale by the index from arrays defined above */ public Locale getLocale(int k) { diff --git a/qadevOOo/tests/java/ifc/i18n/_XNumberFormatCode.java b/qadevOOo/tests/java/ifc/i18n/_XNumberFormatCode.java index 7717bcb39376..1163ae4ef178 100644 --- a/qadevOOo/tests/java/ifc/i18n/_XNumberFormatCode.java +++ b/qadevOOo/tests/java/ifc/i18n/_XNumberFormatCode.java @@ -146,7 +146,7 @@ public class _XNumberFormatCode extends MultiMethodTest { /** * Method returns locale for a given language and country. - * @param localeIndex index of needed locale. + * @param k index of needed locale. * @return Locale by the index from arrays defined above */ public Locale getLocale(int k) { diff --git a/qadevOOo/tests/java/ifc/registry/_XImplementationRegistration.java b/qadevOOo/tests/java/ifc/registry/_XImplementationRegistration.java index 16e3ff2b6748..04a07d78172b 100644 --- a/qadevOOo/tests/java/ifc/registry/_XImplementationRegistration.java +++ b/qadevOOo/tests/java/ifc/registry/_XImplementationRegistration.java @@ -50,7 +50,7 @@ import util.utils; * <ul> <p> * Test is <b> NOT </b> multithread compilant. <p> * After test completion object environment has to be recreated. -* @see com.sun.star.### +* @see com.sun.star */ public class _XImplementationRegistration extends MultiMethodTest { diff --git a/qadevOOo/tests/java/ifc/registry/_XSimpleRegistry.java b/qadevOOo/tests/java/ifc/registry/_XSimpleRegistry.java index 8d05b0864d75..a8c0ac5bd15a 100644 --- a/qadevOOo/tests/java/ifc/registry/_XSimpleRegistry.java +++ b/qadevOOo/tests/java/ifc/registry/_XSimpleRegistry.java @@ -395,7 +395,7 @@ public class _XSimpleRegistry extends MultiMethodTest { /** * Method calls <code>close()</code> of the interface * <code>com.sun.star.registry.XRegistryKey</code>. <p> - * @param interface <code>com.sun.star.registry.XRegistryKey</code> + * @param reg <code>com.sun.star.registry.XRegistryKey</code> */ public void closeReg(XSimpleRegistry reg) { if (nr == null) { @@ -407,4 +407,4 @@ public class _XSimpleRegistry extends MultiMethodTest { } } } -}
\ No newline at end of file +} diff --git a/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java b/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java index 606f1885fabe..afb65f99df51 100644 --- a/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java +++ b/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java @@ -72,7 +72,7 @@ public class _XSingleSelectQueryComposer extends MultiMethodTest { * <li><code>XPropertySet xProp</code></li> * <li><code>String colName</code></li> * </ul> <p> - * @see om.sun.star.sdb.XSingleSelectQueryAnalyzer + * @see com.sun.star.sdb.XSingleSelectQueryAnalyzer * @see com.sun.star.beans.XPropertySet */ protected void before() /* throws Exception*/ { diff --git a/qadevOOo/tests/java/ifc/sheet/_XCellRangesQuery.java b/qadevOOo/tests/java/ifc/sheet/_XCellRangesQuery.java index ade207f87525..c7eca70a22a8 100644 --- a/qadevOOo/tests/java/ifc/sheet/_XCellRangesQuery.java +++ b/qadevOOo/tests/java/ifc/sheet/_XCellRangesQuery.java @@ -47,7 +47,7 @@ import com.sun.star.uno.UnoRuntime; * </li> * <li>"XCellRangesQuery.EXPECTEDRESULTS": the expected results for the test * methods as a String array.<br> - * @see mod._sc.ScCellCurserObj or + * @see mod._sc.ScCellCursorObj or * @see mod._sc.ScCellObj for an example how this should look like. * </li> * </ul> @@ -300,4 +300,4 @@ public class _XCellRangesQuery extends MultiMethodTest { disposeEnvironment(); } } -}
\ No newline at end of file +} diff --git a/qadevOOo/tests/java/ifc/sheet/_XConsolidationDescriptor.java b/qadevOOo/tests/java/ifc/sheet/_XConsolidationDescriptor.java index 143f5d66d657..6364d2ff6770 100644 --- a/qadevOOo/tests/java/ifc/sheet/_XConsolidationDescriptor.java +++ b/qadevOOo/tests/java/ifc/sheet/_XConsolidationDescriptor.java @@ -236,7 +236,6 @@ public class _XConsolidationDescriptor extends MultiMethodTest { /** * Constructs new cell range addresses using old cell range addresses. - * @param CRaddr old cell range addresses * @return new cell range addresses */ public CellRangeAddress[] newCRaddr() { diff --git a/qadevOOo/tests/java/ifc/sheet/_XRangeSelection.java b/qadevOOo/tests/java/ifc/sheet/_XRangeSelection.java index a00935f68a88..01c5475ac039 100644 --- a/qadevOOo/tests/java/ifc/sheet/_XRangeSelection.java +++ b/qadevOOo/tests/java/ifc/sheet/_XRangeSelection.java @@ -168,7 +168,7 @@ public class _XRangeSelection extends MultiMethodTest { /** * Determine the current top window center and return this as a point. - * @ return a point representing the sheet center. + * @return a point representing the sheet center. */ protected Point getSheetCenter() { log.println("Trying to get AccessibleSpreadsheet"); diff --git a/qadevOOo/tests/java/ifc/text/_NumberingLevel.java b/qadevOOo/tests/java/ifc/text/_NumberingLevel.java index cde11ceee42d..917bb5a3783c 100644 --- a/qadevOOo/tests/java/ifc/text/_NumberingLevel.java +++ b/qadevOOo/tests/java/ifc/text/_NumberingLevel.java @@ -63,7 +63,7 @@ import share.LogWriter; * * @see com.sun.star.text.NumberingLevel * @see com.sun.star.test.ParagraphProperties -* @see ifc.text._ParagraphProperties +* @see ifc.style._ParagraphProperties */ public class _NumberingLevel { diff --git a/qadevOOo/tests/java/ifc/view/_XPrintJobBroadcaster.java b/qadevOOo/tests/java/ifc/view/_XPrintJobBroadcaster.java index b39cd7f55dcd..03e7cbeb4d1a 100644 --- a/qadevOOo/tests/java/ifc/view/_XPrintJobBroadcaster.java +++ b/qadevOOo/tests/java/ifc/view/_XPrintJobBroadcaster.java @@ -88,7 +88,7 @@ public class _XPrintJobBroadcaster extends MultiMethodTest { /** * Constructor - * @param An object that can be cast to an XPrintable. + * @param printable An object that can be cast to an XPrintable. */ public MyPrintJobListener(Object printable, String printFileName) { this.printFileName = printFileName; diff --git a/qadevOOo/tests/java/mod/_cached/CachedContentResultSetStubFactory.java b/qadevOOo/tests/java/mod/_cached/CachedContentResultSetStubFactory.java index ef82344eb598..64064be629a5 100644 --- a/qadevOOo/tests/java/mod/_cached/CachedContentResultSetStubFactory.java +++ b/qadevOOo/tests/java/mod/_cached/CachedContentResultSetStubFactory.java @@ -62,16 +62,16 @@ import lib.TestParameters; public class CachedContentResultSetStubFactory extends TestCase { /** - * Creating a Testenvironment for the interfaces to be tested. + * Creating a TestEnvironment for the interfaces to be tested. * Creates an instance of the service * <code>com.sun.star.ucb.CachedContentResultSetStubFactory</code>. <p> * Object relations created : * <ul> * <li> <code>'ContentResultSet'</code> for - * {@link ifc.XCachedContentResultSetStubFactory} : the destination + * {@link ifc.ucb._XCachedContentResultSetStubFactory} : the destination * interface requires as its parameter an instance of * <code>ContentResultSet</code> service. It is created - * using <code>UniversalContentBroker</code> and queriing it for + * using <code>UniversalContentBroker</code> and querying it for * <code>PackageContent</code> which represents JAR file mentioned * above. Then the dynamic list of file contents (entries) is retrieved, * and a static list is created from it. It represents diff --git a/qadevOOo/tests/java/mod/_cached/CachedDynamicResultSetFactory.java b/qadevOOo/tests/java/mod/_cached/CachedDynamicResultSetFactory.java index b211ad5302ee..92bd7f942957 100644 --- a/qadevOOo/tests/java/mod/_cached/CachedDynamicResultSetFactory.java +++ b/qadevOOo/tests/java/mod/_cached/CachedDynamicResultSetFactory.java @@ -62,13 +62,13 @@ import lib.TestParameters; public class CachedDynamicResultSetFactory extends TestCase { /** - * Creating a Testenvironment for the interfaces to be tested. + * Creating a TestEnvironment for the interfaces to be tested. * Creates an instance of the service * <code>com.sun.star.ucb.CachedDynamicResultSetFactory</code>. <p> * Object relations created : * <ul> * <li> <code>'CachedDynamicResultSetStub'</code> for - * {@link ifc.XCachedDynamicResultSetFactory} : the destination + * {@link ifc.ucb._XCachedDynamicResultSetFactory} : the destination * interface requires as its parameter an instance of * <code>CachedDynamicResultSetStub</code> service. It is created * using <code>UniversalContentBroker</code> and queriing it for diff --git a/qadevOOo/tests/java/mod/_cached/CachedDynamicResultSetStubFactory.java b/qadevOOo/tests/java/mod/_cached/CachedDynamicResultSetStubFactory.java index 3002e8bd1265..cd38fabe9ae4 100644 --- a/qadevOOo/tests/java/mod/_cached/CachedDynamicResultSetStubFactory.java +++ b/qadevOOo/tests/java/mod/_cached/CachedDynamicResultSetStubFactory.java @@ -61,16 +61,16 @@ import lib.TestParameters; public class CachedDynamicResultSetStubFactory extends TestCase { /** - * Creating a Testenvironment for the interfaces to be tested. + * Creating a TestEnvironment for the interfaces to be tested. * Creates an instance of the service * <code>com.sun.star.ucb.CachedDynamicResultSetStubFactory</code>. <p> * Object relations created : * <ul> * <li> <code>'DynamicResultSet'</code> for - * {@link ifc.XCachedDynamicResultSetStubFactory} : the destination + * {@link ifc.ucb._XCachedDynamicResultSetStubFactory} : the destination * interface requires as its parameter an instance of * <code>DynamicResultSet</code> service. It is created - * using <code>UniversalContentBroker</code> and queriing it for + * using <code>UniversalContentBroker</code> and querying it for * <code>PackageContent</code> which represents JAR file mentioned * above. Then the dynamic list of file contents (entries) is retrieved. * </li> diff --git a/qadevOOo/tests/java/mod/_dbaccess/ODatabaseContext.java b/qadevOOo/tests/java/mod/_dbaccess/ODatabaseContext.java index 3a46a18a4b15..7e6e1c559bc1 100644 --- a/qadevOOo/tests/java/mod/_dbaccess/ODatabaseContext.java +++ b/qadevOOo/tests/java/mod/_dbaccess/ODatabaseContext.java @@ -58,10 +58,10 @@ import util.utils; * @see com.sun.star.container.XElementAccess * @see com.sun.star.uno.XNamingService * @see com.sun.star.sdb.DatabaseContext -* @see ifc.container.XNameAccess -* @see ifc.container.XEnumerationAccess -* @see ifc.container.XElementAccess -* @see ifc.uno.XNamingService +* @see ifc.container._XNameAccess +* @see ifc.container._XEnumerationAccess +* @see ifc.container._XElementAccess +* @see ifc.uno._XNamingService */ public class ODatabaseContext extends TestCase { @@ -78,7 +78,7 @@ public class ODatabaseContext extends TestCase { * Needed object relations : * <ul> * <li> <code>'XNamingService.RegisterObject'</code> for - * {@link ifc.namingservice.XNamingService} as an + * {@link ifc.uno._XNamingService} as an * instance of <code>com.sun.star.sdb.DataSource</code> * service. </li> * </ul> diff --git a/qadevOOo/tests/java/mod/_dbaccess/ODatabaseSource.java b/qadevOOo/tests/java/mod/_dbaccess/ODatabaseSource.java index 622503f3a402..4acec5a18a7b 100644 --- a/qadevOOo/tests/java/mod/_dbaccess/ODatabaseSource.java +++ b/qadevOOo/tests/java/mod/_dbaccess/ODatabaseSource.java @@ -63,14 +63,14 @@ import com.sun.star.task.XInteractionHandler; * <li> <code>com::sun::star::beans::XPropertySet</code></li> * </ul> * -* @see com.sun.star.sdb.XQueryDefinitionSupplier +* @see com.sun.star.sdb.XQueryDefinitionsSupplier * @see com.sun.star.sdb.XFormDocumentsSupplier * @see com.sun.star.beans.XPropertySet * @see com.sun.star.sdb.DataSource * @see com.sun.star.sdb.XCompletedConnection * @see com.sun.star.util.XFlushable * @see com.sun.star.sdb.XReportDocumentsSupplier -* @see ifc.sdb._XQueryDefinitionSupplier +* @see ifc.sdb._XQueryDefinitionsSupplier * @see ifc.sdb._XFormDocumentsSupplier * @see ifc.beans._XPropertySet * @see ifc.sdb._DataSource diff --git a/qadevOOo/tests/java/mod/_dbaccess/OSingleSelectQueryComposer.java b/qadevOOo/tests/java/mod/_dbaccess/OSingleSelectQueryComposer.java index c579405a81c2..0e295b4d78df 100644 --- a/qadevOOo/tests/java/mod/_dbaccess/OSingleSelectQueryComposer.java +++ b/qadevOOo/tests/java/mod/_dbaccess/OSingleSelectQueryComposer.java @@ -161,13 +161,13 @@ public class OSingleSelectQueryComposer extends TestCase { * <ul>SingleSelectQueryAnalyzer * <li> <code>'xComposer'</code> for - * {@link ifc.sdb.XSingleSelectQueryAnalyzer} interface + * {@link ifc.sdb._XSingleSelectQueryAnalyzer} interface * <li> <code>'xQueryAna'</code> for - * {@link ifc.sdb.XSingleSelectQueryComposer} interface + * {@link ifc.sdb._XSingleSelectQueryComposer} interface * <li> <code>'xProp'</code> for - * {@link ifc.sdb.XSingleSelectQueryComposer} interface + * {@link ifc.sdb._XSingleSelectQueryComposer} interface * <li> <code>'colName'</code> for - * {@link ifc.sdb.XSingleSelectQueryComposer} interface + * {@link ifc.sdb._XSingleSelectQueryComposer} interface * </ul> * */ diff --git a/qadevOOo/tests/java/mod/_dbaccess/SbaXGridControl.java b/qadevOOo/tests/java/mod/_dbaccess/SbaXGridControl.java index 47f6723b7340..a63aa2c9c521 100644 --- a/qadevOOo/tests/java/mod/_dbaccess/SbaXGridControl.java +++ b/qadevOOo/tests/java/mod/_dbaccess/SbaXGridControl.java @@ -206,16 +206,16 @@ public class SbaXGridControl extends TestCase { * Object relations created : * <ul> * <li> <code>'GRAPHICS'</code> for - * {@link ifc.awt_XView} test : <code>XGraphics</code> + * {@link ifc.awt._XView} test : <code>XGraphics</code> * object different that belong to the object tested.</li> * <li> <code>'CONTEXT'</code> for * {@link ifc.awt._XControl} </li> * <li> <code>'WINPEER'</code> for - * {@link ifc.awt._XCOntrol} </li> + * {@link ifc.awt._XControl} </li> * <li> <code>'TOOLKIT'</code> for - * {@link ifc.awt._XCOntrol} </li> + * {@link ifc.awt._XControl} </li> * <li> <code>'MODEL'</code> for - * {@link ifc.awt._XCOntrol} </li> + * {@link ifc.awt._XControl} </li> * <li> <code>'XWindow.AnotherWindow'</code> for * {@link ifc.awt._XWindow} for switching focus.</li> * <li> <code>'XDispatch.URL'</code> for @@ -478,4 +478,4 @@ public class SbaXGridControl extends TestCase { return oCShape; } // finish createGrid -}
\ No newline at end of file +} diff --git a/qadevOOo/tests/java/mod/_dbpool/OConnectionPool.java b/qadevOOo/tests/java/mod/_dbpool/OConnectionPool.java index 783417814cd9..20721d104a7e 100644 --- a/qadevOOo/tests/java/mod/_dbpool/OConnectionPool.java +++ b/qadevOOo/tests/java/mod/_dbpool/OConnectionPool.java @@ -44,7 +44,7 @@ import com.sun.star.uno.XInterface; * <li> <code>com::sun::star::sdbc::XDriverManager</code></li> * </ul> * @see com.sun.star.sdbc.XDriverManager -* @see ifc.sdbc.XDriverManager +* @see ifc.sdbc._XDriverManager */ public class OConnectionPool extends TestCase { protected TestEnvironment createTestEnvironment(TestParameters Param, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_fop/FolderPicker.java b/qadevOOo/tests/java/mod/_fop/FolderPicker.java index 22f2ddd87a45..8d62834e6abd 100644 --- a/qadevOOo/tests/java/mod/_fop/FolderPicker.java +++ b/qadevOOo/tests/java/mod/_fop/FolderPicker.java @@ -54,11 +54,11 @@ import com.sun.star.uno.XInterface; * @see com.sun.star.ui.XFolderPicker * @see com.sun.star.lang.XTypeProvider * @see com.sun.star.ui.FolderPicker -* @see ifc.ui._XExecutableDialog +* @see ifc.ui.dialogs._XExecutableDialog * @see ifc.lang._XComponent * @see ifc.lang._XServiceInfo * @see ifc.ui._XFolderPickerNotifier -* @see ifc.ui._XFolderPicker +* @see ifc.ui.dialogs._XFolderPicker * @see ifc.lang._XTypeProvider */ public class FolderPicker extends TestCase { diff --git a/qadevOOo/tests/java/mod/_forms/OEditControl.java b/qadevOOo/tests/java/mod/_forms/OEditControl.java index 41d94f68bb55..9659017c8100 100644 --- a/qadevOOo/tests/java/mod/_forms/OEditControl.java +++ b/qadevOOo/tests/java/mod/_forms/OEditControl.java @@ -159,13 +159,13 @@ public class OEditControl extends TestCase { * {@link ifc.awt._XWindow} : the controller of another * component. </li> * <li> <code>'Win1'</code> for - * {@link ifc.form.XChangeBroadcaster} : the window (controller) + * {@link ifc.form._XChangeBroadcaster} : the window (controller) * of the tested component. </li> * <li> <code>'Win2'</code> for - * {@link ifc.form.XChangeBroadcaster} : the window (controller) + * {@link ifc.form._XChangeBroadcaster} : the window (controller) * of another component. </li> * <li> <code>'CONTROL'</code> for - * {@link ifc.form.XChangeBroadcaster} : the controller + * {@link ifc.form._XChangeBroadcaster} : the controller * of another component. </li> * </ul> */ diff --git a/qadevOOo/tests/java/mod/_fps/FilePicker.java b/qadevOOo/tests/java/mod/_fps/FilePicker.java index 762c0167f6d6..85941b101cc8 100644 --- a/qadevOOo/tests/java/mod/_fps/FilePicker.java +++ b/qadevOOo/tests/java/mod/_fps/FilePicker.java @@ -60,15 +60,15 @@ import com.sun.star.uno.XInterface; * @see com.sun.star.lang.XComponent * @see com.sun.star.ui.XFilePickerNotifier * @see com.sun.star.ui.XFilePicker -* @see ifc.ui._XFilePicker +* @see ifc.ui.dialogs._XFilePicker * @see ifc.lang._XInitialization * @see ifc.lang._XServiceInfo * @see ifc.lang._XTypeProvider -* @see ifc.ui._XExecutableDialog -* @see ifc.ui._XFilePickerControlAccess -* @see ifc.ui._XFilterManager +* @see ifc.ui.dialogs._XExecutableDialog +* @see ifc.ui.dialogs._XFilePickerControlAccess +* @see ifc.ui.dialogs._XFilterManager * @see ifc.lang._XComponent -* @see ifc.ui._XFilePickerNotifier +* @see ifc.ui.dialogs._XFilePickerNotifier */ public class FilePicker extends TestCase { @@ -82,10 +82,10 @@ public class FilePicker extends TestCase { * {@link ifc.lang._XInitialization} : argument * for creating dialog from teamplate. </li> * <li> <code>'XFilePickerControlAccess.ControlID'</code> for - * {@link ifc.ui._XFilePickerControlAccess} : here + * {@link ifc.ui.dialogs._XFilePickerControlAccess} : here * it is identifier of check box.</li> * <li> <code>'XFilePickerControlAccess.ControlValue'</code> for - * {@link ifc.ui._XFilePickerControlAccess} : + * {@link ifc.ui.dialogs._XFilePickerControlAccess} : * The value for control to set (since the initial value * of the control is empty) .</li> * </ul> diff --git a/qadevOOo/tests/java/mod/_fwk/ControlMenuController.java b/qadevOOo/tests/java/mod/_fwk/ControlMenuController.java index ac1fc6459cdf..c7fe5b88dd00 100644 --- a/qadevOOo/tests/java/mod/_fwk/ControlMenuController.java +++ b/qadevOOo/tests/java/mod/_fwk/ControlMenuController.java @@ -43,7 +43,7 @@ public class ControlMenuController extends TestCase { /** * Cleanup: close the created document * @param tParam The test parameters. - * @param The log writer. + * @param log The log writer. * @return The test environment. * protected void cleanup(TestParameters tParam, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_fwk/LayoutManager.java b/qadevOOo/tests/java/mod/_fwk/LayoutManager.java index 64b676903f24..176f6e1ac51b 100644 --- a/qadevOOo/tests/java/mod/_fwk/LayoutManager.java +++ b/qadevOOo/tests/java/mod/_fwk/LayoutManager.java @@ -48,8 +48,7 @@ public class LayoutManager extends TestCase { /** * Cleanup: close the created document * @param tParam The test parameters. - * @param The log writer. - * @return The test environment. + * @param log The log writer. */ protected void cleanup(TestParameters tParam, PrintWriter log) { log.println(" disposing xTextDoc "); @@ -73,7 +72,7 @@ public class LayoutManager extends TestCase { * <li>Get the LayoutManager from the frame</li> * </ul> * @param tParam The test parameters. - * @param The log writer. + * @param log The log writer. * @return The test environment. */ protected TestEnvironment createTestEnvironment(TestParameters tParam, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_fwk/ModuleUIConfigurationManager.java b/qadevOOo/tests/java/mod/_fwk/ModuleUIConfigurationManager.java index f4a2bbcafe18..6662a4497b88 100644 --- a/qadevOOo/tests/java/mod/_fwk/ModuleUIConfigurationManager.java +++ b/qadevOOo/tests/java/mod/_fwk/ModuleUIConfigurationManager.java @@ -61,8 +61,7 @@ public class ModuleUIConfigurationManager extends TestCase { /** * Cleanup: close the created document * @param tParam The test parameters. - * @param The log writer. - * @return The test environment. + * @param log The log writer. */ protected void cleanup(TestParameters tParam, PrintWriter log) { log.println(" disposing xTextDoc "); diff --git a/qadevOOo/tests/java/mod/_fwk/ObjectMenuController.java b/qadevOOo/tests/java/mod/_fwk/ObjectMenuController.java index bee051d1e39b..e405b717676d 100644 --- a/qadevOOo/tests/java/mod/_fwk/ObjectMenuController.java +++ b/qadevOOo/tests/java/mod/_fwk/ObjectMenuController.java @@ -44,8 +44,7 @@ public class ObjectMenuController extends TestCase { /** * Cleanup: close the created document * @param tParam The test parameters. - * @param The log writer. - * @return The test environment. + * @param log The log writer. */ protected void cleanup(TestParameters tParam, PrintWriter log) { log.println(" disposing xTextDoc "); @@ -70,7 +69,7 @@ public class ObjectMenuController extends TestCase { * <li>get the manager from the supplier</li> * </ul> * @param tParam The test parameters. - * @param The log writer. + * @param log The log writer. * @return The test environment. */ protected TestEnvironment createTestEnvironment(TestParameters tParam, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_fwk/PopupMenuControllerFactory.java b/qadevOOo/tests/java/mod/_fwk/PopupMenuControllerFactory.java index a9814e7c820e..3d690f132491 100644 --- a/qadevOOo/tests/java/mod/_fwk/PopupMenuControllerFactory.java +++ b/qadevOOo/tests/java/mod/_fwk/PopupMenuControllerFactory.java @@ -46,8 +46,7 @@ public class PopupMenuControllerFactory extends TestCase { /** * Cleanup: close the created document * @param tParam The test parameters. - * @param The log writer. - * @return The test environment. + * @param log The log writer. */ protected void cleanup(TestParameters tParam, PrintWriter log) { log.println(" disposing xTextDoc "); @@ -67,7 +66,7 @@ public class PopupMenuControllerFactory extends TestCase { /** * Create test environment: * @param tParam The test parameters. - * @param The log writer. + * @param log The log writer. * @return The test environment. */ protected TestEnvironment createTestEnvironment(TestParameters tParam, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_fwk/UIConfigurationManager.java b/qadevOOo/tests/java/mod/_fwk/UIConfigurationManager.java index b069186a66d9..9da97c8e6593 100644 --- a/qadevOOo/tests/java/mod/_fwk/UIConfigurationManager.java +++ b/qadevOOo/tests/java/mod/_fwk/UIConfigurationManager.java @@ -60,7 +60,7 @@ public class UIConfigurationManager extends TestCase { * <li>get the manager from the supplier</li> * </ul> * @param tParam The test parameters. - * @param The log writer. + * @param log The log writer. * @return The test environment. */ protected TestEnvironment createTestEnvironment(TestParameters tParam, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_fwk/UIElementFactoryManager.java b/qadevOOo/tests/java/mod/_fwk/UIElementFactoryManager.java index eb0091a9bccf..ee9d603ab35c 100644 --- a/qadevOOo/tests/java/mod/_fwk/UIElementFactoryManager.java +++ b/qadevOOo/tests/java/mod/_fwk/UIElementFactoryManager.java @@ -44,8 +44,7 @@ public class UIElementFactoryManager extends TestCase { /** * Cleanup: close the created document * @param tParam The test parameters. - * @param The log writer. - * @return The test environment. + * @param log The log writer. */ protected void cleanup(TestParameters tParam, PrintWriter log) { log.println(" disposing xTextDoc "); @@ -70,7 +69,7 @@ public class UIElementFactoryManager extends TestCase { * <li>get the manager from the supplier</li> * </ul> * @param tParam The test parameters. - * @param The log writer. + * @param log The log writer. * @return The test environment. */ protected TestEnvironment createTestEnvironment(TestParameters tParam, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_fwl/SubstituteVariables.java b/qadevOOo/tests/java/mod/_fwl/SubstituteVariables.java index 272c39588723..d63b6f1f91bc 100644 --- a/qadevOOo/tests/java/mod/_fwl/SubstituteVariables.java +++ b/qadevOOo/tests/java/mod/_fwl/SubstituteVariables.java @@ -46,7 +46,7 @@ import com.sun.star.uno.XInterface; * <li> <code>com::sun::star::lang::XMultiServiceFactory</code></li> * </ul> <p> * - * @see com::sun::star::util::XStringSubstitution + * @see com.sun.star.util.XStringSubstitution * @see ifc.util._XStringSubstitution */ public class SubstituteVariables extends TestCase { diff --git a/qadevOOo/tests/java/mod/_fwl/TypeDetection.java b/qadevOOo/tests/java/mod/_fwl/TypeDetection.java index e4ffbaeb43a2..1c97ae532119 100644 --- a/qadevOOo/tests/java/mod/_fwl/TypeDetection.java +++ b/qadevOOo/tests/java/mod/_fwl/TypeDetection.java @@ -71,7 +71,7 @@ import util.SOfficeFactory; * @see ifc.container._XNameContainer * @see ifc.container._XNameReplace * @see ifc.document._XTypeDetection - * @see ifc.util.XFlushable + * @see ifc.util._XFlushable */ public class TypeDetection extends TestCase { diff --git a/qadevOOo/tests/java/mod/_i18n/CalendarImpl.java b/qadevOOo/tests/java/mod/_i18n/CalendarImpl.java index 96e54ba9b9ce..6a8eed368d64 100644 --- a/qadevOOo/tests/java/mod/_i18n/CalendarImpl.java +++ b/qadevOOo/tests/java/mod/_i18n/CalendarImpl.java @@ -40,7 +40,7 @@ import com.sun.star.uno.XInterface; * <ul> * <li> <code>com::sun::star::i18n::Calendar</code></li> * </ul> -* @see ifc.i18n._Calendar +* @see ifc.i18n._XCalendar */ public class CalendarImpl extends TestCase { diff --git a/qadevOOo/tests/java/mod/_inv/Invocation.java b/qadevOOo/tests/java/mod/_inv/Invocation.java index af156b305433..ee162ed2b51d 100644 --- a/qadevOOo/tests/java/mod/_inv/Invocation.java +++ b/qadevOOo/tests/java/mod/_inv/Invocation.java @@ -47,24 +47,24 @@ import com.sun.star.uno.XInterface; public class Invocation extends TestCase { /** - * Creating a Testenvironment for the interfaces to be tested. + * Creating a TestEnvironment for the interfaces to be tested. * Creates service <code>com.sun.star.script.Invocation</code>. * Object relations created : * <ul> * <li> <code>'XSingleServiceFactory.createInstance.negative'</code> : - * for interface {@link _ifc.lang.XSingleServiceFactory} ; + * for interface {@link ifc.lang._XSingleServiceFactory} ; * <code>String</code> relation; If its value 'true' then * <code>createInstance</code> method for the object isn't * supported. In this case object doesn't support this method.</li> * <li> <code>'XSingleServiceFactory.arguments'</code> : - * for interface {@link _ifc.lang.XSingleServiceFactory} ; + * for interface {@link ifc.lang._XSingleServiceFactory} ; * has <code>Object[]</code> type. This relation is used as * a parameter for <code>createInstanceWithArguments</code> * method call. If this relation doesn't exist test pass - * zerro length array as argument. Here + * zero length array as argument. Here * <code>com.sun.star.io.Pipe</code> instance is passed.</li> * <li> <code>'XSingleServiceFactory.MustSupport'</code> : - * for interface {@link _ifc.lang.XSingleServiceFactory}. + * for interface {@link ifc.lang._XSingleServiceFactory}. * Specifies that created instance must support * <code>com.sun.star.script.XInvocation</code> interface. * </ul> diff --git a/qadevOOo/tests/java/mod/_mcnttype/MimeContentTypeFactory.java b/qadevOOo/tests/java/mod/_mcnttype/MimeContentTypeFactory.java index 635550d7c611..85a9499bf7ab 100644 --- a/qadevOOo/tests/java/mod/_mcnttype/MimeContentTypeFactory.java +++ b/qadevOOo/tests/java/mod/_mcnttype/MimeContentTypeFactory.java @@ -43,7 +43,7 @@ import com.sun.star.uno.XInterface; * <li> <code>com::sun::star::lang::XTypeProvider</code></li> * </ul> * This object test <b> is NOT </b> designed to be run in several -* threads concurently. +* threads concurrently. * @see com.sun.star.datatransfer.XMimeContentTypeFactory * @see com.sun.star.lang.XServiceInfo * @see com.sun.star.lang.XTypeProvider diff --git a/qadevOOo/tests/java/mod/_sc/ScAccessibleCell.java b/qadevOOo/tests/java/mod/_sc/ScAccessibleCell.java index 9f2a7dc0dff0..90fb0c210897 100644 --- a/qadevOOo/tests/java/mod/_sc/ScAccessibleCell.java +++ b/qadevOOo/tests/java/mod/_sc/ScAccessibleCell.java @@ -69,11 +69,11 @@ import com.sun.star.uno.XInterface; * @see com.sun.star.accessibility.XAccessibleComponent * @see com.sun.star.accessibility.XAccessibleTable * @see com.sun.star.accessibility.XAccessibleContext - * @see ifc.n.star.accessibility._XAccessibleSelection - * @see ifc.n.star.accessibility._XAccessibleEventBroadcaster - * @see ifc.n.star.accessibility._XAccessibleComponent - * @see ifc.n.star.accessibility._XAccessibleTable - * @see ifc.n.star.accessibility._XAccessibleContext + * @see ifc.accessibility._XAccessibleSelection + * @see ifc.accessibility._XAccessibleEventBroadcaster + * @see ifc.accessibility._XAccessibleComponent + * @see ifc.accessibility._XAccessibleTable + * @see ifc.accessibility._XAccessibleContext */ public class ScAccessibleCell extends TestCase { @@ -82,10 +82,10 @@ public class ScAccessibleCell extends TestCase { /** * Called to create an instance of <code>TestEnvironment</code> * with an object to test and related objects. - * Switchs the document to Print Preview mode. - * Obtains accissible object for the page view. + * Switches the document to Print Preview mode. + * Obtains accessible object for the page view. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -183,8 +183,7 @@ public class ScAccessibleCell extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes calc document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvCell.java b/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvCell.java index fc10eec971bc..e8c301864895 100644 --- a/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvCell.java +++ b/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvCell.java @@ -122,8 +122,7 @@ public class ScAccessibleCsvCell extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes calc document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -140,7 +139,7 @@ public class ScAccessibleCsvCell extends TestCase { * implementation does nothing. Subclasses can override to initialize * objects shared among all <code>TestEnvironment</code>s. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvGrid.java b/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvGrid.java index 907b1a962b22..e96d1356a17b 100644 --- a/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvGrid.java +++ b/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvGrid.java @@ -55,7 +55,7 @@ public class ScAccessibleCsvGrid extends TestCase { * method to provide the implementation and related objects. The method is * called from <code>getTestEnvironment()</code>. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -116,8 +116,7 @@ public class ScAccessibleCsvGrid extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes calc document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -134,7 +133,7 @@ public class ScAccessibleCsvGrid extends TestCase { * implementation does nothing. Subclasses can override to initialize * objects shared among all <code>TestEnvironment</code>s. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvRuler.java b/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvRuler.java index 541143dc835b..92c9a7819c40 100644 --- a/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvRuler.java +++ b/qadevOOo/tests/java/mod/_sc/ScAccessibleCsvRuler.java @@ -57,7 +57,7 @@ public class ScAccessibleCsvRuler extends TestCase { * method to provide the implementation and related objects. The method is * called from <code>getTestEnvironment()</code>. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -143,8 +143,7 @@ public class ScAccessibleCsvRuler extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes calc document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -161,7 +160,7 @@ public class ScAccessibleCsvRuler extends TestCase { * implementation does nothing. Subclasses can override to initialize * objects shared among all <code>TestEnvironment</code>s. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sc/ScAccessibleDocument.java b/qadevOOo/tests/java/mod/_sc/ScAccessibleDocument.java index 3fa746950750..a6e391b567df 100644 --- a/qadevOOo/tests/java/mod/_sc/ScAccessibleDocument.java +++ b/qadevOOo/tests/java/mod/_sc/ScAccessibleDocument.java @@ -61,8 +61,8 @@ import com.sun.star.uno.XInterface; * @see com.sun.star.accessibility.XAccessibleEventBroadcaster * @see com.sun.star.accessibility.XAccessibleSelection * @see ifc.accessibility._XAccessibleComponent - * @see ifc.accessibility.XAccessibleEventBroadcaster - * @see ifc.accessibility.XAccessibleSelection + * @see ifc.accessibility._XAccessibleEventBroadcaster + * @see ifc.accessibility._XAccessibleSelection * @see ifc.accessibility._XAccessibleContext */ public class ScAccessibleDocument extends TestCase { @@ -72,9 +72,9 @@ public class ScAccessibleDocument extends TestCase { /** * Called to create an instance of <code>TestEnvironment</code> * with an object to test and related objects. - * Obtains accissible object for the spreadsheet document. + * Obtains accessible object for the spreadsheet document. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -118,8 +118,7 @@ public class ScAccessibleDocument extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes calc document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -132,7 +131,7 @@ public class ScAccessibleDocument extends TestCase { * implementation does nothing. Subclasses can override to initialize * objects shared among all <code>TestEnvironment</code>s. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sc/ScAccessibleDocumentPagePreview.java b/qadevOOo/tests/java/mod/_sc/ScAccessibleDocumentPagePreview.java index dcf8d160725e..c8fbdf649915 100644 --- a/qadevOOo/tests/java/mod/_sc/ScAccessibleDocumentPagePreview.java +++ b/qadevOOo/tests/java/mod/_sc/ScAccessibleDocumentPagePreview.java @@ -69,8 +69,8 @@ import com.sun.star.util.XURLTransformer; * * @see com.sun.star.accessibility.XAccessibleComponent * @see com.sun.star.accessibility.XAccessibleContext - * @see ifc.n.star.accessibility._XAccessibleComponent - * @see ifc.n.star.accessibility._XAccessibleContext + * @see ifc.accessibility._XAccessibleComponent + * @see ifc.accessibility._XAccessibleContext */ public class ScAccessibleDocumentPagePreview extends TestCase { @@ -79,10 +79,10 @@ public class ScAccessibleDocumentPagePreview extends TestCase { /** * Called to create an instance of <code>TestEnvironment</code> * with an object to test and related objects. - * Switchs the document to Print Preview mode. - * Obtains accissible object for the page view. + * Switches the document to Print Preview mode. + * Obtains accessible object for the page view. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -196,8 +196,7 @@ public class ScAccessibleDocumentPagePreview extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes calc document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -212,7 +211,7 @@ public class ScAccessibleDocumentPagePreview extends TestCase { * implementation does nothing. Subclasses can override to initialize * objects shared among all <code>TestEnvironment</code>s. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sc/ScAccessiblePageHeader.java b/qadevOOo/tests/java/mod/_sc/ScAccessiblePageHeader.java index adf5e7e9531f..bce01aeed159 100644 --- a/qadevOOo/tests/java/mod/_sc/ScAccessiblePageHeader.java +++ b/qadevOOo/tests/java/mod/_sc/ScAccessiblePageHeader.java @@ -73,8 +73,8 @@ import com.sun.star.util.XURLTransformer; * * @see com.sun.star.accessibility.XAccessibleComponent * @see com.sun.star.accessibility.XAccessibleContext - * @see ifc.n.star.accessibility._XAccessibleComponent - * @see ifc.n.star.accessibility._XAccessibleContext + * @see ifc.accessibility._XAccessibleComponent + * @see ifc.accessibility._XAccessibleContext */ public class ScAccessiblePageHeader extends TestCase { @@ -83,10 +83,10 @@ public class ScAccessiblePageHeader extends TestCase { /** * Called to create an instance of <code>TestEnvironment</code> * with an object to test and related objects. - * Switchs the document to Print Preview mode. - * Obtains accissible object for the page view. + * Switches the document to Print Preview mode. + * Obtains accessible object for the page view. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -238,8 +238,7 @@ public class ScAccessiblePageHeader extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes calc document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -258,7 +257,7 @@ public class ScAccessiblePageHeader extends TestCase { * implementation does nothing. Subclasses can override to initialize * objects shared among all <code>TestEnvironment</code>s. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sc/ScAccessiblePageHeaderArea.java b/qadevOOo/tests/java/mod/_sc/ScAccessiblePageHeaderArea.java index 14eeb4f20257..89631a68b592 100644 --- a/qadevOOo/tests/java/mod/_sc/ScAccessiblePageHeaderArea.java +++ b/qadevOOo/tests/java/mod/_sc/ScAccessiblePageHeaderArea.java @@ -70,8 +70,8 @@ import com.sun.star.util.XURLTransformer; * * @see com.sun.star.accessibility.XAccessibleComponent * @see com.sun.star.accessibility.XAccessibleContext - * @see ifc.n.star.accessibility._XAccessibleComponent - * @see ifc.n.star.accessibility._XAccessibleContext + * @see ifc.accessibility._XAccessibleComponent + * @see ifc.accessibility._XAccessibleContext */ public class ScAccessiblePageHeaderArea extends TestCase { @@ -80,10 +80,10 @@ public class ScAccessiblePageHeaderArea extends TestCase { /** * Called to create an instance of <code>TestEnvironment</code> * with an object to test and related objects. - * Switchs the document to Print Preview mode. - * Obtains accissible object for the page view. + * Switches the document to Print Preview mode. + * Obtains accessible object for the page view. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -189,8 +189,7 @@ public class ScAccessiblePageHeaderArea extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes calc document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -209,7 +208,7 @@ public class ScAccessiblePageHeaderArea extends TestCase { * implementation does nothing. Subclasses can override to initialize * objects shared among all <code>TestEnvironment</code>s. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sc/ScModelObj.java b/qadevOOo/tests/java/mod/_sc/ScModelObj.java index 26b059d805c7..69d034dbb52a 100644 --- a/qadevOOo/tests/java/mod/_sc/ScModelObj.java +++ b/qadevOOo/tests/java/mod/_sc/ScModelObj.java @@ -118,7 +118,6 @@ public class ScModelObj extends TestCase { * {@link ifc.frame._XModel}( the current controller of the second * spreadsheet)</li> * </ul> - * @see */ protected synchronized TestEnvironment createTestEnvironment(TestParameters Param, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_sch/AccArea.java b/qadevOOo/tests/java/mod/_sch/AccArea.java index 4f4c3026df12..766fc73a4012 100644 --- a/qadevOOo/tests/java/mod/_sch/AccArea.java +++ b/qadevOOo/tests/java/mod/_sch/AccArea.java @@ -102,8 +102,7 @@ public class AccArea extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_sch/AccAxis.java b/qadevOOo/tests/java/mod/_sch/AccAxis.java index 9d52a263711a..14072bdb9b99 100644 --- a/qadevOOo/tests/java/mod/_sch/AccAxis.java +++ b/qadevOOo/tests/java/mod/_sch/AccAxis.java @@ -100,8 +100,7 @@ public class AccAxis extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_sch/AccDataPoint.java b/qadevOOo/tests/java/mod/_sch/AccDataPoint.java index e7f259d5227e..535230e64b43 100644 --- a/qadevOOo/tests/java/mod/_sch/AccDataPoint.java +++ b/qadevOOo/tests/java/mod/_sch/AccDataPoint.java @@ -101,8 +101,7 @@ public class AccDataPoint extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_sch/AccDataSeries.java b/qadevOOo/tests/java/mod/_sch/AccDataSeries.java index 9aaaefa09773..bf159aabdd1e 100644 --- a/qadevOOo/tests/java/mod/_sch/AccDataSeries.java +++ b/qadevOOo/tests/java/mod/_sch/AccDataSeries.java @@ -101,8 +101,7 @@ public class AccDataSeries extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_sch/AccDiagram.java b/qadevOOo/tests/java/mod/_sch/AccDiagram.java index ad83b01aa3fc..adf919dd6235 100644 --- a/qadevOOo/tests/java/mod/_sch/AccDiagram.java +++ b/qadevOOo/tests/java/mod/_sch/AccDiagram.java @@ -101,8 +101,7 @@ public class AccDiagram extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_sch/AccFloor.java b/qadevOOo/tests/java/mod/_sch/AccFloor.java index 0b8c8dca5f45..2137ab730c64 100644 --- a/qadevOOo/tests/java/mod/_sch/AccFloor.java +++ b/qadevOOo/tests/java/mod/_sch/AccFloor.java @@ -126,8 +126,7 @@ public class AccFloor extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_sch/AccGrid.java b/qadevOOo/tests/java/mod/_sch/AccGrid.java index 5cc910e8bd7a..53b57e05c4bd 100644 --- a/qadevOOo/tests/java/mod/_sch/AccGrid.java +++ b/qadevOOo/tests/java/mod/_sch/AccGrid.java @@ -102,8 +102,7 @@ public class AccGrid extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_sch/AccLegend.java b/qadevOOo/tests/java/mod/_sch/AccLegend.java index 414d19b8202f..7eaa9f75f4db 100644 --- a/qadevOOo/tests/java/mod/_sch/AccLegend.java +++ b/qadevOOo/tests/java/mod/_sch/AccLegend.java @@ -100,8 +100,7 @@ public class AccLegend extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_sch/AccLegendEntry.java b/qadevOOo/tests/java/mod/_sch/AccLegendEntry.java index 7e423e99eacf..5544445d6dbf 100644 --- a/qadevOOo/tests/java/mod/_sch/AccLegendEntry.java +++ b/qadevOOo/tests/java/mod/_sch/AccLegendEntry.java @@ -100,8 +100,7 @@ public class AccLegendEntry extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_sch/AccStatisticsObject.java b/qadevOOo/tests/java/mod/_sch/AccStatisticsObject.java index ddbae4db8dc5..39308d38e0c7 100644 --- a/qadevOOo/tests/java/mod/_sch/AccStatisticsObject.java +++ b/qadevOOo/tests/java/mod/_sch/AccStatisticsObject.java @@ -105,8 +105,7 @@ public class AccStatisticsObject extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_sch/AccTitle.java b/qadevOOo/tests/java/mod/_sch/AccTitle.java index 14885ed2399b..f4c670090e15 100644 --- a/qadevOOo/tests/java/mod/_sch/AccTitle.java +++ b/qadevOOo/tests/java/mod/_sch/AccTitle.java @@ -100,8 +100,7 @@ public class AccTitle extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_sch/AccWall.java b/qadevOOo/tests/java/mod/_sch/AccWall.java index bbb135516860..179834d63a25 100644 --- a/qadevOOo/tests/java/mod/_sch/AccWall.java +++ b/qadevOOo/tests/java/mod/_sch/AccWall.java @@ -125,8 +125,7 @@ public class AccWall extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_sch/AccessibleDocumentView.java b/qadevOOo/tests/java/mod/_sch/AccessibleDocumentView.java index 5103e6af2842..28e0e2df4800 100644 --- a/qadevOOo/tests/java/mod/_sch/AccessibleDocumentView.java +++ b/qadevOOo/tests/java/mod/_sch/AccessibleDocumentView.java @@ -93,8 +93,7 @@ public class AccessibleDocumentView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -109,7 +108,7 @@ public class AccessibleDocumentView extends TestCase { * Called while the <code>TestCase</code> initialization. * Creates a chart document. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sch/ChXDiagram.java b/qadevOOo/tests/java/mod/_sch/ChXDiagram.java index b44c3736b2d3..9791701f8b14 100644 --- a/qadevOOo/tests/java/mod/_sch/ChXDiagram.java +++ b/qadevOOo/tests/java/mod/_sch/ChXDiagram.java @@ -188,7 +188,7 @@ public class ChXDiagram extends TestCase { * <ul> * <li> <code>'CHARTDOC'</code> for * {@link ifc.chart._Dim3DDiagram}, {@link ifc.chart._StockDiagram}, - * {@link ifc.chart._ChartAxisZSupplier}, {@link _LineDiagram}, + * {@link ifc.chart._ChartAxisZSupplier}, {@link ifc.chart._LineDiagram}, * {@link ifc.chart._BarDiagram}, {@link ifc.chart._Diagram}, * {@link ifc.chart._ChartTwoAxisYSupplier}, * {@link ifc.chart._StackableDiagram}, {@link ifc.chart._Diagram}, diff --git a/qadevOOo/tests/java/mod/_sd/AccessibleDrawDocumentView.java b/qadevOOo/tests/java/mod/_sd/AccessibleDrawDocumentView.java index 6f9c4cebd260..139e011ed179 100644 --- a/qadevOOo/tests/java/mod/_sd/AccessibleDrawDocumentView.java +++ b/qadevOOo/tests/java/mod/_sd/AccessibleDrawDocumentView.java @@ -61,7 +61,7 @@ public class AccessibleDrawDocumentView extends TestCase { * method to provide the implementation and related objects. The method is * called from <code>getTestEnvironment()</code>. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -142,8 +142,7 @@ public class AccessibleDrawDocumentView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes Impress documents. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -156,7 +155,7 @@ public class AccessibleDrawDocumentView extends TestCase { * implementation does nothing. Subclasses can override to initialize * objects shared among all <code>TestEnvironment</code>s. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sd/AccessibleOutlineView.java b/qadevOOo/tests/java/mod/_sd/AccessibleOutlineView.java index cd65454e7943..35cdc1812ec1 100644 --- a/qadevOOo/tests/java/mod/_sd/AccessibleOutlineView.java +++ b/qadevOOo/tests/java/mod/_sd/AccessibleOutlineView.java @@ -59,7 +59,7 @@ public class AccessibleOutlineView extends TestCase { * method to provide the implementation and related objects. The method is * called from <code>getTestEnvironment()</code>. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -105,8 +105,7 @@ public class AccessibleOutlineView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes Impress documents. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log ) { @@ -119,7 +118,7 @@ public class AccessibleOutlineView extends TestCase { * implementation does nothing. Subclasses can override to initialize * objects shared among all <code>TestEnvironment</code>s. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sd/AccessibleSlideView.java b/qadevOOo/tests/java/mod/_sd/AccessibleSlideView.java index ceba2a69fc34..f33a472b0009 100644 --- a/qadevOOo/tests/java/mod/_sd/AccessibleSlideView.java +++ b/qadevOOo/tests/java/mod/_sd/AccessibleSlideView.java @@ -59,7 +59,7 @@ public class AccessibleSlideView extends TestCase { * method to provide the implementation and related objects. The method is * called from <code>getTestEnvironment()</code>. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -112,8 +112,7 @@ public class AccessibleSlideView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes Impress documents. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log ) { @@ -126,7 +125,7 @@ public class AccessibleSlideView extends TestCase { * implementation does nothing. Subclasses can override to initialize * objects shared among all <code>TestEnvironment</code>s. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sd/DrawController_DrawView.java b/qadevOOo/tests/java/mod/_sd/DrawController_DrawView.java index 4dfa034941f5..7f1dfa32eafd 100644 --- a/qadevOOo/tests/java/mod/_sd/DrawController_DrawView.java +++ b/qadevOOo/tests/java/mod/_sd/DrawController_DrawView.java @@ -88,8 +88,7 @@ public class DrawController_DrawView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes Impress documents. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -127,7 +126,7 @@ public class DrawController_DrawView extends TestCase { * {@link ifc.frame._XController}(the current controller of the second * created document) </li> * <li> <code>'DrawPage'</code> for - * {@link ifc.drawing.DrawingDocumentDrawView}(the draw page which will + * {@link ifc.drawing._DrawingDocumentDrawView}(the draw page which will * be new current page) </li> * </ul> * @see com.sun.star.frame.XModel diff --git a/qadevOOo/tests/java/mod/_sd/DrawController_HandoutView.java b/qadevOOo/tests/java/mod/_sd/DrawController_HandoutView.java index a554283e5226..d326a15df68c 100644 --- a/qadevOOo/tests/java/mod/_sd/DrawController_HandoutView.java +++ b/qadevOOo/tests/java/mod/_sd/DrawController_HandoutView.java @@ -103,8 +103,7 @@ public class DrawController_HandoutView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes Impress documents. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -114,7 +113,7 @@ public class DrawController_HandoutView extends TestCase { } /** - * Creating a Testenvironment for the interfaces to be tested. + * Creating a TestEnvironment for the interfaces to be tested. * Creates two impress documents. After creating * of the documents makes short * wait to allow frames to be loaded. Retrieves @@ -144,7 +143,7 @@ public class DrawController_HandoutView extends TestCase { * {@link ifc.frame._XController}(the current controller of the second * created document) </li> * <li> <code>'DrawPage'</code> for - * {@link ifc.drawing.DrawingDocumentDrawView}(the draw page which will + * {@link ifc.drawing._DrawingDocumentDrawView}(the draw page which will * be new current page) </li> * </ul> * @see com.sun.star.frame.XModel diff --git a/qadevOOo/tests/java/mod/_sd/DrawController_NotesView.java b/qadevOOo/tests/java/mod/_sd/DrawController_NotesView.java index 8cee85145b8b..4581451c79bb 100644 --- a/qadevOOo/tests/java/mod/_sd/DrawController_NotesView.java +++ b/qadevOOo/tests/java/mod/_sd/DrawController_NotesView.java @@ -103,8 +103,7 @@ public class DrawController_NotesView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes Impress documents. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -144,7 +143,7 @@ public class DrawController_NotesView extends TestCase { * {@link ifc.frame._XController}(the current controller of the second * created document) </li> * <li> <code>'DrawPage'</code> for - * {@link ifc.drawing.DrawingDocumentDrawView}(the draw page which will + * {@link ifc.drawing._DrawingDocumentDrawView}(the draw page which will * be new current page) </li> * </ul> * @see com.sun.star.frame.XModel diff --git a/qadevOOo/tests/java/mod/_sd/DrawController_OutlineView.java b/qadevOOo/tests/java/mod/_sd/DrawController_OutlineView.java index c3b037dd331d..a21a6b7131d1 100644 --- a/qadevOOo/tests/java/mod/_sd/DrawController_OutlineView.java +++ b/qadevOOo/tests/java/mod/_sd/DrawController_OutlineView.java @@ -103,8 +103,7 @@ public class DrawController_OutlineView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes Impress documents. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -144,7 +143,7 @@ public class DrawController_OutlineView extends TestCase { * {@link ifc.frame._XController}(the current controller of the second * created document) </li> * <li> <code>'DrawPage'</code> for - * {@link ifc.drawing.DrawingDocumentDrawView}(the draw page which will + * {@link ifc.drawing._DrawingDocumentDrawView}(the draw page which will * be new current page) </li> * </ul> * @see com.sun.star.frame.XModel diff --git a/qadevOOo/tests/java/mod/_sd/DrawController_PresentationView.java b/qadevOOo/tests/java/mod/_sd/DrawController_PresentationView.java index 35584606b124..741f8ead63d2 100644 --- a/qadevOOo/tests/java/mod/_sd/DrawController_PresentationView.java +++ b/qadevOOo/tests/java/mod/_sd/DrawController_PresentationView.java @@ -103,8 +103,7 @@ public class DrawController_PresentationView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes Impress documents. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -144,7 +143,7 @@ public class DrawController_PresentationView extends TestCase { * {@link ifc.frame._XController}(the current controller of the second * created document) </li> * <li> <code>'DrawPage'</code> for - * {@link ifc.drawing.DrawingDocumentDrawView}(the draw page which will + * {@link ifc.drawing._DrawingDocumentDrawView}(the draw page which will * be new current page) </li> * </ul> * @see com.sun.star.frame.XModel diff --git a/qadevOOo/tests/java/mod/_sd/SdUnoDrawView.java b/qadevOOo/tests/java/mod/_sd/SdUnoDrawView.java index ff8f240abb85..8b7378b7d3c1 100644 --- a/qadevOOo/tests/java/mod/_sd/SdUnoDrawView.java +++ b/qadevOOo/tests/java/mod/_sd/SdUnoDrawView.java @@ -102,8 +102,7 @@ public class SdUnoDrawView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes Impress documents. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -141,7 +140,7 @@ public class SdUnoDrawView extends TestCase { * {@link ifc.frame._XController}(the current controller of the second * created document) </li> * <li> <code>'DrawPage'</code> for - * {@link ifc.drawing.DrawingDocumentDrawView}(the draw page which will + * {@link ifc.drawing._DrawingDocumentDrawView}(the draw page which will * be new current page) </li> * </ul> * @see com.sun.star.frame.XModel diff --git a/qadevOOo/tests/java/mod/_sd/SdUnoOutlineView.java b/qadevOOo/tests/java/mod/_sd/SdUnoOutlineView.java index a20ec082d5db..a151fbb43bd2 100644 --- a/qadevOOo/tests/java/mod/_sd/SdUnoOutlineView.java +++ b/qadevOOo/tests/java/mod/_sd/SdUnoOutlineView.java @@ -96,8 +96,7 @@ public class SdUnoOutlineView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes Impress documents. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_sd/SdUnoPresView.java b/qadevOOo/tests/java/mod/_sd/SdUnoPresView.java index 2ad72192a350..ff36a7347b15 100644 --- a/qadevOOo/tests/java/mod/_sd/SdUnoPresView.java +++ b/qadevOOo/tests/java/mod/_sd/SdUnoPresView.java @@ -100,8 +100,7 @@ public class SdUnoPresView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes Impress documents. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -111,7 +110,7 @@ public class SdUnoPresView extends TestCase { } /** - * Creating a Testenvironment for the interfaces to be tested. + * Creating a Test environment for the interfaces to be tested. * Creates two impress documents. After creating of the documents makes short * wait to allow frames to be loaded. Retrieves the collection of the draw pages * from the first document and takes one of them. Inserts some shapes to the diff --git a/qadevOOo/tests/java/mod/_sd/SdUnoSlideView.java b/qadevOOo/tests/java/mod/_sd/SdUnoSlideView.java index 8975a6f71ece..a3f35e442932 100644 --- a/qadevOOo/tests/java/mod/_sd/SdUnoSlideView.java +++ b/qadevOOo/tests/java/mod/_sd/SdUnoSlideView.java @@ -68,8 +68,7 @@ public class SdUnoSlideView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes Impress documents. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_sd/SdXImpressDocument.java b/qadevOOo/tests/java/mod/_sd/SdXImpressDocument.java index 2ded897c964c..2f0c86a75f8f 100644 --- a/qadevOOo/tests/java/mod/_sd/SdXImpressDocument.java +++ b/qadevOOo/tests/java/mod/_sd/SdXImpressDocument.java @@ -96,8 +96,7 @@ public class SdXImpressDocument extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes Impress document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup(TestParameters Param, PrintWriter log) { diff --git a/qadevOOo/tests/java/mod/_svtools/AccessibleIconChoiceCtrlEntry.java b/qadevOOo/tests/java/mod/_svtools/AccessibleIconChoiceCtrlEntry.java index 889b95596b00..674522dae20e 100644 --- a/qadevOOo/tests/java/mod/_svtools/AccessibleIconChoiceCtrlEntry.java +++ b/qadevOOo/tests/java/mod/_svtools/AccessibleIconChoiceCtrlEntry.java @@ -73,7 +73,7 @@ import com.sun.star.util.XURLTransformer; * @see ifc.accessibility._XAccessibleEventBroadcaster * @see ifc.accessibility._XAccessibleContext * @see ifc.accessibility._XAccessibleComponent - * @see ifc.accessibility.XAccessibleText + * @see ifc.accessibility._XAccessibleText */ public class AccessibleIconChoiceCtrlEntry extends TestCase { diff --git a/qadevOOo/tests/java/mod/_svx/AccessibleEditableTextPara.java b/qadevOOo/tests/java/mod/_svx/AccessibleEditableTextPara.java index 9662e2a83e2a..72d047d60b23 100644 --- a/qadevOOo/tests/java/mod/_svx/AccessibleEditableTextPara.java +++ b/qadevOOo/tests/java/mod/_svx/AccessibleEditableTextPara.java @@ -54,7 +54,7 @@ public class AccessibleEditableTextPara extends TestCase { * with an object to test and related objects. * Obtains accissible object for the spreadsheet document. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -110,8 +110,7 @@ public class AccessibleEditableTextPara extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -124,7 +123,7 @@ public class AccessibleEditableTextPara extends TestCase { * implementation does nothing. Subclasses can override to initialize * objects shared among all <code>TestEnvironment</code>s. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_svx/SvxGraphCtrlAccessibleContext.java b/qadevOOo/tests/java/mod/_svx/SvxGraphCtrlAccessibleContext.java index 8f0e85dc191b..22b19edfba93 100644 --- a/qadevOOo/tests/java/mod/_svx/SvxGraphCtrlAccessibleContext.java +++ b/qadevOOo/tests/java/mod/_svx/SvxGraphCtrlAccessibleContext.java @@ -186,8 +186,7 @@ public class SvxGraphCtrlAccessibleContext extends TestCase{ /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -226,7 +225,7 @@ public class SvxGraphCtrlAccessibleContext extends TestCase{ * implementation does nothing. Subclasses can override to initialize * objects shared among all <code>TestEnvironment</code>s. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sw/SwAccessibleDocumentPageView.java b/qadevOOo/tests/java/mod/_sw/SwAccessibleDocumentPageView.java index 92a6dbf1fb77..634a67b60bd4 100644 --- a/qadevOOo/tests/java/mod/_sw/SwAccessibleDocumentPageView.java +++ b/qadevOOo/tests/java/mod/_sw/SwAccessibleDocumentPageView.java @@ -60,7 +60,7 @@ public class SwAccessibleDocumentPageView extends TestCase { * Switchs the document to Print Preview mode. * Obtains accissible object for the document page view. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -170,8 +170,7 @@ public class SwAccessibleDocumentPageView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -184,7 +183,7 @@ public class SwAccessibleDocumentPageView extends TestCase { * implementation does nothing. Subclasses can override to initialize * objects shared among all <code>TestEnvironment</code>s. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sw/SwAccessibleDocumentView.java b/qadevOOo/tests/java/mod/_sw/SwAccessibleDocumentView.java index 1114b95368e8..3d5530bb8123 100644 --- a/qadevOOo/tests/java/mod/_sw/SwAccessibleDocumentView.java +++ b/qadevOOo/tests/java/mod/_sw/SwAccessibleDocumentView.java @@ -64,7 +64,7 @@ public class SwAccessibleDocumentView extends TestCase { * <code>getTestEnvironment()</code>. Obtains accissible object for * text document. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -158,8 +158,7 @@ public class SwAccessibleDocumentView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -171,7 +170,7 @@ public class SwAccessibleDocumentView extends TestCase { * Called while the <code>TestCase</code> initialization. * Creates a text document. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sw/SwAccessibleEndnoteView.java b/qadevOOo/tests/java/mod/_sw/SwAccessibleEndnoteView.java index bf357124ba73..d3bbffec0ebc 100644 --- a/qadevOOo/tests/java/mod/_sw/SwAccessibleEndnoteView.java +++ b/qadevOOo/tests/java/mod/_sw/SwAccessibleEndnoteView.java @@ -55,10 +55,10 @@ public class SwAccessibleEndnoteView extends TestCase { * Called to create an instance of <code>TestEnvironment</code> * with an object to test and related objects. * Inserts the created endnote to the document. - * Changes zoom value to 10%(endnote must be in vissible area of the document). + * Changes zoom value to 10%(endnote must be in visible area of the document). * Obtains accessible object for the inserted endnote. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -165,8 +165,7 @@ public class SwAccessibleEndnoteView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -179,7 +178,7 @@ public class SwAccessibleEndnoteView extends TestCase { * implementation does nothing. Subclasses can override to initialize * objects shared among all <code>TestEnvironment</code>s. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sw/SwAccessibleFooterView.java b/qadevOOo/tests/java/mod/_sw/SwAccessibleFooterView.java index 997e31ce5779..d2c7c9701b1d 100644 --- a/qadevOOo/tests/java/mod/_sw/SwAccessibleFooterView.java +++ b/qadevOOo/tests/java/mod/_sw/SwAccessibleFooterView.java @@ -66,10 +66,10 @@ public class SwAccessibleFooterView extends TestCase { * with an object to test and related objects. Obtains style * <code>Standard</code> from style family <code>PageStyles</code>. * Changes values of property <code>FooterIsOn</code> by <code>true</code>. - * Changes zoom value to 10%(footer must be in vissible area of the document). + * Changes zoom value to 10%(footer must be in visible area of the document). * Obtains accessible component for the footer. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -170,8 +170,7 @@ public class SwAccessibleFooterView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -183,7 +182,7 @@ public class SwAccessibleFooterView extends TestCase { * Called while the <code>TestCase</code> initialization. * Creates a text document. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sw/SwAccessibleFootnoteView.java b/qadevOOo/tests/java/mod/_sw/SwAccessibleFootnoteView.java index 2d6205894d09..73f96371221f 100644 --- a/qadevOOo/tests/java/mod/_sw/SwAccessibleFootnoteView.java +++ b/qadevOOo/tests/java/mod/_sw/SwAccessibleFootnoteView.java @@ -55,10 +55,10 @@ public class SwAccessibleFootnoteView extends TestCase { * Called to create an instance of <code>TestEnvironment</code> * with an object to test and related objects. * Inserts the created footnote to the document. - * Changes zoom value to 10%(endnote must be in vissible area of the document). + * Changes zoom value to 10%(endnote must be in visible area of the document). * Obtains accessible object for the inserted footnote. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -165,8 +165,7 @@ public class SwAccessibleFootnoteView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -179,7 +178,7 @@ public class SwAccessibleFootnoteView extends TestCase { * implementation does nothing. Subclasses can override to initialize * objects shared among all <code>TestEnvironment</code>s. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sw/SwAccessibleHeaderView.java b/qadevOOo/tests/java/mod/_sw/SwAccessibleHeaderView.java index 051444ac71bc..00ce89b39ef7 100644 --- a/qadevOOo/tests/java/mod/_sw/SwAccessibleHeaderView.java +++ b/qadevOOo/tests/java/mod/_sw/SwAccessibleHeaderView.java @@ -67,7 +67,7 @@ public class SwAccessibleHeaderView extends TestCase { * <code>FooterIsOn</code> by <code>true</code>. Obtains accessible component * for header. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -159,8 +159,7 @@ public class SwAccessibleHeaderView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -172,7 +171,7 @@ public class SwAccessibleHeaderView extends TestCase { * Called while the <code>TestCase</code> initialization. * Creates a text document. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sw/SwAccessiblePageView.java b/qadevOOo/tests/java/mod/_sw/SwAccessiblePageView.java index 1c23ca58950c..6f611832b2ad 100644 --- a/qadevOOo/tests/java/mod/_sw/SwAccessiblePageView.java +++ b/qadevOOo/tests/java/mod/_sw/SwAccessiblePageView.java @@ -64,10 +64,10 @@ public class SwAccessiblePageView extends TestCase { /** * Called to create an instance of <code>TestEnvironment</code> * with an object to test and related objects. - * Switchs the document to Print Preview mode. - * Obtains accissible object for the page view. + * Switches the document to Print Preview mode. + * Obtains accessible object for the page view. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -244,8 +244,7 @@ public class SwAccessiblePageView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -258,7 +257,7 @@ public class SwAccessiblePageView extends TestCase { * implementation does nothing. Subclasses can override to initialize * objects shared among all <code>TestEnvironment</code>s. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sw/SwAccessibleParagraphView.java b/qadevOOo/tests/java/mod/_sw/SwAccessibleParagraphView.java index 12553b7acd79..c566ba5f494a 100644 --- a/qadevOOo/tests/java/mod/_sw/SwAccessibleParagraphView.java +++ b/qadevOOo/tests/java/mod/_sw/SwAccessibleParagraphView.java @@ -58,7 +58,7 @@ public class SwAccessibleParagraphView extends TestCase { * with an object to test and related objects. Obtains accessible object * for one of document paragraph. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -110,8 +110,7 @@ public class SwAccessibleParagraphView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -123,7 +122,7 @@ public class SwAccessibleParagraphView extends TestCase { * Called while the <code>TestCase</code> initialization. * Creates a text document. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sw/SwAccessibleTableCellView.java b/qadevOOo/tests/java/mod/_sw/SwAccessibleTableCellView.java index e98866a99850..18487954725c 100644 --- a/qadevOOo/tests/java/mod/_sw/SwAccessibleTableCellView.java +++ b/qadevOOo/tests/java/mod/_sw/SwAccessibleTableCellView.java @@ -62,7 +62,7 @@ public class SwAccessibleTableCellView extends TestCase { * Creates a text table and inserts it to document. Then obtains accessible * object for one of table cell. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -125,8 +125,7 @@ public class SwAccessibleTableCellView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup(TestParameters Param, PrintWriter log) { @@ -138,7 +137,7 @@ public class SwAccessibleTableCellView extends TestCase { * Called while the <code>TestCase</code> initialization. * Creates a text document. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sw/SwAccessibleTableView.java b/qadevOOo/tests/java/mod/_sw/SwAccessibleTableView.java index e5a50af27f94..01898e9388f8 100644 --- a/qadevOOo/tests/java/mod/_sw/SwAccessibleTableView.java +++ b/qadevOOo/tests/java/mod/_sw/SwAccessibleTableView.java @@ -64,7 +64,7 @@ public class SwAccessibleTableView extends TestCase { * Creates a text table and inserts it into the document. * Then obtains accessible object for the table. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -144,8 +144,7 @@ public class SwAccessibleTableView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -157,7 +156,7 @@ public class SwAccessibleTableView extends TestCase { * Called while the <code>TestCase</code> initialization. * Creates a text document. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sw/SwAccessibleTextEmbeddedObject.java b/qadevOOo/tests/java/mod/_sw/SwAccessibleTextEmbeddedObject.java index 3646fc370c9c..d24996435ecd 100644 --- a/qadevOOo/tests/java/mod/_sw/SwAccessibleTextEmbeddedObject.java +++ b/qadevOOo/tests/java/mod/_sw/SwAccessibleTextEmbeddedObject.java @@ -60,7 +60,7 @@ public class SwAccessibleTextEmbeddedObject extends TestCase { * with an object to test and related objects. * Obtains accessible object for the embedded object. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -123,8 +123,7 @@ public class SwAccessibleTextEmbeddedObject extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -137,7 +136,7 @@ public class SwAccessibleTextEmbeddedObject extends TestCase { * Loads the text document <code>SwXTextEmbeddedObject.sxw</code> * with a text embedded object. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sw/SwAccessibleTextFrameView.java b/qadevOOo/tests/java/mod/_sw/SwAccessibleTextFrameView.java index 21fd6e9be298..3911f6e27299 100644 --- a/qadevOOo/tests/java/mod/_sw/SwAccessibleTextFrameView.java +++ b/qadevOOo/tests/java/mod/_sw/SwAccessibleTextFrameView.java @@ -68,7 +68,7 @@ public class SwAccessibleTextFrameView extends TestCase { * Creates a frame and inserts it into document. * Obtains accessible object for the inserted text frame. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -157,8 +157,7 @@ public class SwAccessibleTextFrameView extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -170,7 +169,7 @@ public class SwAccessibleTextFrameView extends TestCase { * Called while the <code>TestCase</code> initialization. * Creates a text document. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_sw/SwAccessibleTextGraphicObject.java b/qadevOOo/tests/java/mod/_sw/SwAccessibleTextGraphicObject.java index a58a5fcf8967..b2d37e4e6a0e 100644 --- a/qadevOOo/tests/java/mod/_sw/SwAccessibleTextGraphicObject.java +++ b/qadevOOo/tests/java/mod/_sw/SwAccessibleTextGraphicObject.java @@ -66,7 +66,7 @@ public class SwAccessibleTextGraphicObject extends TestCase { * Creates a graphic object and inserts it into the document. * Obtains accessible object for graphic object. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see TestEnvironment @@ -147,8 +147,7 @@ public class SwAccessibleTextGraphicObject extends TestCase { /** * Called while disposing a <code>TestEnvironment</code>. * Disposes text document. - * @param tParam test parameters - * @param tEnv the environment to cleanup + * @param Param test parameters * @param log writer to log information while testing */ protected void cleanup( TestParameters Param, PrintWriter log) { @@ -160,7 +159,7 @@ public class SwAccessibleTextGraphicObject extends TestCase { * Called while the <code>TestCase</code> initialization. * Creates a text document. * - * @param tParam test parameters + * @param Param test parameters * @param log writer to log information while testing * * @see #initializeTestCase diff --git a/qadevOOo/tests/java/mod/_text/DefaultNumberingProvider.java b/qadevOOo/tests/java/mod/_text/DefaultNumberingProvider.java index a10d9333f55a..3b60068ceb2a 100644 --- a/qadevOOo/tests/java/mod/_text/DefaultNumberingProvider.java +++ b/qadevOOo/tests/java/mod/_text/DefaultNumberingProvider.java @@ -41,7 +41,7 @@ import com.sun.star.uno.XInterface; * <li> <code>com::sun::star::text::XDefaultNumberingProvider</code></li> * </ul> * This object test <b> is NOT </b> designed to be run in several -* threads concurently. +* threads concurrently. * @see ifc.text._DefaultNumberingProvider * @see ifc.text._XDefaultNumberingProvider */ diff --git a/qadevOOo/tests/java/mod/_toolkit/AccessibleRadioButton.java b/qadevOOo/tests/java/mod/_toolkit/AccessibleRadioButton.java index 2414a5364fbf..99e96f730939 100644 --- a/qadevOOo/tests/java/mod/_toolkit/AccessibleRadioButton.java +++ b/qadevOOo/tests/java/mod/_toolkit/AccessibleRadioButton.java @@ -84,9 +84,9 @@ import util.SOfficeFactory; * @see ifc.accessibility._XAccessibleEventBroadcaster * @see ifc.accessibility._XAccessibleContext * @see ifc.accessibility._XAccessibleComponent - * @see ifc.accessibility.XAccessibleExtendedComponent - * @see ifc.accessibility.XAccessibleValue - * @see ifc.accessibility.XAccessibleText + * @see ifc.accessibility._XAccessibleExtendedComponent + * @see ifc.accessibility._XAccessibleValue + * @see ifc.accessibility._XAccessibleText */ public class AccessibleRadioButton extends TestCase { private static XDesktop the_Desk; diff --git a/qadevOOo/tests/java/mod/_toolkit/AccessibleScrollBar.java b/qadevOOo/tests/java/mod/_toolkit/AccessibleScrollBar.java index 5b87dbcd439e..a78aa5c13591 100644 --- a/qadevOOo/tests/java/mod/_toolkit/AccessibleScrollBar.java +++ b/qadevOOo/tests/java/mod/_toolkit/AccessibleScrollBar.java @@ -73,9 +73,9 @@ import util.SOfficeFactory; * @see ifc.accessibility._XAccessibleEventBroadcaster * @see ifc.accessibility._XAccessibleContext * @see ifc.accessibility._XAccessibleComponent - * @see ifc.accessibility.XAccessibleExtendedComponent - * @see ifc.accessibility.XAccessibleValue - * @see ifc.accessibility.XAccessibleAction + * @see ifc.accessibility._XAccessibleExtendedComponent + * @see ifc.accessibility._XAccessibleValue + * @see ifc.accessibility._XAccessibleAction */ public class AccessibleScrollBar extends TestCase { private static XDesktop the_Desk; diff --git a/qadevOOo/tests/java/mod/_toolkit/AccessibleStatusBar.java b/qadevOOo/tests/java/mod/_toolkit/AccessibleStatusBar.java index 33fd015da905..02a21779b69d 100644 --- a/qadevOOo/tests/java/mod/_toolkit/AccessibleStatusBar.java +++ b/qadevOOo/tests/java/mod/_toolkit/AccessibleStatusBar.java @@ -74,9 +74,9 @@ import util.SOfficeFactory; * @see ifc.accessibility._XAccessibleEventBroadcaster * @see ifc.accessibility._XAccessibleContext * @see ifc.accessibility._XAccessibleComponent - * @see ifc.accessibility.XAccessibleExtendedComponent - * @see ifc.accessibility.XAccessibleValue - * @see ifc.accessibility.XAccessibleAction + * @see ifc.accessibility._XAccessibleExtendedComponent + * @see ifc.accessibility._XAccessibleValue + * @see ifc.accessibility._XAccessibleAction */ public class AccessibleStatusBar extends TestCase { private static XTextDocument xTextDoc; diff --git a/qadevOOo/tests/java/mod/_toolkit/AccessibleStatusBarItem.java b/qadevOOo/tests/java/mod/_toolkit/AccessibleStatusBarItem.java index 9a87c800a012..5c049c0204ed 100644 --- a/qadevOOo/tests/java/mod/_toolkit/AccessibleStatusBarItem.java +++ b/qadevOOo/tests/java/mod/_toolkit/AccessibleStatusBarItem.java @@ -73,9 +73,9 @@ import util.SOfficeFactory; * @see ifc.accessibility._XAccessibleEventBroadcaster * @see ifc.accessibility._XAccessibleContext * @see ifc.accessibility._XAccessibleComponent - * @see ifc.accessibility.XAccessibleExtendedComponent - * @see ifc.accessibility.XAccessibleValue - * @see ifc.accessibility.XAccessibleAction + * @see ifc.accessibility._XAccessibleExtendedComponent + * @see ifc.accessibility._XAccessibleValue + * @see ifc.accessibility._XAccessibleAction */ public class AccessibleStatusBarItem extends TestCase { private static XDesktop the_Desk; diff --git a/qadevOOo/tests/java/mod/_toolkit/AccessibleTabControl.java b/qadevOOo/tests/java/mod/_toolkit/AccessibleTabControl.java index 45097e33f13c..21c064c9ccf0 100644 --- a/qadevOOo/tests/java/mod/_toolkit/AccessibleTabControl.java +++ b/qadevOOo/tests/java/mod/_toolkit/AccessibleTabControl.java @@ -80,8 +80,8 @@ import util.SOfficeFactory; * @see ifc.accessibility._XAccessibleEventBroadcaster * @see ifc.accessibility._XAccessibleContext * @see ifc.accessibility._XAccessibleComponent - * @see ifc.accessibility.XAccessibleExtendedComponent - * @see ifc.accessibility.XAccessibleSelection + * @see ifc.accessibility._XAccessibleExtendedComponent + * @see ifc.accessibility._XAccessibleSelection */ public class AccessibleTabControl extends TestCase { private static XDesktop the_Desk; diff --git a/qadevOOo/tests/java/mod/_toolkit/AccessibleTabPage.java b/qadevOOo/tests/java/mod/_toolkit/AccessibleTabPage.java index e4bc898b0c87..54c85e311a50 100644 --- a/qadevOOo/tests/java/mod/_toolkit/AccessibleTabPage.java +++ b/qadevOOo/tests/java/mod/_toolkit/AccessibleTabPage.java @@ -78,7 +78,7 @@ import util.SOfficeFactory; * @see ifc.accessibility._XAccessibleEventBroadcaster * @see ifc.accessibility._XAccessibleContext * @see ifc.accessibility._XAccessibleComponent - * @see ifc.accessibility.XAccessibleExtendedComponent + * @see ifc.accessibility._XAccessibleExtendedComponent */ public class AccessibleTabPage extends TestCase { private static XDesktop the_Desk; diff --git a/qadevOOo/tests/java/mod/_toolkit/AccessibleToolBox.java b/qadevOOo/tests/java/mod/_toolkit/AccessibleToolBox.java index ba4964c72994..b8ac6443d812 100644 --- a/qadevOOo/tests/java/mod/_toolkit/AccessibleToolBox.java +++ b/qadevOOo/tests/java/mod/_toolkit/AccessibleToolBox.java @@ -65,7 +65,7 @@ import util.SOfficeFactory; * @see ifc.accessibility._XAccessibleEventBroadcaster * @see ifc.accessibility._XAccessibleContext * @see ifc.accessibility._XAccessibleComponent - * @see ifc.accessibility.XAccessibleExtendedComponent + * @see ifc.accessibility._XAccessibleExtendedComponent */ public class AccessibleToolBox extends TestCase { private static XDesktop the_Desk; diff --git a/qadevOOo/tests/java/mod/_toolkit/AccessibleToolBoxItem.java b/qadevOOo/tests/java/mod/_toolkit/AccessibleToolBoxItem.java index 4dfdb689fadf..1258d9598e7d 100644 --- a/qadevOOo/tests/java/mod/_toolkit/AccessibleToolBoxItem.java +++ b/qadevOOo/tests/java/mod/_toolkit/AccessibleToolBoxItem.java @@ -76,10 +76,10 @@ import util.SOfficeFactory; * @see ifc.accessibility._XAccessibleEventBroadcaster * @see ifc.accessibility._XAccessibleContext * @see ifc.accessibility._XAccessibleComponent - * @see ifc.accessibility.XAccessibleExtendedComponent - * @see ifc.accessibility.XAccessibleAction - * @see ifc.accessibility.XAccessibleText - * @see ifc.accessibility.XAccessibleValue + * @see ifc.accessibility._XAccessibleExtendedComponent + * @see ifc.accessibility._XAccessibleAction + * @see ifc.accessibility._XAccessibleText + * @see ifc.accessibility._XAccessibleValue */ public class AccessibleToolBoxItem extends TestCase { private static XDesktop the_Desk; diff --git a/qadevOOo/tests/java/mod/_toolkit/AccessibleWindow.java b/qadevOOo/tests/java/mod/_toolkit/AccessibleWindow.java index 552ac2d5e1b7..8e5473e444dc 100644 --- a/qadevOOo/tests/java/mod/_toolkit/AccessibleWindow.java +++ b/qadevOOo/tests/java/mod/_toolkit/AccessibleWindow.java @@ -78,10 +78,10 @@ import util.SOfficeFactory; * @see ifc.accessibility._XAccessibleEventBroadcaster * @see ifc.accessibility._XAccessibleContext * @see ifc.accessibility._XAccessibleComponent - * @see ifc.accessibility.XAccessibleExtendedComponent - * @see ifc.accessibility.XAccessibleAction - * @see ifc.accessibility.XAccessibleText - * @see ifc.accessibility.XAccessibleValue + * @see ifc.accessibility._XAccessibleExtendedComponent + * @see ifc.accessibility._XAccessibleAction + * @see ifc.accessibility._XAccessibleText + * @see ifc.accessibility._XAccessibleValue */ public class AccessibleWindow extends TestCase { private static XDesktop the_Desk; |