You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by pf...@apache.org on 2014/04/29 21:13:57 UTC

svn commit: r1591061 [6/6] - in /openoffice/trunk/main/qadevOOo: runner/base/ runner/basicrunner/ runner/basicrunner/basichelper/ runner/complexlib/ runner/convwatch/ runner/graphical/ runner/helper/ runner/lib/ runner/org/openoffice/ runner/share/ run...

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/XMLMetaExporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/XMLMetaExporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/XMLMetaExporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/XMLMetaExporter.java Tue Apr 29 19:13:51 2014
@@ -166,7 +166,7 @@ public class XMLMetaExporter extends Tes
     /**
      * This class checks the XML for tags and data required and returns
      * checking result to <code>XFilter</code> interface test. All
-     * the information about errors occured in XML data is written
+     * the information about errors occurred in XML data is written
      * to log specified.
      * @see ifc.document._XFilter
      */
@@ -186,7 +186,7 @@ public class XMLMetaExporter extends Tes
          * which returns the result of XML checking.
          * @return <code>true</code> if the XML data exported was
          * valid (i.e. all necessary tags and character data exists),
-         * <code>false</code> if some errors occured.
+         * <code>false</code> if some errors occurred.
          */
         public boolean checkFilter() {
             return checkTags();

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/XMLMetaImporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/XMLMetaImporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/XMLMetaImporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/XMLMetaImporter.java Tue Apr 29 19:13:51 2014
@@ -172,7 +172,7 @@ public class XMLMetaImporter extends Tes
                         logF.println("Title returned = '" + title + "'") ;
                         return impTitle.equals(title) ;
                     } catch (com.sun.star.uno.Exception e) {
-                        logF.println("Exception occured while checking filter :") ;
+                        logF.println("Exception occurred while checking filter :") ;
                         e.printStackTrace(logF) ;
                         return false ;
                     }

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/XMLSettingsExporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/XMLSettingsExporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/XMLSettingsExporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/XMLSettingsExporter.java Tue Apr 29 19:13:51 2014
@@ -175,7 +175,7 @@ public class XMLSettingsExporter extends
     /**
      * This class checks the XML for tags and data required and returns
      * checking result to <code>XFilter</code> interface test. All
-     * the information about errors occured in XML data is written
+     * the information about errors occurred in XML data is written
      * to log specified.
      * @see ifc.document._XFilter
      */
@@ -195,7 +195,7 @@ public class XMLSettingsExporter extends
          * which returns the result of XML checking.
          * @return <code>true</code> if the XML data exported was
          * valid (i.e. all necessary tags and character data exists),
-         * <code>false</code> if some errors occured.
+         * <code>false</code> if some errors occurred.
          */
         public boolean checkFilter() {
             return check();

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/XMLStylesExporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/XMLStylesExporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/XMLStylesExporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/XMLStylesExporter.java Tue Apr 29 19:13:51 2014
@@ -134,7 +134,7 @@ public class XMLStylesExporter extends T
             throw new StatusException("Can't create component.", e) ;
         }
 
-        // Cheching Head Tag existance and that property has changed
+        // Cheching Head Tag existence and that property has changed
         filter.addTag(new XMLTools.Tag ("office:document-styles"));
         filter.addTag(new XMLTools.Tag ("text:footnotes-configuration",
             "style:num-prefix","New Property")) ;
@@ -168,7 +168,7 @@ public class XMLStylesExporter extends T
     /**
      * This class checks the XML for tags and data required and returns
      * checking result to <code>XFilter</code> interface test. All
-     * the information about errors occured in XML data is written
+     * the information about errors occurred in XML data is written
      * to log specified.
      * @see ifc.document._XFilter
      */
@@ -188,7 +188,7 @@ public class XMLStylesExporter extends T
          * which returns the result of XML checking.
          * @return <code>true</code> if the XML data exported was
          * valid (i.e. all necessary tags and character data exists),
-         * <code>false</code> if some errors occured.
+         * <code>false</code> if some errors occurred.
          */
         public boolean checkFilter() {
             return check();

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/XMLStylesImporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/XMLStylesImporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/XMLStylesImporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/XMLStylesImporter.java Tue Apr 29 19:13:51 2014
@@ -171,7 +171,7 @@ public class XMLStylesImporter extends T
                         logF.println("Prefix returned = '" + prefix + "'") ;
                         return impPrefix.equals(prefix) ;
                     } catch (com.sun.star.uno.Exception e) {
-                        logF.println("Exception occured while checking filter :") ;
+                        logF.println("Exception occurred while checking filter :") ;
                         e.printStackTrace(logF) ;
                         return false ;
                     }

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/package.html
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/package.html?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/package.html (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_sw/package.html Tue Apr 29 19:13:51 2014
@@ -21,6 +21,6 @@
  ***********************************************************-->
 <HTML>
 <BODY>
-<P>Containes all test cases for the module 'sw'.</P>
+<P>Contains all test cases for the module 'sw'.</P>
 </BODY>
 </HTML>

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_sysdtrans/package.html
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_sysdtrans/package.html?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_sysdtrans/package.html (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_sysdtrans/package.html Tue Apr 29 19:13:51 2014
@@ -21,6 +21,6 @@
  ***********************************************************-->
 <HTML>
 <BODY>
-<P>Containes all test cases for the module 'sysdtrans'.</P>
+<P>Contains all test cases for the module 'sysdtrans'.</P>
 </BODY>
 </HTML>

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_tcv/package.html
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_tcv/package.html?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_tcv/package.html (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_tcv/package.html Tue Apr 29 19:13:51 2014
@@ -21,6 +21,6 @@
  ***********************************************************-->
 <HTML>
 <BODY>
-<P>Containes all test cases for the module 'tcv'.</P>
+<P>Contains all test cases for the module 'tcv'.</P>
 </BODY>
 </HTML>

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_tdmgr/package.html
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_tdmgr/package.html?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_tdmgr/package.html (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_tdmgr/package.html Tue Apr 29 19:13:51 2014
@@ -21,6 +21,6 @@
  ***********************************************************-->
 <HTML>
 <BODY>
-<P>Containes all test cases for the module 'tdmgr'.</P>
+<P>Contains all test cases for the module 'tdmgr'.</P>
 </BODY>
 </HTML>

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_toolkit/package.html
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_toolkit/package.html?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_toolkit/package.html (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_toolkit/package.html Tue Apr 29 19:13:51 2014
@@ -21,6 +21,6 @@
  ***********************************************************-->
 <HTML>
 <BODY>
-<P>Containes all test cases for the module 'toolkit'.</P>
+<P>Contains all test cases for the module 'toolkit'.</P>
 </BODY>
 </HTML>

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_typeconverter.uno/package.html
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_typeconverter.uno/package.html?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_typeconverter.uno/package.html (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_typeconverter.uno/package.html Tue Apr 29 19:13:51 2014
@@ -21,6 +21,6 @@
  ***********************************************************-->
 <HTML>
 <BODY>
-<P>Containes all test cases for the module 'tcv'.</P>
+<P>Contains all test cases for the module 'tcv'.</P>
 </BODY>
 </HTML>

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_typemgr.uno/package.html
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_typemgr.uno/package.html?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_typemgr.uno/package.html (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_typemgr.uno/package.html Tue Apr 29 19:13:51 2014
@@ -21,6 +21,6 @@
  ***********************************************************-->
 <HTML>
 <BODY>
-<P>Containes all test cases for the module 'tdmgr'.</P>
+<P>Contains all test cases for the module 'tdmgr'.</P>
 </BODY>
 </HTML>

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_uuresolver.uno/package.html
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_uuresolver.uno/package.html?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_uuresolver.uno/package.html (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_uuresolver.uno/package.html Tue Apr 29 19:13:51 2014
@@ -21,6 +21,6 @@
  ***********************************************************-->
 <HTML>
 <BODY>
-<P>Containes all test cases for the module 'uuresolver'.</P>
+<P>Contains all test cases for the module 'uuresolver'.</P>
 </BODY>
 </HTML>

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_uuresolver/package.html
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_uuresolver/package.html?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_uuresolver/package.html (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_uuresolver/package.html Tue Apr 29 19:13:51 2014
@@ -21,6 +21,6 @@
  ***********************************************************-->
 <HTML>
 <BODY>
-<P>Containes all test cases for the module 'uuresolver'.</P>
+<P>Contains all test cases for the module 'uuresolver'.</P>
 </BODY>
 </HTML>

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLContentExporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLContentExporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLContentExporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLContentExporter.java Tue Apr 29 19:13:51 2014
@@ -169,7 +169,7 @@ public class XMLContentExporter extends 
     /**
      * This class checks the XML for tags and data required and returns
      * checking result to <code>XFilter</code> interface test. All
-     * the information about errors occured in XML data is written
+     * the information about errors occurred in XML data is written
      * to log specified.
      * @see ifc.document._XFilter
      */
@@ -188,7 +188,7 @@ public class XMLContentExporter extends 
          * which returns the result of XML checking.
          * @return <code>true</code> if the XML data exported was
          * valid (i.e. all necessary tags and character data exists),
-         * <code>false</code> if some errors occured.
+         * <code>false</code> if some errors occurred.
          */
         public boolean checkFilter() {
             return check() ;

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLContentImporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLContentImporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLContentImporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLContentImporter.java Tue Apr 29 19:13:51 2014
@@ -189,7 +189,7 @@ public class XMLContentImporter extends 
                         return impValue.equals(title) ;
                     } catch (com.sun.star.uno.Exception e) {
                         logF.println
-                            ("Exception occured while checking filter :") ;
+                            ("Exception occurred while checking filter :") ;
                         e.printStackTrace(logF) ;
                         return false ;
                     }

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLExporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLExporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLExporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLExporter.java Tue Apr 29 19:13:51 2014
@@ -172,7 +172,7 @@ public class XMLExporter extends TestCas
     /**
      * This class checks the XML for tags and data required and returns
      * checking result to <code>XFilter</code> interface test. All
-     * the information about errors occured in XML data is written
+     * the information about errors occurred in XML data is written
      * to log specified.
      * @see ifc.document._XFilter
      */
@@ -191,7 +191,7 @@ public class XMLExporter extends TestCas
          * which returns the result of XML checking.
          * @return <code>true</code> if the XML data exported was
          * valid (i.e. all necessary tags and character data exists),
-         * <code>false</code> if some errors occured.
+         * <code>false</code> if some errors occurred.
          */
         public boolean checkFilter() {
             return check() ;

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLImporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLImporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLImporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLImporter.java Tue Apr 29 19:13:51 2014
@@ -187,7 +187,7 @@ public class XMLImporter extends TestCas
                         return impValue.equals(title) ;
                     } catch (com.sun.star.uno.Exception e) {
                         logF.println
-                            ("Exception occured while checking filter :") ;
+                            ("Exception occurred while checking filter :") ;
                         e.printStackTrace(logF) ;
                         return false ;
                     }

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLStylesExporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLStylesExporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLStylesExporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLStylesExporter.java Tue Apr 29 19:13:51 2014
@@ -159,7 +159,7 @@ public class XMLStylesExporter extends T
     /**
      * This class checks the XML for tags and data required and returns
      * checking result to <code>XFilter</code> interface test. All
-     * the information about errors occured in XML data is written
+     * the information about errors occurred in XML data is written
      * to log specified.
      * @see ifc.document._XFilter
      */
@@ -178,7 +178,7 @@ public class XMLStylesExporter extends T
          * which returns the result of XML checking.
          * @return <code>true</code> if the XML data exported was
          * valid (i.e. all necessary tags and character data exists),
-         * <code>false</code> if some errors occured.
+         * <code>false</code> if some errors occurred.
          */
         public boolean checkFilter() {
             return check() ;

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLStylesImporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLStylesImporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLStylesImporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Chart/XMLStylesImporter.java Tue Apr 29 19:13:51 2014
@@ -168,7 +168,7 @@ public class XMLStylesImporter extends T
                         logF.println(" TRUE returned.");
                         return true ;
 /*                    } catch (com.sun.star.uno.Exception e) {
-                        logF.println("Exception occured while checking filter :") ;
+                        logF.println("Exception occurred while checking filter :") ;
                         e.printStackTrace(logF) ;
                         return false ;
                     }

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLContentExporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLContentExporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLContentExporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLContentExporter.java Tue Apr 29 19:13:51 2014
@@ -124,7 +124,7 @@ public class XMLContentExporter extends 
         FilterChecker filter = new FilterChecker(log);
         Any arg = new Any(new Type(XDocumentHandler.class),filter);
 
-        // Adding tags for checking existance of head tag and other tags
+        // Adding tags for checking existence of head tag and other tags
         filter.addTag(new XMLTools.Tag("office:document-content"));
         filter.addTag(new XMLTools.Tag("office:body"));
         filter.addTagEnclosed(
@@ -181,7 +181,7 @@ public class XMLContentExporter extends 
     /**
      * This class checks the XML for tags and data required and returns
      * checking result to <code>XFilter</code> interface test. All
-     * the information about errors occured in XML data is written
+     * the information about errors occurred in XML data is written
      * to log specified.
      * @see ifc.document._XFilter
      */
@@ -200,7 +200,7 @@ public class XMLContentExporter extends 
          * which returns the result of XML checking.
          * @return <code>true</code> if the XML data exported was
          * valid (i.e. all necessary tags and character data exists),
-         * <code>false</code> if some errors occured.
+         * <code>false</code> if some errors occurred.
          */
         public boolean checkFilter() {
             return check();

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLExporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLExporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLExporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLExporter.java Tue Apr 29 19:13:51 2014
@@ -126,7 +126,7 @@ public class XMLExporter extends TestCas
         FilterChecker filter = new FilterChecker(log);
         Any arg = new Any(new Type(XDocumentHandler.class),filter);
 
-        // Adding tags for checking existance of head tag and other tags
+        // Adding tags for checking existence of head tag and other tags
         filter.addTag(new XMLTools.Tag("office:document"));
         filter.addTag(new XMLTools.Tag("office:body"));
         filter.addTagEnclosed(
@@ -182,7 +182,7 @@ public class XMLExporter extends TestCas
     /**
      * This class checks the XML for tags and data required and returns
      * checking result to <code>XFilter</code> interface test. All
-     * the information about errors occured in XML data is written
+     * the information about errors occurred in XML data is written
      * to log specified.
      * @see ifc.document._XFilter
      */
@@ -201,7 +201,7 @@ public class XMLExporter extends TestCas
          * which returns the result of XML checking.
          * @return <code>true</code> if the XML data exported was
          * valid (i.e. all necessary tags and character data exists),
-         * <code>false</code> if some errors occured.
+         * <code>false</code> if some errors occurred.
          */
         public boolean checkFilter() {
             return check();

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLMetaExporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLMetaExporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLMetaExporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLMetaExporter.java Tue Apr 29 19:13:51 2014
@@ -146,7 +146,7 @@ public class XMLMetaExporter extends Tes
             throw new StatusException("Can't create component.", e) ;
         }
 
-        // Checking Head Tag existance and that property has changed
+        // Checking Head Tag existence and that property has changed
         filter.addTag(new XMLTools.Tag ("office:document-meta"));
         filter.addTagEnclosed(
             new XMLTools.Tag("office:meta"),
@@ -172,7 +172,7 @@ public class XMLMetaExporter extends Tes
     /**
      * This class checks the XML for tags and data required and returns
      * checking result to <code>XFilter</code> interface test. All
-     * the information about errors occured in XML data is written
+     * the information about errors occurred in XML data is written
      * to log specified.
      * @see ifc.document._XFilter
      */
@@ -192,7 +192,7 @@ public class XMLMetaExporter extends Tes
          * which returns the result of XML checking.
          * @return <code>true</code> if the XML data exported was
          * valid (i.e. all necessary tags and character data exists),
-         * <code>false</code> if some errors occured.
+         * <code>false</code> if some errors occurred.
          */
         public boolean checkFilter() {
             return check();

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLMetaImporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLMetaImporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLMetaImporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLMetaImporter.java Tue Apr 29 19:13:51 2014
@@ -173,7 +173,7 @@ public class XMLMetaImporter extends Tes
                         logF.println("Title returned = '" + title + "'") ;
                         return impTitle.equals(title) ;
                     } catch (com.sun.star.uno.Exception e) {
-                        logF.println("Exception occured while checking filter :") ;
+                        logF.println("Exception occurred while checking filter :") ;
                         e.printStackTrace(logF) ;
                         return false ;
                     }

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLSettingsExporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLSettingsExporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLSettingsExporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLSettingsExporter.java Tue Apr 29 19:13:51 2014
@@ -147,7 +147,7 @@ public class XMLSettingsExporter extends
             throw new StatusException("Can't create component.", e) ;
         }
 
-        // Checking Head Tag existance and that property has changed
+        // Checking Head Tag existence and that property has changed
         filter.addTag(new XMLTools.Tag ("office:document-settings"));
         filter.addTagEnclosed(
             new XMLTools.Tag ("office:settings"),
@@ -178,7 +178,7 @@ public class XMLSettingsExporter extends
     /**
      * This class checks the XML for tags and data required and returns
      * checking result to <code>XFilter</code> interface test. All
-     * the information about errors occured in XML data is written
+     * the information about errors occurred in XML data is written
      * to log specified.
      * @see ifc.document._XFilter
      */
@@ -198,7 +198,7 @@ public class XMLSettingsExporter extends
          * which returns the result of XML checking.
          * @return <code>true</code> if the XML data exported was
          * valid (i.e. all necessary tags and character data exists),
-         * <code>false</code> if some errors occured.
+         * <code>false</code> if some errors occurred.
          */
         public boolean checkFilter() {
             return check();

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLStylesExporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLStylesExporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLStylesExporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Draw/XMLStylesExporter.java Tue Apr 29 19:13:51 2014
@@ -157,7 +157,7 @@ public class XMLStylesExporter extends T
             throw new StatusException("Can't create component.", e) ;
         }
 
-        // Checking Head Tag existance and that property has changed
+        // Checking Head Tag existence and that property has changed
         filter.addTag(new XMLTools.Tag ("office:document-styles"));
         filter.addTag(new XMLTools.Tag ("office:styles"));
         filter.addTagEnclosed(
@@ -180,7 +180,7 @@ public class XMLStylesExporter extends T
     /**
      * This class checks the XML for tags and data required and returns
      * checking result to <code>XFilter</code> interface test. All
-     * the information about errors occured in XML data is written
+     * the information about errors occurred in XML data is written
      * to log specified.
      * @see ifc.document._XFilter
      */
@@ -200,7 +200,7 @@ public class XMLStylesExporter extends T
          * which returns the result of XML checking.
          * @return <code>true</code> if the XML data exported was
          * valid (i.e. all necessary tags and character data exists),
-         * <code>false</code> if some errors occured.
+         * <code>false</code> if some errors occurred.
          */
         public boolean checkFilter() {
             return check();

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLContentExporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLContentExporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLContentExporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLContentExporter.java Tue Apr 29 19:13:51 2014
@@ -175,7 +175,7 @@ public class XMLContentExporter extends 
     /**
      * This class checks the XML for tags and data required and returns
      * checking result to <code>XFilter</code> interface test. All
-     * the information about errors occured in XML data is written
+     * the information about errors occurred in XML data is written
      * to log specified.
      * @see ifc.document._XFilter
      */
@@ -194,7 +194,7 @@ public class XMLContentExporter extends 
          * which returns the result of XML checking.
          * @return <code>true</code> if the XML data exported was
          * valid (i.e. all necessary tags and character data exists),
-         * <code>false</code> if some errors occured.
+         * <code>false</code> if some errors occurred.
          */
         public boolean checkFilter() {
             return check() ;

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLContentImporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLContentImporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLContentImporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLContentImporter.java Tue Apr 29 19:13:51 2014
@@ -204,7 +204,7 @@ public class XMLContentImporter extends 
                         logF.println("Page name returned = '" + gName + "'") ;
                         return impPageName.equals(gName) ;
                     } catch (com.sun.star.uno.Exception e) {
-                        logF.println("Exception occured while checking filter :") ;
+                        logF.println("Exception occurred while checking filter :") ;
                         e.printStackTrace(logF) ;
                         return false ;
                     }

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLExporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLExporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLExporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLExporter.java Tue Apr 29 19:13:51 2014
@@ -178,7 +178,7 @@ public class XMLExporter extends TestCas
     /**
      * This class checks the XML for tags and data required and returns
      * checking result to <code>XFilter</code> interface test. All
-     * the information about errors occured in XML data is written
+     * the information about errors occurred in XML data is written
      * to log specified.
      * @see ifc.document._XFilter
      */
@@ -197,7 +197,7 @@ public class XMLExporter extends TestCas
          * which returns the result of XML checking.
          * @return <code>true</code> if the XML data exported was
          * valid (i.e. all necessary tags and character data exists),
-         * <code>false</code> if some errors occured.
+         * <code>false</code> if some errors occurred.
          */
         public boolean checkFilter() {
             return check();

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLMetaExporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLMetaExporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLMetaExporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLMetaExporter.java Tue Apr 29 19:13:51 2014
@@ -147,7 +147,7 @@ public class XMLMetaExporter extends Tes
             throw new StatusException("Can't create component.", e) ;
         }
 
-        // Checking tags existance and changed property value
+        // Checking tags existence and changed property value
         filter.addTag(new XMLTools.Tag ("office:document-meta"));
         filter.addTagEnclosed(
             new XMLTools.Tag("office:meta"),
@@ -174,7 +174,7 @@ public class XMLMetaExporter extends Tes
     /**
     * This class checks the XML for tags and data required and returns
     * checking result to <code>XFilter</code> interface test. All
-    * the information about errors occured in XML data is written
+    * the information about errors occurred in XML data is written
     * to log specified.
     * @see ifc.document._XFilter
     */
@@ -193,7 +193,7 @@ public class XMLMetaExporter extends Tes
         * which returns the result of XML checking.
         * @return <code>true</code> if the XML data exported was
         * valid (i.e. all necessary tags and character data exists),
-        * <code>false</code> if some errors occured.
+        * <code>false</code> if some errors occurred.
         */
         public boolean checkFilter() {
             return check();

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLMetaImporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLMetaImporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLMetaImporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLMetaImporter.java Tue Apr 29 19:13:51 2014
@@ -172,7 +172,7 @@ public class XMLMetaImporter extends Tes
                         logF.println("Title returned = '" + title + "'") ;
                         return impTitle.equals(title) ;
                     } catch (com.sun.star.uno.Exception e) {
-                        logF.println("Exception occured while checking filter :") ;
+                        logF.println("Exception occurred while checking filter :") ;
                         e.printStackTrace(logF) ;
                         return false ;
                     }

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLSettingsExporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLSettingsExporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLSettingsExporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLSettingsExporter.java Tue Apr 29 19:13:51 2014
@@ -158,7 +158,7 @@ public class XMLSettingsExporter extends
             throw new StatusException("Can't create component.", e) ;
         }
 
-        // Adding tags for checking existance of head tag and other tags
+        // Adding tags for checking existence of head tag and other tags
         filter.addTagEnclosed(new XMLTools.Tag("office:settings"),
             new XMLTools.Tag("office:document-settings"));
         filter.addTagEnclosed(new XMLTools.Tag("config:config-item-set"),
@@ -187,7 +187,7 @@ public class XMLSettingsExporter extends
     /**
     * This class checks the XML for tags and data required and returns
     * checking result to <code>XFilter</code> interface test. All
-    * the information about errors occured in XML data is written
+    * the information about errors occurred in XML data is written
     * to log specified.
     * @see ifc.document._XFilter
     */
@@ -206,7 +206,7 @@ public class XMLSettingsExporter extends
         * which returns the result of XML checking.
         * @return <code>true</code> if the XML data exported was
         * valid (i.e. all necessary tags and character data exists),
-        * <code>false</code> if some errors occured.
+        * <code>false</code> if some errors occurred.
         */
         public boolean checkFilter() {
             return check();

Modified: openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLStylesExporter.java
URL: http://svn.apache.org/viewvc/openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLStylesExporter.java?rev=1591061&r1=1591060&r2=1591061&view=diff
==============================================================================
--- openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLStylesExporter.java (original)
+++ openoffice/trunk/main/qadevOOo/tests/java/mod/_xmloff/Impress/XMLStylesExporter.java Tue Apr 29 19:13:51 2014
@@ -129,7 +129,7 @@ public class XMLStylesExporter extends T
         Any arg = new Any(new Type(XDocumentHandler.class),filter);
 
         String newName = "NewGraphicsStyle" + counter++;
-        // Adding tags for checking existance of head tag and property value
+        // Adding tags for checking existence of head tag and property value
         filter.addTag(new XMLTools.Tag("office:document-styles"));
         filter.addTag(new XMLTools.Tag("office:styles"));
         filter.addTag(new XMLTools.Tag("style:style","style:name", newName));
@@ -177,7 +177,7 @@ public class XMLStylesExporter extends T
     /**
      * This class checks the XML for tags and data required and returns
      * checking result to <code>XFilter</code> interface test. All
-     * the information about errors occured in XML data is written
+     * the information about errors occurred in XML data is written
      * to log specified.
      * @see ifc.document._XFilter
      */
@@ -196,7 +196,7 @@ public class XMLStylesExporter extends T
          * which returns the result of XML checking.
          * @return <code>true</code> if the XML data exported was
          * valid (i.e. all necessary tags and character data exists),
-         * <code>false</code> if some errors occured.
+         * <code>false</code> if some errors occurred.
          */
         public boolean checkFilter() {
             return check();