You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ja...@apache.org on 2013/02/03 14:24:38 UTC

svn commit: r1441909 [24/45] - in /openoffice/branches/l10n: ./ ext_libraries/apr-util/ ext_libraries/apr/ ext_libraries/hunspell/ ext_sources/ extras/l10n/source/ast/ extras/l10n/source/da/ extras/l10n/source/eu/ extras/l10n/source/gd/ extras/l10n/sou...

Modified: openoffice/branches/l10n/main/pyuno/source/module/pyuno_type.cxx
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/pyuno/source/module/pyuno_type.cxx?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/pyuno/source/module/pyuno_type.cxx (original)
+++ openoffice/branches/l10n/main/pyuno/source/module/pyuno_type.cxx Sun Feb  3 13:23:59 2013
@@ -156,8 +156,11 @@ sal_Unicode PyChar2Unicode( PyObject *ob
             USTR_ASCII( "uno.Char contains an empty unicode string" ),
             Reference< XInterface > () );
     }
-
+#if PY_VERSION_HEX >= 0x03030000
+    sal_Unicode c = (sal_Unicode)PyUnicode_ReadChar( value.get(), 0 );
+#else
     sal_Unicode c = (sal_Unicode)PyUnicode_AsUnicode( value.get() )[0];
+#endif
     return c;
 }
 
@@ -166,23 +169,23 @@ Any PyEnum2Enum( PyObject *obj ) throw (
     Any ret;
     PyRef typeName( PyObject_GetAttrString( obj,const_cast< char * >("typeName") ), SAL_NO_ACQUIRE);
     PyRef value( PyObject_GetAttrString( obj, const_cast< char * >("value") ), SAL_NO_ACQUIRE);
-    if( !PyBytes_Check( typeName.get() ) || ! PyBytes_Check( value.get() ) )
+    if( !PYSTR_CHECK( typeName.get() ) || ! PYSTR_CHECK( value.get() ) )
     {
         throw RuntimeException(
             USTR_ASCII( "attributes typeName and/or value of uno.Enum are not strings" ),
             Reference< XInterface > () );
     }
     
-    OUString strTypeName( OUString::createFromAscii( PyBytes_AsString( typeName.get() ) ) );
-    char *stringValue = PyBytes_AsString( value.get() );
-
+    OUString strTypeName( pyString2ustring( typeName.get() ) );
+    OUString strValue( pyString2ustring( value.get() ) );
+    
     TypeDescription desc( strTypeName );
     if( desc.is() )
     {
         if(desc.get()->eTypeClass != typelib_TypeClass_ENUM )
         {
             OUStringBuffer buf;
-            buf.appendAscii( "pyuno.checkEnum: " ).append(strTypeName).appendAscii( "is a " );
+            buf.appendAscii( "pyuno.checkEnum: " ).append( strTypeName ).appendAscii( " is a " );
             buf.appendAscii(
                 typeClassToString( (com::sun::star::uno::TypeClass) desc.get()->eTypeClass));
             buf.appendAscii( ", expected ENUM" );
@@ -195,7 +198,7 @@ Any PyEnum2Enum( PyObject *obj ) throw (
         int i = 0;
         for( i = 0; i < pEnumDesc->nEnumValues ; i ++ )
         {
-            if( (*((OUString *)&pEnumDesc->ppEnumNames[i])).compareToAscii( stringValue ) == 0 )
+            if( (*((OUString *)&pEnumDesc->ppEnumNames[i])).compareTo( strValue ) == 0 )
             {
                 break;
             }
@@ -203,8 +206,8 @@ Any PyEnum2Enum( PyObject *obj ) throw (
         if( i == pEnumDesc->nEnumValues )
         {
             OUStringBuffer buf;
-            buf.appendAscii( "value " ).appendAscii( stringValue ).appendAscii( "is unknown in enum " );
-            buf.appendAscii( PyBytes_AsString( typeName.get() ) );
+            buf.appendAscii( "value " ).append( strValue ).appendAscii( " is unknown in enum " );
+            buf.append( strTypeName );
             throw RuntimeException( buf.makeStringAndClear(), Reference<XInterface> () );
         }
         ret = Any( &pEnumDesc->pEnumValues[i], desc.get()->pWeakRef );
@@ -212,7 +215,7 @@ Any PyEnum2Enum( PyObject *obj ) throw (
     else
     {
         OUStringBuffer buf;
-        buf.appendAscii( "enum " ).appendAscii( PyBytes_AsString(typeName.get()) ).appendAscii( " is unknown" );
+        buf.appendAscii( "enum " ).append( strTypeName ).appendAscii( " is unknown" );
         throw RuntimeException( buf.makeStringAndClear(), Reference< XInterface>  () );
     }
     return ret;
@@ -222,7 +225,7 @@ Any PyEnum2Enum( PyObject *obj ) throw (
 Type PyType2Type( PyObject * o ) throw(RuntimeException )
 {
     PyRef pyName( PyObject_GetAttrString( o, const_cast< char * >("typeName") ), SAL_NO_ACQUIRE);
-    if( !PyBytes_Check( pyName.get() ) )
+    if( !PYSTR_CHECK( pyName.get() ) )
     {
         throw RuntimeException(
             USTR_ASCII( "type object does not have typeName property" ),
@@ -232,7 +235,7 @@ Type PyType2Type( PyObject * o ) throw(R
     PyRef pyTC( PyObject_GetAttrString( o, const_cast< char * >("typeClass") ), SAL_NO_ACQUIRE );
     Any enumValue = PyEnum2Enum( pyTC.get() );
 
-    OUString name( OUString::createFromAscii( PyBytes_AsString( pyName.get() ) ) );
+    OUString name( pyString2ustring( pyName.get() ) );
     TypeDescription desc( name );
     if( ! desc.is() )
     {
@@ -276,10 +279,22 @@ PyObject *importToGlobal(PyObject *str, 
                 Py_INCREF( typesModule.get() );
                 PyDict_SetItemString( dict, "unotypes" , typesModule.get() );
             }
+#if PY_VERSION_HEX >= 0x03030000
+            const char *targetName = PyUnicode_AsUTF8( target );
+            const char *typeName = PyUnicode_AsUTF8( str );
+#elif PY_MAJOR_VERSION > 3
+            PyRef pUtf8( PyUnicode_AsUTF8String( target ), SAL_NO_ACQUIRE );
+            const char *targetName = PyBytes_AsString( pUtf8.get() );
+            PyRef pTypeName( PyUnicode_AsUTF8String( str ), SAL_NO_ACQUIRE );
+            const char *typeName = PyBytes_AsString( pTypeName.get() );
+#else
+            /*const*/ char *targetName = PyBytes_AsString( target );
+            const char *typeName = PyBytes_AsString( str );
+#endif
             PyModule_AddObject(
                 typesModule.get(),
-                PyBytes_AsString( target ),
-                PyUNO_Type_new( PyBytes_AsString(str),tc,runtime ) );
+                targetName,
+                PyUNO_Type_new( typeName, tc, runtime ) );
 
             if( com::sun::star::uno::TypeClass_EXCEPTION == tc ||
                 com::sun::star::uno::TypeClass_STRUCT    == tc )
@@ -296,9 +311,17 @@ PyObject *importToGlobal(PyObject *str, 
                 {
                     OString enumElementName(
                         OUStringToOString( pDesc->ppEnumNames[i], RTL_TEXTENCODING_ASCII_US) );
+#if PY_VERSION_HEX >= 0x03030000
+                    const char *name = PyUnicode_AsUTF8(str);
+#elif PY_MAJOR_VERSION > 3
+                    PyRef *pUtf8( PyUnicode_AsUTF8String( str ), SAL_NO_ACQUIRE );
+                    const char *name = PyBytes_AsString( pUtf8.get() );
+#else
+                    const char *name = PyBytes_AsString(str);
+#endif
                     PyDict_SetItemString(
                         dict, (char*)enumElementName.getStr(),
-                        PyUNO_Enum_new(PyBytes_AsString(str) , enumElementName.getStr(), runtime ) );
+                        PyUNO_Enum_new(name, enumElementName.getStr(), runtime ) );
                 }
             }
             Py_INCREF( Py_None );
@@ -318,9 +341,11 @@ PyObject *importToGlobal(PyObject *str, 
                 }
                 else
                 {
-                    OStringBuffer buf;
-                    buf.append( "constant " ).append(PyBytes_AsString(str)).append(  " unknown" );
-                    PyErr_SetString( PyExc_RuntimeError, buf.getStr() );
+                    OUStringBuffer buf;
+                    buf.appendAscii( "constant " ).append(pyString2ustring(str)).appendAscii(  " unknown" );
+                    PyErr_SetString( 
+                        PyExc_RuntimeError, 
+                        OUStringToOString( buf.makeStringAndClear(), RTL_TEXTENCODING_UTF8).getStr() );
                 }
             }
             else
@@ -379,8 +404,8 @@ static PyObject* callCtor( const Runtime
 PyObject *PyUNO_Enum_new( const char *enumBase, const char *enumValue, const Runtime &r )
 {
     PyRef args( PyTuple_New( 2 ), SAL_NO_ACQUIRE );
-    PyTuple_SetItem( args.get() , 0 , PyBytes_FromString( enumBase ) );
-    PyTuple_SetItem( args.get() , 1 , PyBytes_FromString( enumValue ) );
+    PyTuple_SetItem( args.get() , 0 , PYSTR_FROMSTR( enumBase ) );
+    PyTuple_SetItem( args.get() , 1 , PYSTR_FROMSTR( enumValue ) );
 
     return callCtor( r, "Enum" , args );
 }
@@ -391,7 +416,7 @@ PyObject* PyUNO_Type_new (const char *ty
     // retrieve type object
     PyRef args( PyTuple_New( 2 ), SAL_NO_ACQUIRE );
 
-    PyTuple_SetItem( args.get() , 0 , PyBytes_FromString( typeName ) );
+    PyTuple_SetItem( args.get() , 0 , PYSTR_FROMSTR( typeName ) );
     PyObject *typeClass = PyUNO_Enum_new( "com.sun.star.uno.TypeClass" , typeClassToString(t), r );
     if( ! typeClass )
         return NULL;
@@ -405,10 +430,16 @@ PyObject* PyUNO_char_new ( sal_Unicode v
     // retrieve type object
     PyRef args( PyTuple_New( 1 ), SAL_NO_ACQUIRE );
 
+#if PY_VERSION_HEX >= 0x03030000
+    Py_UCS2 u[1];
+    u[0] = val;
+    PyTuple_SetItem( args.get(), 0, PyUnicode_FromKindAndData( PyUnicode_2BYTE_KIND, u, 1 ) );
+#else
     Py_UNICODE u[2];
     u[0] = val;
     u[1] = 0;
     PyTuple_SetItem( args.get() , 0 , PyUnicode_FromUnicode( u ,1) );
+#endif
 
     return callCtor( r, "Char" , args );
 }

Modified: openoffice/branches/l10n/main/pyuno/source/module/pyuno_util.cxx
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/pyuno/source/module/pyuno_util.cxx?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/pyuno/source/module/pyuno_util.cxx (original)
+++ openoffice/branches/l10n/main/pyuno/source/module/pyuno_util.cxx Sun Feb  3 13:23:59 2013
@@ -61,6 +61,7 @@ namespace pyuno
 PyRef ustring2PyUnicode( const OUString & str )
 {
     PyRef ret;
+
 #if Py_UNICODE_SIZE == 2
     // YD force conversion since python/2 uses wchar_t
     ret = PyRef( PyUnicode_FromUnicode( (const Py_UNICODE*)str.getStr(), str.getLength() ), SAL_NO_ACQUIRE );
@@ -85,10 +86,16 @@ OUString pyString2ustring( PyObject *pys
 #if Py_UNICODE_SIZE == 2
 	ret = OUString( (sal_Unicode * ) PyUnicode_AS_UNICODE( pystr ) );
 #else
+#if PY_VERSION_HEX >= 0x03030000
+    Py_ssize_t size;
+    char *pUtf8 = PyUnicode_AsUTF8AndSize(pystr, &size);
+    ret = OUString(pUtf8, size, RTL_TEXTENCODING_UTF8);
+#else
 	PyObject* pUtf8 = PyUnicode_AsUTF8String(pystr);
 	ret = OUString(PyBytes_AsString(pUtf8), PyBytes_Size(pUtf8), RTL_TEXTENCODING_UTF8);
 	Py_DECREF(pUtf8);
 #endif
+#endif
     }
     else
     {

Modified: openoffice/branches/l10n/main/pyuno/source/module/uno.py
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/pyuno/source/module/uno.py?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/pyuno/source/module/uno.py (original)
+++ openoffice/branches/l10n/main/pyuno/source/module/uno.py Sun Feb  3 13:23:59 2013
@@ -21,13 +21,24 @@
 import sys
 
 import pyuno
-import __builtin__
+try:
+    import __builtin__ as builtins
+except:
+    import builtins
+
+try:
+    unicode
+    bytes = str
+    bytearray = str
+except NameError:
+    unicode = str
+
 import socket # since on Windows sal3.dll no longer calls WSAStartup
 
 # all functions and variables starting with a underscore (_) must be considered private
 # and can be changed at any time. Don't use them
 _g_ctx = pyuno.getComponentContext( )
-_g_delegatee = __builtin__.__dict__["__import__"]
+_g_delegatee = builtins.__dict__["__import__"]
 
 def getComponentContext():
     """ returns the UNO component context, that was used to initialize the python runtime.
@@ -171,23 +182,9 @@ class Char:
             return self.value == that.value
         return False
 
-# Suggested by Christian, but still some open problems which need to be solved first
-#
-#class ByteSequence(str):
-#
-#    def __repr__(self):
-#        return "<ByteSequence instance %s>" % str.__repr__(self)
-
-    # for a little bit compatibility; setting value is not possible as
-    # strings are immutable
-#    def _get_value(self):
-#        return self
-#
-#    value = property(_get_value)
-
 class ByteSequence:
     def __init__(self, value):
-        if isinstance(value, str):
+        if isinstance(value, (bytes, bytearray)):
             self.value = value
         elif isinstance(value, ByteSequence):
             self.value = value.value
@@ -200,7 +197,7 @@ class ByteSequence:
     def __eq__(self, that):
         if isinstance( that, ByteSequence):
             return self.value == that.value
-        if isinstance(that, str):
+        elif isinstance(that, (bytes, bytearray)):
             return self.value == that
         return False
 
@@ -214,7 +211,7 @@ class ByteSequence:
         return self.value.__iter__()
 
     def __add__( self , b ):
-        if isinstance( b, str ):
+        if isinstance( b, (bytes, bytearray) ):
             return ByteSequence( self.value + b )
         elif isinstance( b, ByteSequence ):
             return ByteSequence( self.value + b.value )
@@ -259,7 +256,7 @@ def _uno_import( name, *optargs, **kwarg
         else:
             mod = pyuno.__class__(x)  # How to create a module ??
         d = mod.__dict__
-
+    
     RuntimeException = pyuno.getClass( "com.sun.star.uno.RuntimeException" )
     for x in fromlist:
         if x not in d:
@@ -286,16 +283,7 @@ def _uno_import( name, *optargs, **kwarg
     return mod
 
 # hook into the __import__ chain
-__builtin__.__dict__["__import__"] = _uno_import
-
-# private function, don't use
-def _impl_extractName(name):
-    r = list(range(len(name)-1,0,-1))
-    for i in r:
-        if name[i] == ".":
-            name = name[i+1:len(name)]
-            break
-    return name
+builtins.__dict__["__import__"] = _uno_import
 
 # private, referenced from the pyuno shared library
 def _uno_struct__init__(self,*args):
@@ -306,11 +294,11 @@ def _uno_struct__init__(self,*args):
 
 # private, referenced from the pyuno shared library
 def _uno_struct__getattr__(self,name):
-    return __builtin__.getattr(self.__dict__["value"],name)
+    return getattr(self.__dict__["value"],name)
 
 # private, referenced from the pyuno shared library
 def _uno_struct__setattr__(self,name,value):
-    return __builtin__.setattr(self.__dict__["value"],name,value)
+    return setattr(self.__dict__["value"],name,value)
 
 # private, referenced from the pyuno shared library
 def _uno_struct__repr__(self):
@@ -325,6 +313,10 @@ def _uno_struct__eq__(self,cmp):
         return self.__dict__["value"] == cmp.__dict__["value"]
     return False
 
+def _uno_struct__dir__(self):
+    return dir(self.__dict__["value"]) + list(self.__dict__.keys()) + \
+                list(self.__class__.__dict__.keys())
+
 # referenced from pyuno shared lib and pythonscript.py
 def _uno_extract_printable_stacktrace( trace ):
     mod = None

Modified: openoffice/branches/l10n/main/qadevOOo/build.xml
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/build.xml?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/build.xml (original)
+++ openoffice/branches/l10n/main/qadevOOo/build.xml Sun Feb  3 13:23:59 2013
@@ -39,7 +39,8 @@
 
   <!-- target for building the runner -->
   <target name="qadevOOo_runner_build">
-    <javac srcdir="${qadevOOo.runner}" destdir="${qadevOOo.class}" includes="**/*.java" debug="${debug}" source="${build.source}">
+    <javac srcdir="${qadevOOo.runner}" destdir="${qadevOOo.class}" includes="**/*.java"
+         debug="${debug}" source="${build.source}" includeantruntime="false">
 		<classpath>
 		    <pathelement location="${qadevOOo.class}"/>
 			<fileset dir="${qadevOOo.office_jars}">
@@ -55,7 +56,8 @@
   
   <!-- target for building the tests -->
   <target name="qadevOOo_tests_build" depends="qadevOOo_runner_build">
-    <javac srcdir="${qadevOOo.tests}" destdir="${qadevOOo.class}" includes="**/*.java" debug="${debug}" source="${build.source}">
+    <javac srcdir="${qadevOOo.tests}" destdir="${qadevOOo.class}" includes="**/*.java"
+        debug="${debug}" source="${build.source}" includeantruntime="false">
 		<classpath>
 		    <pathelement location="${qadevOOo.class}"/>
 			<fileset dir="${qadevOOo.office_jars}">

Modified: openoffice/branches/l10n/main/qadevOOo/runner/convwatch/GraphicalDifferenceCheck.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/runner/convwatch/GraphicalDifferenceCheck.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/runner/convwatch/GraphicalDifferenceCheck.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/runner/convwatch/GraphicalDifferenceCheck.java Sun Feb  3 13:23:59 2013
@@ -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
         {

Modified: openoffice/branches/l10n/main/qadevOOo/runner/convwatch/ReportDesignerTest.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/runner/convwatch/ReportDesignerTest.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/runner/convwatch/ReportDesignerTest.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/runner/convwatch/ReportDesignerTest.java Sun Feb  3 13:23:59 2013
@@ -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)

Modified: openoffice/branches/l10n/main/qadevOOo/runner/graphical/JPEGComparator.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/runner/graphical/JPEGComparator.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/runner/graphical/JPEGComparator.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/runner/graphical/JPEGComparator.java Sun Feb  3 13:23:59 2013
@@ -398,7 +398,6 @@ public class JPEGComparator extends Enha
      * @param _sDocumentName
      * @param _sResult
      * @param _aParams
-     * @return 0=no difference !=0 both files differ
      */
     private void compareJPEG(String _sDocumentName, String _sResult, ParameterHelper _aParams)
     {

Modified: openoffice/branches/l10n/main/qadevOOo/runner/helper/ConfigurationRead.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/runner/helper/ConfigurationRead.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/runner/helper/ConfigurationRead.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/runner/helper/ConfigurationRead.java Sun Feb  3 13:23:59 2013
@@ -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 {

Modified: openoffice/branches/l10n/main/qadevOOo/runner/helper/ObjectInspectorModelImpl.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/runner/helper/ObjectInspectorModelImpl.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/runner/helper/ObjectInspectorModelImpl.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/runner/helper/ObjectInspectorModelImpl.java Sun Feb  3 13:23:59 2013
@@ -99,14 +99,14 @@ public class ObjectInspectorModelImpl im
     */
     public int getMinHelpTextLines() {
         return 3;
-    };
+    }
 
     /** returns maximum number of lines in the help text section.
         @return 8
     */
     public int getMaxHelpTextLines() {
         return 8;
-    };
+    }
 
     /** returns whether or not the inspector's UI should be read-only
     */

Modified: openoffice/branches/l10n/main/qadevOOo/runner/helper/PropertyHandlerImpl.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/runner/helper/PropertyHandlerImpl.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/runner/helper/PropertyHandlerImpl.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/runner/helper/PropertyHandlerImpl.java Sun Feb  3 13:23:59 2013
@@ -39,7 +39,7 @@ public class PropertyHandlerImpl impleme
     }
     
     /**
-     * This method currently do nothig
+     * This method currently does nothing
      * @param ActuatingPropertyName the id of the actuating property.
      * @param NewValue the new value of the property
      * @param OldValue the old value of the property
@@ -60,14 +60,14 @@ public class PropertyHandlerImpl impleme
     }
     
     /**
-     * This method currently do nothig
+     * This method currently does nothing
      * @param xEventListener the listener to notify about changes
      */
     public void addEventListener(com.sun.star.lang.XEventListener xEventListener) {
     }
     
     /**
-     * This method currently do nothig
+     * This method currently does nothing
      * @param xPropertyChangeListener the listener to notify about property changes
      * @throws com.sun.star.lang.NullPointerException com::sun::star::lang::NullPointerException if the listener is NULL
      */
@@ -75,7 +75,7 @@ public class PropertyHandlerImpl impleme
     }
     
     /**
-     * This method currently do nothig
+     * This method currently does nothing
      * @param PropertyName The name of the property whose value is to be converted.
      * @param PropertyValue The to-be-converted property value.
      * @param ControlValueType The target type of the conversion. This type is determined by the control which is used to display the property, which in turn is determined by the handler itself in describePropertyLine .
@@ -93,7 +93,7 @@ public class PropertyHandlerImpl impleme
     }
     
     /**
-     * This method currently do nothig
+     * This method currently does nothing
      * @param PropertyName The name of the conversion's target property.
      * @param ControlValue The to-be-converted control value. This value has been obtained from an XPropertyControl , using its Value attribute.
      * @throws com.sun.star.beans.UnknownPropertyException ::com::sun::star::beans::UnknownPropertyException if the given property is not supported by the property handler
@@ -104,9 +104,8 @@ public class PropertyHandlerImpl impleme
     }
     
     /**
-     * This method currently do nothig
+     * This method currently does nothing
      * @param PropertyName the name of the property whose user interface is to be described
-     * @param  out_Descriptor the descriptor of the property line, to be filled by the XPropertyHandler implementation
      * @param ControlFactory a factory for creating XPropertyControl instances. Must not be NULL .
      * @throws com.sun.star.beans.UnknownPropertyException ::com::sun::star::beans::UnknownPropertyException if the given property is not supported by this handler
      *
@@ -121,13 +120,13 @@ public class PropertyHandlerImpl impleme
     }
     
     /**
-     * This method currently do nothig
+     * This method currently does nothing
      */
     public void dispose() {
     }
     
     /**
-     * This method currently do nothig
+     * This method currently does nothing
      * @return null
      */
     public String[] getActuatingProperties() {
@@ -135,7 +134,7 @@ public class PropertyHandlerImpl impleme
     }
     
     /**
-     * This method currently do nothig
+     * This method currently does nothing
      * @param PropertyName the name of the property whose state is to be retrieved
      * @throws com.sun.star.beans.UnknownPropertyException ::com::sun::star::beans::UnknownPropertyException if the given property is not supported by the property handler
      * @return null
@@ -146,7 +145,7 @@ public class PropertyHandlerImpl impleme
     }
     
     /**
-     * This method currently do nothig
+     * This method currently does nothing
      * @param PropertyName the name of the property whose value is to be retrieved
      * @throws com.sun.star.beans.UnknownPropertyException ::com::sun::star::beans::UnknownPropertyException if the given property is not supported by the property handler
      * @return null
@@ -156,7 +155,7 @@ public class PropertyHandlerImpl impleme
     }
     
     /**
-     * This method currently do nothig
+     * This method currently does nothing
      * @return null
      */
     public String[] getSupersededProperties() {
@@ -164,7 +163,7 @@ public class PropertyHandlerImpl impleme
     }
     
     /**
-     * This method currently do nothig
+     * This method currently does nothing
      * @return null
      */
     public com.sun.star.beans.Property[] getSupportedProperties() {
@@ -172,7 +171,7 @@ public class PropertyHandlerImpl impleme
     }
     
     /**
-     * This method currently do nothig
+     * This method currently does nothing
      * @param Component the component to inspect. Must not be NULL
      * @throws com.sun.star.lang.NullPointerException com::sun::star::lang::NullPointerException if the component is NULL
      */
@@ -180,7 +179,7 @@ public class PropertyHandlerImpl impleme
     }
     
     /**
-     * This method currently do nothig
+     * This method currently does nothing
      * @param PropertyName the name of the property whose composability is to be determined
      * @throws com.sun.star.beans.UnknownPropertyException ::com::sun::star::beans::UnknownPropertyException if the given property is not supported by the property handler
      *
@@ -192,7 +191,7 @@ public class PropertyHandlerImpl impleme
     }
     
     /**
-     * This method currently do nothig
+     * This method currently does nothing
      * @param PropertyName The name of the property whose browse button has been clicked
      * @param Primary true if and only if the primary button has been clicked, false otherwise
      * @param out_Data If the method returns InteractiveSelectionResult::ObtainedValue , then _rData contains the value which has been interactively obtained from the user, and which still needs to be set at the inspected component.
@@ -213,21 +212,21 @@ public class PropertyHandlerImpl impleme
     }
     
     /**
-     * This method currently do nothig
+     * This method currently does nothing
      * @param xEventListener the listener to be revoked
      */
     public void removeEventListener(com.sun.star.lang.XEventListener xEventListener) {
     }
     
     /**
-     * This method currently do nothig
+     * This method currently does nothing
      * @param xPropertyChangeListener the listener to be revoke
      */
     public void removePropertyChangeListener(com.sun.star.beans.XPropertyChangeListener xPropertyChangeListener) {
     }
     
     /**
-     * This method currently do nothig
+     * This method currently does nothing
      * @param PropertyName the name of the property whose value is to be set
      * @param Value the property value to set
      * @throws com.sun.star.beans.UnknownPropertyException ::com::sun::star::beans::UnknownPropertyException if the given property is not supported by the property handler
@@ -236,7 +235,7 @@ public class PropertyHandlerImpl impleme
     }
     
     /**
-     * This method currently do nothig
+     * This method currently does nothing
      * @param Suspend Whether the handler is to be suspended true or reactivated ( false ). The latter happens if a handler was successfully suspended, but an external instance vetoed the whole suspension process.
      * @return false
      */
@@ -245,7 +244,7 @@ public class PropertyHandlerImpl impleme
     }
 
     /**
-     * This method currently do nothig
+     * This method currently does nothing
      */
 
     public void describePropertyLine(String string, LineDescriptor[] lineDescriptor, XPropertyControlFactory xPropertyControlFactory) throws UnknownPropertyException, com.sun.star.lang.NullPointerException {

Modified: openoffice/branches/l10n/main/qadevOOo/runner/helper/PropertyHelper.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/runner/helper/PropertyHelper.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/runner/helper/PropertyHelper.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/runner/helper/PropertyHelper.java Sun Feb  3 13:23:59 2013
@@ -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)

Modified: openoffice/branches/l10n/main/qadevOOo/runner/helper/URLHelper.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/runner/helper/URLHelper.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/runner/helper/URLHelper.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/runner/helper/URLHelper.java Sun Feb  3 13:23:59 2013
@@ -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]

Modified: openoffice/branches/l10n/main/qadevOOo/runner/lib/MultiPropertyTest.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/runner/lib/MultiPropertyTest.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/runner/lib/MultiPropertyTest.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/runner/lib/MultiPropertyTest.java Sun Feb  3 13:23:59 2013
@@ -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)
@@ -105,7 +105,7 @@ public class MultiPropertyTest extends M
      * calls testProperty method for the method. Otherwise calls
      * super.invokeTestMethod().
      *
-     * @see #MultiMethodTest.invokeTestMethod()
+     * @see MultiMethodTest#invokeTestMethod
      */
     protected void invokeTestMethod(Method meth, String methName)
     {
@@ -258,11 +258,11 @@ public class MultiPropertyTest extends M
         /**
          * 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 M
          * 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)
         {
@@ -560,7 +560,7 @@ public class MultiPropertyTest extends M
      * Tests the property using <code>PropertyValueSwitcher</code>
      * tester and two values for this property.
      *
-     * @see #PropertyValueSwitcher
+     * @see PropertyValueSwitcher
      */
     protected void testProperty(String propName, Object val1, Object val2)
     {

Modified: openoffice/branches/l10n/main/qadevOOo/runner/lib/Status.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/runner/lib/Status.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/runner/lib/Status.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/runner/lib/Status.java Sun Feb  3 13:23:59 2013
@@ -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);
@@ -52,7 +52,7 @@ public class Status extends SimpleStatus
     
     /**
      * Construct a status: use own message and state.
-     * @parame messaeg An own message for the status.
+     * @parame message An own message for the status.
      * @param state: OK or FAILED.
      */
     public Status(String message, boolean state) {
@@ -116,7 +116,7 @@ public class Status extends SimpleStatus
      * "FAILED.The getLabel works wrong", "PASSED.OK".
      */
     public String toString() {
-        String str = getRunStateString() + "." + getStateString();;
+        String str = getRunStateString() + "." + getStateString();
 
         return str;
     }

Modified: openoffice/branches/l10n/main/qadevOOo/runner/lib/TestCase.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/runner/lib/TestCase.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/runner/lib/TestCase.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/runner/lib/TestCase.java Sun Feb  3 13:23:59 2013
@@ -83,7 +83,7 @@ public abstract class TestCase {
      * @param tParam test parameters
      * @param log writer to log information while testing
      *
-     * @see #initializeTestCase()
+     * @see #initializeTestCase
      */
     protected void initialize( TestParameters tParam, PrintWriter log ) {
     }
@@ -119,7 +119,7 @@ public abstract class TestCase {
      *
      * @return the created <code>TestEnvironment</code>
      *
-     * @see #createTestEnvironment()
+     * @see #createTestEnvironment
      * @see lib.TestEnvironment
      */
     public synchronized TestEnvironment getTestEnvironment( TestParameters tParam ) {
@@ -162,7 +162,7 @@ public abstract class TestCase {
      * @param log writer to log information while testing
      *
      * @see TestEnvironment
-     * @see #getTestEnvironment()
+     * @see #getTestEnvironment
      */
     protected abstract TestEnvironment createTestEnvironment(
             TestParameters tParam, PrintWriter log );

Modified: openoffice/branches/l10n/main/qadevOOo/runner/lib/TestResult.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/runner/lib/TestResult.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/runner/lib/TestResult.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/runner/lib/TestResult.java Sun Feb  3 13:23:59 2013
@@ -59,7 +59,7 @@ public class TestResult {
      * The method makes the method tested with the status, i.e. it adds the
      * status to its state and makes it completed.
      *
-     * @param method reffers to the method whoch was tested
+     * @param method refers to the method which was tested
      * @param status describes the result of testing the method
      * @return <tt>true</tt> if status is OK, <tt>false</tt> otherwise.
      *
@@ -99,4 +99,4 @@ public class TestResult {
         return (Status)testedMethods.get( method );
     }
     
-}    
\ No newline at end of file
+}    

Modified: openoffice/branches/l10n/main/qadevOOo/runner/stats/OutProducerFactory.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/runner/stats/OutProducerFactory.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/runner/stats/OutProducerFactory.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/runner/stats/OutProducerFactory.java Sun Feb  3 13:23:59 2013
@@ -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) {

Modified: openoffice/branches/l10n/main/qadevOOo/runner/util/DBTools.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/runner/util/DBTools.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/runner/util/DBTools.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/runner/util/DBTools.java Sun Feb  3 13:23:59 2013
@@ -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 {

Modified: openoffice/branches/l10n/main/qadevOOo/runner/util/PropertyName.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/runner/util/PropertyName.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/runner/util/PropertyName.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/runner/util/PropertyName.java Sun Feb  3 13:23:59 2013
@@ -133,8 +133,8 @@ public interface PropertyName {
     final public static String CYGWIN = "Cygwin";
     /**
      * parameter name: "NoCwsAttach"<p>
-     * If this paraeter is set to "true" , a status of CWS-UnoAPI-Tests was not attached to EIS<p>
-     * @see tests.complex.unoapi.CheckModuleAPI
+     * If this parameter is set to "true" , a status of CWS-UnoAPI-Tests was not attached to EIS<p>
+     * @see complex.unoapi.CheckModuleAPI
      */
     final public static String NO_CWS_ATTACH = "NoCwsAttach";
     /**

Modified: openoffice/branches/l10n/main/qadevOOo/runner/util/SOfficeFactory.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/runner/util/SOfficeFactory.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/runner/util/SOfficeFactory.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/runner/util/SOfficeFactory.java Sun Feb  3 13:23:59 2013
@@ -414,7 +414,6 @@ public class SOfficeFactory {
         int i;
         for (i = 0; oNameAccess.hasByName(prefix + i); i++) {
         }
-        ;
         return prefix + i;
     }
 
@@ -622,4 +621,4 @@ public class SOfficeFactory {
         }
         return null;
     } // finish queryXServiceInfo
-}
\ No newline at end of file
+}

Modified: openoffice/branches/l10n/main/qadevOOo/runner/util/WaitUnreachable.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/runner/util/WaitUnreachable.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/runner/util/WaitUnreachable.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/runner/util/WaitUnreachable.java Sun Feb  3 13:23:59 2013
@@ -113,7 +113,7 @@ public final class WaitUnreachable {
             }
 
             private final WaitUnreachable unreachable;
-        };
+        }
         new WaitThread(obj).start();
     }
 

Modified: openoffice/branches/l10n/main/qadevOOo/runner/util/XMLTools.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/runner/util/XMLTools.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/runner/util/XMLTools.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/runner/util/XMLTools.java Sun Feb  3 13:23:59 2013
@@ -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
+}

Modified: openoffice/branches/l10n/main/qadevOOo/runner/util/utils.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/runner/util/utils.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/runner/util/utils.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/runner/util/utils.java Sun Feb  3 13:23:59 2013
@@ -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
      */

Modified: openoffice/branches/l10n/main/qadevOOo/testdocs/qadevlibs/source/com/sun/star/cmp/MyPersistObject.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/testdocs/qadevlibs/source/com/sun/star/cmp/MyPersistObject.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/testdocs/qadevlibs/source/com/sun/star/cmp/MyPersistObject.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/testdocs/qadevlibs/source/com/sun/star/cmp/MyPersistObject.java Sun Feb  3 13:23:59 2013
@@ -172,7 +172,7 @@ public class MyPersistObject implements 
 
 
     /**
-     * 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
      */

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/accessibility/_XAccessibleComponent.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/accessibility/_XAccessibleComponent.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/accessibility/_XAccessibleComponent.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/accessibility/_XAccessibleComponent.java Sun Feb  3 13:23:59 2013
@@ -85,8 +85,6 @@ public class _XAccessibleComponent exten
             curX++;
         }
 
-        ;
-
         //if ((bounds.X <= curX) && (curX < bounds.Width+bounds.X)) {
         if (curX < bounds.Width) {
             log.println("Upper bound of box containsPoint point (" + curX + 
@@ -107,8 +105,6 @@ public class _XAccessibleComponent exten
             curX++;
         }
 
-        ;
-
         //if ((bounds.X <= curX) && (curX < bounds.Width+bounds.X)) {
         if (curX < bounds.Width) {
             log.println("Lower bound of box containsPoint point (" + curX + 
@@ -127,8 +123,6 @@ public class _XAccessibleComponent exten
             curY++;
         }
 
-        ;
-
         //if ((bounds.Y <= curY) && (curY < bounds.Height+bounds.Y)) {
         if (curY < bounds.Height) {
             log.println("Left bound of box containsPoint point (0," + curY + 
@@ -148,8 +142,6 @@ public class _XAccessibleComponent exten
             curY++;
         }
 
-        ;
-
         //if ((bounds.Y <= curY) && (curY < bounds.Height + bounds.Y)) {
         if (curY < bounds.Height) {
             log.println("Right bound of box containsPoint point (" + 
@@ -273,8 +265,6 @@ public class _XAccessibleComponent exten
                     curY--;
                 }
 
-                ;
-
                 if ((curX == chBnd.Width) && isShowing) {
                     log.println("Couldn't find a point with containsPoint");
 
@@ -644,4 +634,4 @@ public class _XAccessibleComponent exten
         } 
         return Covered;
     }
-}
\ No newline at end of file
+}

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/accessibility/_XAccessibleSelection.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/accessibility/_XAccessibleSelection.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/accessibility/_XAccessibleSelection.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/accessibility/_XAccessibleSelection.java Sun Feb  3 13:23:59 2013
@@ -74,7 +74,7 @@ public class _XAccessibleSelection exten
      * 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 exten
         } catch (InterruptedException ex) {
         }
     }
-}
\ No newline at end of file
+}

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/awt/_XMessageBoxFactory.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/awt/_XMessageBoxFactory.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/awt/_XMessageBoxFactory.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/awt/_XMessageBoxFactory.java Sun Feb  3 13:23:59 2013
@@ -52,7 +52,7 @@ public class _XMessageBoxFactory extends
     public void _createMessageBox() {
         final XMessageBox mb = oObj.createMessageBox(
             (XWindowPeer) tEnv.getObjRelation("WINPEER"),
-            new Rectangle(0, 0, 100, 100), "errorbox", 1, "The Title",
+            com.sun.star.awt.MessageBoxType.ERRORBOX, 1, "The Title",
             "The Message");
         final UITools tools = new UITools(
             (XMultiServiceFactory) tParam.getMSF(),

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/beans/_XMultiPropertySet.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/beans/_XMultiPropertySet.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/beans/_XMultiPropertySet.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/beans/_XMultiPropertySet.java Sun Feb  3 13:23:59 2013
@@ -101,7 +101,7 @@ public class _XMultiPropertySet extends 
              propertiesChanged = true;
          }
          public void disposing (EventObject obj) {}
-    };
+    }
 
     private XPropertiesChangeListener PClistener =
         new MyChangeListener();

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/beans/_XPropertySet.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/beans/_XPropertySet.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/beans/_XPropertySet.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/beans/_XPropertySet.java Sun Feb  3 13:23:59 2013
@@ -72,7 +72,7 @@ public class _XPropertySet extends Multi
             propertyChanged = true;
          }
          public void disposing (EventObject obj) {}
-    };
+    }
 
     private final XPropertyChangeListener PClistener = new MyChangeListener();
 
@@ -92,7 +92,7 @@ public class _XPropertySet extends Multi
             vetoableChanged = true;
          }
          public void disposing (EventObject obj) {}
-    };
+    }
 
     private final XVetoableChangeListener VClistener = new MyVetoListener();
 

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/container/_XContainer.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/container/_XContainer.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/container/_XContainer.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/container/_XContainer.java Sun Feb  3 13:23:59 2013
@@ -152,7 +152,7 @@ public class _XContainer extends MultiMe
             bElementReplaced = true;
          }
          public void disposing (EventObject obj) {}
-    };
+    }
 
     MyListener listener = new MyListener();
 

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/form/_FormControlModel.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/form/_FormControlModel.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/form/_FormControlModel.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/form/_FormControlModel.java Sun Feb  3 13:23:59 2013
@@ -33,7 +33,7 @@ import lib.MultiPropertyTest;
 *  <li><code> TabIndex</code></li>
 *  <li><code> Tag</code></li>
 * </ul>
-* @see com.sun.star.form.FormControlModel
+* @see com.sun.star.form
 */
 public class _FormControlModel extends MultiPropertyTest {
 

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/frame/_XNotifyingDispatch.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/frame/_XNotifyingDispatch.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/frame/_XNotifyingDispatch.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/frame/_XNotifyingDispatch.java Sun Feb  3 13:23:59 2013
@@ -48,7 +48,7 @@ import com.sun.star.frame.DispatchResult
 * <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 {
 

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/frame/_XPopupMenuController.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/frame/_XPopupMenuController.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/frame/_XPopupMenuController.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/frame/_XPopupMenuController.java Sun Feb  3 13:23:59 2013
@@ -23,7 +23,9 @@
 
 package ifc.frame;
 
+import com.sun.star.graphic.XGraphic;
 import com.sun.star.awt.XPopupMenu;
+import com.sun.star.awt.KeyEvent;
 import com.sun.star.frame.XPopupMenuController;
 import lib.MultiMethodTest;
 
@@ -59,7 +61,7 @@ public class _XPopupMenuController exten
             System.out.println("enableItem called.");
         }
         
-        public short execute(com.sun.star.awt.XWindowPeer xWindowPeer, com.sun.star.awt.Rectangle rectangle, short param) {
+        public short execute(com.sun.star.awt.XWindowPeer xWindowPeer, com.sun.star.awt.Point pos, short param) {
             System.out.println("execute called.");
             return 0;
         }
@@ -131,5 +133,94 @@ public class _XPopupMenuController exten
         public void setPopupMenu(short param, com.sun.star.awt.XPopupMenu xPopupMenu) {
             System.out.println("setPopupMenu called.");
         }
+
+        public XGraphic getItemImage(short param ) {
+            System.out.println("getItemImage called.");
+            return null;
+        }
+
+        public void setItemImage(short param, XGraphic param1, boolean param2 ) {
+            System.out.println("setItemImage called.");
+        }
+
+        public KeyEvent getAcceleratorKeyEvent(short param ) {
+            System.out.println("getAcceleratorKeyEvent called.");
+            return new KeyEvent();
+        }
+
+        public void setAcceleratorKeyEvent(short param, KeyEvent param1 ) {
+            System.out.println("setAcceleratorKeyEvent called.");
+        }
+
+        public void endExecute() {
+            System.out.println("endExecute called.");
+        }
+
+        public boolean isInExecute() {
+            System.out.println("isInExecute called.");
+            return false;
+        }
+
+        public boolean isPopupMenu() {
+            System.out.println("isPopupMenu called.");
+            return true;
+        }
+
+        public String getTipHelpText(short param ) {
+            System.out.println("getTipHelpText called.");
+            return null;
+        }
+
+        public void setTipHelpText(short param, String param1 ) {
+            System.out.println("setTipHelpText called.");
+        }
+
+        public String getHelpText(short param ) {
+            System.out.println("getHelpText called.");
+            return null;
+        }
+
+        public void setHelpText(short param, String param1 ) {
+            System.out.println("setHelpText called.");
+        }
+
+        public String getHelpCommand(short param ) {
+            System.out.println("getHelpCommand called.");
+            return null;
+        }
+
+        public void setHelpCommand(short param, String param1 ) {
+            System.out.println("setHelpCommand called.");
+        }
+
+        public String getCommand(short param ) {
+            System.out.println("getCommand called.");
+            return null;
+        }
+
+        public void setCommand(short param, String param1 ) {
+            System.out.println("setCommand called.");
+        }
+
+        public void enableAutoMnemonics(boolean param ) {
+            System.out.println("enableAutoMnemonics called.");
+        }
+
+        public void hideDisabledEntries(boolean param ) {
+            System.out.println("hideDisabledEntries called.");
+        }
+
+        public com.sun.star.awt.MenuItemType getItemType(short param ) {
+            System.out.println("getItemType called.");
+            return com.sun.star.awt.MenuItemType.DONTKNOW;
+        }
+
+        public void setItemType(com.sun.star.awt.MenuItemType param ) {
+            System.out.println("setItemType called.");
+        }
+
+        public void clear() {
+            System.out.println("clear called.");
+        }
     }
 }

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/i18n/_XCharacterClassification.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/i18n/_XCharacterClassification.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/i18n/_XCharacterClassification.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/i18n/_XCharacterClassification.java Sun Feb  3 13:23:59 2013
@@ -301,7 +301,7 @@ public class _XCharacterClassification e
     * 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 e
 
     /**
     * 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],"");

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/i18n/_XIndexEntrySupplier.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/i18n/_XIndexEntrySupplier.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/i18n/_XIndexEntrySupplier.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/i18n/_XIndexEntrySupplier.java Sun Feb  3 13:23:59 2013
@@ -91,7 +91,7 @@ public class _XIndexEntrySupplier extend
 
     /**
     * 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) {

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/i18n/_XLocaleData.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/i18n/_XLocaleData.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/i18n/_XLocaleData.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/i18n/_XLocaleData.java Sun Feb  3 13:23:59 2013
@@ -400,7 +400,7 @@ public class _XLocaleData extends MultiM
 
     /**
     * 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) {

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/i18n/_XNumberFormatCode.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/i18n/_XNumberFormatCode.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/i18n/_XNumberFormatCode.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/i18n/_XNumberFormatCode.java Sun Feb  3 13:23:59 2013
@@ -146,7 +146,7 @@ public class _XNumberFormatCode extends 
 
     /**
     * 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) {

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/lang/_XComponent.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/lang/_XComponent.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/lang/_XComponent.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/lang/_XComponent.java Sun Feb  3 13:23:59 2013
@@ -61,7 +61,7 @@ public class _XComponent extends MultiMe
             Loutput[0] = Thread.currentThread() + " is DISPOSING EV1" + this;
             listenerDisposed[0] = true;
         }
-    };
+    }
 
     /**
     * Listener which added and then removed, and its method must <b>not</b>
@@ -72,7 +72,7 @@ public class _XComponent extends MultiMe
             Loutput[0] = Thread.currentThread() + " is DISPOSING EV2" + this;
             listenerDisposed[1] = true;
         }
-    };
+    }
 
     XEventListener listener1 = new MyEventListener();
     XEventListener listener2 = new MyEventListener2();

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/linguistic2/_XDictionaryList.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/linguistic2/_XDictionaryList.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/linguistic2/_XDictionaryList.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/linguistic2/_XDictionaryList.java Sun Feb  3 13:23:59 2013
@@ -74,7 +74,7 @@ public class _XDictionaryList extends Mu
         public void processDictionaryListEvent( DictionaryListEvent aDicEvent) {
             listenerCalled = true;
         }
-    };
+    }
 
     XDictionaryListEventListener listener = new MyDictionaryListEventListener();
 

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/linguistic2/_XLinguServiceEventBroadcaster.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/linguistic2/_XLinguServiceEventBroadcaster.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/linguistic2/_XLinguServiceEventBroadcaster.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/linguistic2/_XLinguServiceEventBroadcaster.java Sun Feb  3 13:23:59 2013
@@ -57,7 +57,7 @@ public class _XLinguServiceEventBroadcas
             log.println("Listener called");
         }
 
-    };
+    }
 
     XLinguServiceEventListener listener = new MyLinguServiceEventListener();
 

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/linguistic2/_XLinguServiceManager.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/linguistic2/_XLinguServiceManager.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/linguistic2/_XLinguServiceManager.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/linguistic2/_XLinguServiceManager.java Sun Feb  3 13:23:59 2013
@@ -68,7 +68,7 @@ public class _XLinguServiceManager exten
             listenerCalled = true;
             log.println("Listener called");
         }
-    };
+    }
 
     XLinguServiceEventListener listener = new MyLinguServiceEventListener();
 

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/registry/_XImplementationRegistration.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/registry/_XImplementationRegistration.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/registry/_XImplementationRegistration.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/registry/_XImplementationRegistration.java Sun Feb  3 13:23:59 2013
@@ -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 {
 

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/registry/_XSimpleRegistry.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/registry/_XSimpleRegistry.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/registry/_XSimpleRegistry.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/registry/_XSimpleRegistry.java Sun Feb  3 13:23:59 2013
@@ -395,7 +395,7 @@ public class _XSimpleRegistry extends Mu
     /**
     * 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 Mu
             }
         }
     }
-}
\ No newline at end of file
+}

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sdb/_RowSet.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sdb/_RowSet.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sdb/_RowSet.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sdb/_RowSet.java Sun Feb  3 13:23:59 2013
@@ -105,7 +105,7 @@ public class _RowSet extends MultiProper
      * Overriden method which tests all the properties
      * with <code>SafeTester</code>.
      *
-     * @see #SafeTester
+     * @see SafeTester
      */
     protected void testProperty(String propName) {
         testProperty(propName, new SafeTester()) ;

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryAnalyzer.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryAnalyzer.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryAnalyzer.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryAnalyzer.java Sun Feb  3 13:23:59 2013
@@ -64,7 +64,7 @@ public class _XSingleSelectQueryAnalyzer
     * <ul>
     *  <li><code>XSingleSelectQueryComposer xCompoer</code></li>
     * </ul> <p>
-     * @see om.sun.star.sdb.XSingleSelectQueryComposer
+     * @see com.sun.star.sdb.XSingleSelectQueryComposer
      */
     protected void before() {
 

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java Sun Feb  3 13:23:59 2013
@@ -72,7 +72,7 @@ public class _XSingleSelectQueryComposer
     *  <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*/ {

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sheet/_XCellRangesQuery.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sheet/_XCellRangesQuery.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sheet/_XCellRangesQuery.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sheet/_XCellRangesQuery.java Sun Feb  3 13:23:59 2013
@@ -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 M
             disposeEnvironment();
         }
     }
-}
\ No newline at end of file
+}

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sheet/_XConsolidationDescriptor.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sheet/_XConsolidationDescriptor.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sheet/_XConsolidationDescriptor.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sheet/_XConsolidationDescriptor.java Sun Feb  3 13:23:59 2013
@@ -236,7 +236,6 @@ public class _XConsolidationDescriptor e
 
     /**
     * Constructs new cell range addresses using old cell range addresses.
-    * @param CRaddr old cell range addresses
     * @return new cell range addresses
     */
     public CellRangeAddress[] newCRaddr() {

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sheet/_XRangeSelection.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sheet/_XRangeSelection.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sheet/_XRangeSelection.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/sheet/_XRangeSelection.java Sun Feb  3 13:23:59 2013
@@ -102,7 +102,7 @@ public class _XRangeSelection extends Mu
         requiredMethod("addRangeSelectionListener()");
         
         // get the sheet center
-        Point center = getSheetCenter();;
+        Point center = getSheetCenter();
         if (center == null)
             throw new StatusException(Status.failed("Couldn't get the sheet center."));
         
@@ -168,7 +168,7 @@ public class _XRangeSelection extends Mu
     
     /**
      * 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");
@@ -211,7 +211,7 @@ public class _XRangeSelection extends Mu
                 if (xacc != null) {
                     if (xacc.getAccessibleContext().getAccessibleName().indexOf("d2")>0) {
                         tw=tw_temp;
-                    };
+                    }
                 } else {
                     log.println("\t unknown window");
                 }

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/text/_NumberingLevel.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/text/_NumberingLevel.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/text/_NumberingLevel.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/text/_NumberingLevel.java Sun Feb  3 13:23:59 2013
@@ -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 {
     

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/text/_TextGraphicObject.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/text/_TextGraphicObject.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/text/_TextGraphicObject.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/text/_TextGraphicObject.java Sun Feb  3 13:23:59 2013
@@ -141,7 +141,6 @@ public class _TextGraphicObject extends 
             res[0][i] = new Point();
             res[0][i].X = rd() * rd() * rd();
             res[0][i].Y = rd() * rd() * rd();
-            ;
         }
 
         return res;

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/text/_TextSection.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/text/_TextSection.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/text/_TextSection.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/text/_TextSection.java Sun Feb  3 13:23:59 2013
@@ -111,7 +111,7 @@ public class _TextSection extends MultiP
         TC.setColumnCount(val2set);
 
         return TC;
-        };
+        }
 
         protected boolean compare(Object obj1, Object obj2) {
             short val1 = 0;

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/ucb/_XRemoteContentProviderAcceptor.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/ucb/_XRemoteContentProviderAcceptor.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/ucb/_XRemoteContentProviderAcceptor.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/ucb/_XRemoteContentProviderAcceptor.java Sun Feb  3 13:23:59 2013
@@ -54,7 +54,7 @@ public class _XRemoteContentProviderAcce
         }
         public void disposing (com.sun.star.lang.EventObject obj) {}
 
-    };
+    }
 
     XRemoteContentProviderDoneListener aDoneListener = new DoneListener();
 

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/ucb/_XSimpleFileAccess.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/ucb/_XSimpleFileAccess.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/ucb/_XSimpleFileAccess.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/ucb/_XSimpleFileAccess.java Sun Feb  3 13:23:59 2013
@@ -515,7 +515,7 @@ public class _XSimpleFileAccess extends 
     */
     public void _setInteractionHandler() {
         XInteractionHandler handler = null;
-        Object oHandler = tEnv.getObjRelation("InteractionHandler");;
+        Object oHandler = tEnv.getObjRelation("InteractionHandler");
 
         if (oHandler == null)
             throw new StatusException

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/view/_XPrintJobBroadcaster.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/view/_XPrintJobBroadcaster.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/view/_XPrintJobBroadcaster.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/ifc/view/_XPrintJobBroadcaster.java Sun Feb  3 13:23:59 2013
@@ -88,7 +88,7 @@ public class _XPrintJobBroadcaster exten
         
         /**
          * 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;

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/mod/_cached/CachedContentResultSetFactory.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/mod/_cached/CachedContentResultSetFactory.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/mod/_cached/CachedContentResultSetFactory.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/mod/_cached/CachedContentResultSetFactory.java Sun Feb  3 13:23:59 2013
@@ -72,7 +72,7 @@ public class CachedContentResultSetFacto
     *      {@link ifc.XCachedContentResultSetFactory} : the destination
     *   interface requires as its parameter an instance of
     *   <code>CachedContentResultSetStub</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. Using

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/mod/_cached/CachedContentResultSetStubFactory.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/mod/_cached/CachedContentResultSetStubFactory.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/mod/_cached/CachedContentResultSetStubFactory.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/mod/_cached/CachedContentResultSetStubFactory.java Sun Feb  3 13:23:59 2013
@@ -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

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/mod/_cached/CachedDynamicResultSetFactory.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/mod/_cached/CachedDynamicResultSetFactory.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/mod/_cached/CachedDynamicResultSetFactory.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/mod/_cached/CachedDynamicResultSetFactory.java Sun Feb  3 13:23:59 2013
@@ -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

Modified: openoffice/branches/l10n/main/qadevOOo/tests/java/mod/_cached/CachedDynamicResultSetStubFactory.java
URL: http://svn.apache.org/viewvc/openoffice/branches/l10n/main/qadevOOo/tests/java/mod/_cached/CachedDynamicResultSetStubFactory.java?rev=1441909&r1=1441908&r2=1441909&view=diff
==============================================================================
--- openoffice/branches/l10n/main/qadevOOo/tests/java/mod/_cached/CachedDynamicResultSetStubFactory.java (original)
+++ openoffice/branches/l10n/main/qadevOOo/tests/java/mod/_cached/CachedDynamicResultSetStubFactory.java Sun Feb  3 13:23:59 2013
@@ -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>