Re: GSoC'2023: Histogram (and other missing) Chart Type: LibreOffice

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Tomaz, 

I have built LibreOffice from the Source on my Linux machine. I have documented the progress of easy Hacks and steps for building LibreOffice in [1] with attachments. I am not able to push the code on Gerrit because I don't have access, hence I created a patch for "Use hypot function for Pythagorean addition[2]. I used "hypot" function in place of a ⊕ b = sqrt(a^2+b^2). As, For large values of a or b, there is a possibility of overflow. Please review the patch, and suggest some enhancements to it. 

Also can you please suggest, some other tasks which I can work on further? I have already prepared a timeline/planner, great if you could have a look at it and suggest any enhancements.

Thanks. 
Madhu




On Fri, Mar 10, 2023 at 10:44 AM Madhu patel <patelmadhu06@xxxxxxxxx> wrote:
Hi Tomaz, 

I have built LibreOffice from the Source on my Linux machine. I have documented the progress of easy Hacks and steps for building LibreOffice in [1] with attachments. I am not able to push the code on Gerrit because I don't have access, hence I created a patch for "Use hypot function for Pythagorean addition" [2]. I used "hypot" function in place of 
a ⊕ b = sqrt(a^2+b^2). As, For large values of a or b, there is a possibility of overflow. Please review the patch, and suggest some enhancements to it. 

Also can you please suggest, some other tasks which I can work on further? I have already prepared a timeline/planner, great if you could have a look at it and suggest any enhancements.

Thanks. 
Madhu





On Fri, Mar 10, 2023 at 3:23 AM Madhu patel <patelmadhu06@xxxxxxxxx> wrote:
Hey! 
I have completed the tasks you mentioned. And documented everything in this[1] paper. Please suggest changes if required. I picked this bug[2], I was creating a patch for the same, but it seems I don't have access to do so. Can you provide access? I have attached the screenshot of the error. 

[1] https://www.dropbox.com/scl/fi/7f02ky1hh284jqak9cayo/LibreOffice.paper?dl=0&rlkey=lmyaxg2cqf6ui90cn5ukuv2qk
[2] https://bugs.documentfoundation.org/show_bug.cgi?id=147906  

88b8a1c2-6eb1-4844-8aa1-de76ac05f68c.png
This project is very exciting to me, thus I have created a timeline for the project, can you provide enhancements and suggestions to it? 

Thanks!


image.gif
On Thu, Mar 9, 2023 at 12:53 PM Madhu patel <patelmadhu06@xxxxxxxxx> wrote:

Yes, I will work on it. And will give you an update about my work and documentation by the end of the day. 

Thanks



image.gif
On Thu, Mar 9, 2023 at 7:54 AM Tomaž Vajngerl <quikee@xxxxxxxxx> wrote:
Hi Madhu,

On Wed, Mar 8, 2023 at 11:32 PM Madhu patel <patelmadhu06@xxxxxxxxx> wrote:
Hi, quikee,

I'm interested in working on the project `Histogram (and other missing) Chart Type` in LibreOffice organization through GSoC'2023.

I am Madhu Patel, a fourth-year B.Tech. student in Computer Science at IGDTUW, with a CGPA of 8.7/10. I have previously interned at Adobe India, Rabvik Innovations, and FM solutions, and I am currently a research intern at IIT Roorkee. I am also working on a research paper on Linux Kernel Evolution for the USENIX publication. Moreover, my research paper on Stock Price Prediction was recently accepted at the IEEE Conference. You can find more information about my work on my LinkedIn and GitHub profiles. 

Please suggest a few initial tasks I can work on during the application period and attach them to my application. I have already prepared a timeline/planner, great if you could have a look at it and suggest any enhancements. Additionally, I have signed in to the mailing lists, and IRCs and done the initial tasks as described on the project page [1]


I'm not suggesting any initial tasks - GSoC students in the application period should work on easy hacks (at least one with the difficulty "Interesting"). Start by building the LibreOffice from the source, check some trivial easy hacks and start working on the more "interesting" easy hacks. The easy hack is probably the most important as it will show to us that you have the skills to complete the project. After you have completed that, then we can talk about the details of the project and what should be written in the proposal.
 
Thanks,
Madhu Patel
 
Regards, Tomaž
image.gif
diff --git a/android/source/src/java/org/mozilla/gecko/gfx/JavaPanZoomController.java b/android/source/src/java/org/mozilla/gecko/gfx/JavaPanZoomController.java
index c0da18ff70bd..ba9601a04959 100644
--- a/android/source/src/java/org/mozilla/gecko/gfx/JavaPanZoomController.java
+++ b/android/source/src/java/org/mozilla/gecko/gfx/JavaPanZoomController.java
@@ -543,7 +543,8 @@ class JavaPanZoomController
     private float getVelocity() {
         float xvel = mX.getRealVelocity();
         float yvel = mY.getRealVelocity();
-        return (float) Math.sqrt(xvel * xvel + yvel * yvel);
+        return (float) Math.hypot(xvel, yvel);
+
     }
 
     public PointF getVelocityVector() {
diff --git a/android/source/src/java/org/mozilla/gecko/gfx/PointUtils.java b/android/source/src/java/org/mozilla/gecko/gfx/PointUtils.java
index 4eb07a31f147..2cdc69a923e3 100644
--- a/android/source/src/java/org/mozilla/gecko/gfx/PointUtils.java
+++ b/android/source/src/java/org/mozilla/gecko/gfx/PointUtils.java
@@ -30,7 +30,7 @@ public final class PointUtils {
 
    /* Computes the magnitude of the given vector. */
    public static float distance(PointF point) {
-        return (float)Math.sqrt(point.x * point.x + point.y * point.y);
+        return (float)Math.hypot(point.x, point.y);
    }
 
     /** Computes the scalar distance between two points. */
diff --git a/filter/source/svg/presentation_engine.js b/filter/source/svg/presentation_engine.js
index 08fdb283d60b..ba585b6f4b3c 100644
--- a/filter/source/svg/presentation_engine.js
+++ b/filter/source/svg/presentation_engine.js
@@ -763,7 +763,7 @@ function getDistance(p1, p2, props) {
     var x = p2[props[0]] - p1[props[0]],
         y = p2[props[1]] - p1[props[1]];
 
-    return Math.sqrt((x * x) + (y * y));
+    return Math.hypot(x, y);
 }
 
 /**
diff --git a/qadevOOo/.project b/qadevOOo/.project
index 7f840776f4c8..25daff69bb96 100644
--- a/qadevOOo/.project
+++ b/qadevOOo/.project
@@ -18,7 +18,7 @@
 		<link>
 			<name>java</name>
 			<type>2</type>
-			<location>../unotest/source/java</location>
+			<locationURI>unotest/source/java</locationURI>
 		</link>
 		<link>
 			<name>unotools</name>
@@ -26,4 +26,15 @@
 			<locationURI>unotest/source/java</locationURI>
 		</link>
 	</linkedResources>
+	<filteredResources>
+		<filter>
+			<id>1678396738730</id>
+			<name></name>
+			<type>30</type>
+			<matcher>
+				<id>org.eclipse.core.resources.regexFilterMatcher</id>
+				<arguments>node_modules|\.git|__CREATED_BY_JAVA_LANGUAGE_SERVER__</arguments>
+			</matcher>
+		</filter>
+	</filteredResources>
 </projectDescription>
diff --git a/qadevOOo/bin/base/TestBase.class b/qadevOOo/bin/base/TestBase.class
new file mode 100644
index 000000000000..52f333b30781
Binary files /dev/null and b/qadevOOo/bin/base/TestBase.class differ
diff --git a/qadevOOo/bin/base/java_complex.class b/qadevOOo/bin/base/java_complex.class
new file mode 100644
index 000000000000..4e2dba126d0a
Binary files /dev/null and b/qadevOOo/bin/base/java_complex.class differ
diff --git a/qadevOOo/bin/base/java_fat.class b/qadevOOo/bin/base/java_fat.class
new file mode 100644
index 000000000000..82e5e79d9166
Binary files /dev/null and b/qadevOOo/bin/base/java_fat.class differ
diff --git a/qadevOOo/bin/base/java_fat_service.class b/qadevOOo/bin/base/java_fat_service.class
new file mode 100644
index 000000000000..c5ff6e9d4957
Binary files /dev/null and b/qadevOOo/bin/base/java_fat_service.class differ
diff --git a/qadevOOo/bin/com/sun/star/cmp/MyPersistObject$MyPropertySetInfo.class b/qadevOOo/bin/com/sun/star/cmp/MyPersistObject$MyPropertySetInfo.class
new file mode 100644
index 000000000000..28bc00b89388
Binary files /dev/null and b/qadevOOo/bin/com/sun/star/cmp/MyPersistObject$MyPropertySetInfo.class differ
diff --git a/qadevOOo/bin/com/sun/star/cmp/MyPersistObject.class b/qadevOOo/bin/com/sun/star/cmp/MyPersistObject.class
new file mode 100644
index 000000000000..3f3eb153630d
Binary files /dev/null and b/qadevOOo/bin/com/sun/star/cmp/MyPersistObject.class differ
diff --git a/qadevOOo/bin/com/sun/star/cmp/makefile.mk b/qadevOOo/bin/com/sun/star/cmp/makefile.mk
new file mode 100644
index 000000000000..761a9bbcab39
--- /dev/null
+++ b/qadevOOo/bin/com/sun/star/cmp/makefile.mk
@@ -0,0 +1,55 @@
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+# This file incorporates work covered by the following license notice:
+#
+#   Licensed to the Apache Software Foundation (ASF) under one or more
+#   contributor license agreements. See the NOTICE file distributed
+#   with this work for additional information regarding copyright
+#   ownership. The ASF licenses this file to you under the Apache
+#   License, Version 2.0 (the "License"); you may not use this file
+#   except in compliance with the License. You may obtain a copy of
+#   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+#
+
+PRJ = ..$/..$/..$/..$/..$/..$/..
+PRJNAME = MyPersistObjectImpl
+TARGET  = MyPersistObjectImpl
+PACKAGE = com$/sun$/star$/cmp
+
+# --- Settings -----------------------------------------------------
+.INCLUDE: settings.mk
+
+#----- compile .java files -----------------------------------------
+
+JARFILES        = ridl.jar unoil.jar jurt.jar juh.jar java_uno.jar
+JAVAFILES       = MyPersistObject.java
+JAVACLASSFILES  = $(CLASSDIR)$/$(PACKAGE)$/MyPersistObject.class
+
+#----- make a jar from compiled files ------------------------------
+
+MAXLINELENGTH = 100000
+
+JARCLASSDIRS    = com/sun/star/cmp
+JARTARGET       = $(TARGET).jar
+JARCOMPRESS 	= TRUE
+CUSTOMMANIFESTFILE = manifest
+
+
+# --- Files --------------------------------------------------------
+
+# --- Targets ------------------------------------------------------
+
+.IF "$(depend)" == ""
+ALL : \
+    ALLTAR
+.ELSE
+ALL: 	ALLDEP
+.ENDIF
+
+.INCLUDE :  target.mk
+
diff --git a/qadevOOo/bin/com/sun/star/cmp/manifest b/qadevOOo/bin/com/sun/star/cmp/manifest
new file mode 100644
index 000000000000..e52cdc9f716b
--- /dev/null
+++ b/qadevOOo/bin/com/sun/star/cmp/manifest
@@ -0,0 +1 @@
+RegistrationClassName: com.sun.star.cmp.MyPersistObject
diff --git a/qadevOOo/bin/complexlib/Assurance$AssureException.class b/qadevOOo/bin/complexlib/Assurance$AssureException.class
new file mode 100644
index 000000000000..946f65e673d4
Binary files /dev/null and b/qadevOOo/bin/complexlib/Assurance$AssureException.class differ
diff --git a/qadevOOo/bin/complexlib/Assurance$ContinueWithTest.class b/qadevOOo/bin/complexlib/Assurance$ContinueWithTest.class
new file mode 100644
index 000000000000..67447bb36b6b
Binary files /dev/null and b/qadevOOo/bin/complexlib/Assurance$ContinueWithTest.class differ
diff --git a/qadevOOo/bin/complexlib/Assurance.class b/qadevOOo/bin/complexlib/Assurance.class
new file mode 100644
index 000000000000..c9c52fee7e83
Binary files /dev/null and b/qadevOOo/bin/complexlib/Assurance.class differ
diff --git a/qadevOOo/bin/complexlib/ComplexTestCase.class b/qadevOOo/bin/complexlib/ComplexTestCase.class
new file mode 100644
index 000000000000..2fdddb7a9481
Binary files /dev/null and b/qadevOOo/bin/complexlib/ComplexTestCase.class differ
diff --git a/qadevOOo/bin/complexlib/MethodThread.class b/qadevOOo/bin/complexlib/MethodThread.class
new file mode 100644
index 000000000000..cb4116ca7a8f
Binary files /dev/null and b/qadevOOo/bin/complexlib/MethodThread.class differ
diff --git a/qadevOOo/bin/complexlib/ShowTargets.class b/qadevOOo/bin/complexlib/ShowTargets.class
new file mode 100644
index 000000000000..362667e045e5
Binary files /dev/null and b/qadevOOo/bin/complexlib/ShowTargets.class differ
diff --git a/qadevOOo/bin/convwatch/DB.class b/qadevOOo/bin/convwatch/DB.class
new file mode 100644
index 000000000000..57d309458de3
Binary files /dev/null and b/qadevOOo/bin/convwatch/DB.class differ
diff --git a/qadevOOo/bin/convwatch/DBHelper.class b/qadevOOo/bin/convwatch/DBHelper.class
new file mode 100644
index 000000000000..e28c70114a86
Binary files /dev/null and b/qadevOOo/bin/convwatch/DBHelper.class differ
diff --git a/qadevOOo/bin/convwatch/GlobalLogWriter.class b/qadevOOo/bin/convwatch/GlobalLogWriter.class
new file mode 100644
index 000000000000..8e5eac76c2f2
Binary files /dev/null and b/qadevOOo/bin/convwatch/GlobalLogWriter.class differ
diff --git a/qadevOOo/bin/convwatch/MySQLThread.class b/qadevOOo/bin/convwatch/MySQLThread.class
new file mode 100644
index 000000000000..9b8634d2fd05
Binary files /dev/null and b/qadevOOo/bin/convwatch/MySQLThread.class differ
diff --git a/qadevOOo/bin/convwatch/ShareConnection.class b/qadevOOo/bin/convwatch/ShareConnection.class
new file mode 100644
index 000000000000..424ffc0d5176
Binary files /dev/null and b/qadevOOo/bin/convwatch/ShareConnection.class differ
diff --git a/qadevOOo/bin/graphical/FileHelper.class b/qadevOOo/bin/graphical/FileHelper.class
new file mode 100644
index 000000000000..ede6241fff91
Binary files /dev/null and b/qadevOOo/bin/graphical/FileHelper.class differ
diff --git a/qadevOOo/bin/helper/APIDescGetter.class b/qadevOOo/bin/helper/APIDescGetter.class
new file mode 100644
index 000000000000..84bf01d7281d
Binary files /dev/null and b/qadevOOo/bin/helper/APIDescGetter.class differ
diff --git a/qadevOOo/bin/helper/AppProvider.class b/qadevOOo/bin/helper/AppProvider.class
new file mode 100644
index 000000000000..2a0214cec0d3
Binary files /dev/null and b/qadevOOo/bin/helper/AppProvider.class differ
diff --git a/qadevOOo/bin/helper/CfgParser.class b/qadevOOo/bin/helper/CfgParser.class
new file mode 100644
index 000000000000..44535e8a3abb
Binary files /dev/null and b/qadevOOo/bin/helper/CfgParser.class differ
diff --git a/qadevOOo/bin/helper/ClParser.class b/qadevOOo/bin/helper/ClParser.class
new file mode 100644
index 000000000000..27849153e457
Binary files /dev/null and b/qadevOOo/bin/helper/ClParser.class differ
diff --git a/qadevOOo/bin/helper/ComplexDescGetter.class b/qadevOOo/bin/helper/ComplexDescGetter.class
new file mode 100644
index 000000000000..1406c802cc00
Binary files /dev/null and b/qadevOOo/bin/helper/ComplexDescGetter.class differ
diff --git a/qadevOOo/bin/helper/ConfigHelper.class b/qadevOOo/bin/helper/ConfigHelper.class
new file mode 100644
index 000000000000..78ccbf9de8f4
Binary files /dev/null and b/qadevOOo/bin/helper/ConfigHelper.class differ
diff --git a/qadevOOo/bin/helper/ConfigurationRead.class b/qadevOOo/bin/helper/ConfigurationRead.class
new file mode 100644
index 000000000000..69328fc9ed27
Binary files /dev/null and b/qadevOOo/bin/helper/ConfigurationRead.class differ
diff --git a/qadevOOo/bin/helper/ContextMenuInterceptor.class b/qadevOOo/bin/helper/ContextMenuInterceptor.class
new file mode 100644
index 000000000000..b0b186f52d1c
Binary files /dev/null and b/qadevOOo/bin/helper/ContextMenuInterceptor.class differ
diff --git a/qadevOOo/bin/helper/FileTools.class b/qadevOOo/bin/helper/FileTools.class
new file mode 100644
index 000000000000..6cb922df6b80
Binary files /dev/null and b/qadevOOo/bin/helper/FileTools.class differ
diff --git a/qadevOOo/bin/helper/LoggingThread.class b/qadevOOo/bin/helper/LoggingThread.class
new file mode 100644
index 000000000000..d8f5f2a1cad1
Binary files /dev/null and b/qadevOOo/bin/helper/LoggingThread.class differ
diff --git a/qadevOOo/bin/helper/OSHelper.class b/qadevOOo/bin/helper/OSHelper.class
new file mode 100644
index 000000000000..456a6ce8b2dd
Binary files /dev/null and b/qadevOOo/bin/helper/OSHelper.class differ
diff --git a/qadevOOo/bin/helper/OfficeProvider$OfficeWatcherPing.class b/qadevOOo/bin/helper/OfficeProvider$OfficeWatcherPing.class
new file mode 100644
index 000000000000..0253da6b4ac1
Binary files /dev/null and b/qadevOOo/bin/helper/OfficeProvider$OfficeWatcherPing.class differ
diff --git a/qadevOOo/bin/helper/OfficeProvider.class b/qadevOOo/bin/helper/OfficeProvider.class
new file mode 100644
index 000000000000..5ac5b1917b35
Binary files /dev/null and b/qadevOOo/bin/helper/OfficeProvider.class differ
diff --git a/qadevOOo/bin/helper/OfficeWatcher.class b/qadevOOo/bin/helper/OfficeWatcher.class
new file mode 100644
index 000000000000..8791d33d2784
Binary files /dev/null and b/qadevOOo/bin/helper/OfficeWatcher.class differ
diff --git a/qadevOOo/bin/helper/ProcessHandler.class b/qadevOOo/bin/helper/ProcessHandler.class
new file mode 100644
index 000000000000..31c0e31f32cc
Binary files /dev/null and b/qadevOOo/bin/helper/ProcessHandler.class differ
diff --git a/qadevOOo/bin/helper/PropertyHandlerFactroy.class b/qadevOOo/bin/helper/PropertyHandlerFactroy.class
new file mode 100644
index 000000000000..adf826a55e81
Binary files /dev/null and b/qadevOOo/bin/helper/PropertyHandlerFactroy.class differ
diff --git a/qadevOOo/bin/helper/PropertyHandlerImpl.class b/qadevOOo/bin/helper/PropertyHandlerImpl.class
new file mode 100644
index 000000000000..cfc1be3af165
Binary files /dev/null and b/qadevOOo/bin/helper/PropertyHandlerImpl.class differ
diff --git a/qadevOOo/bin/helper/Pump.class b/qadevOOo/bin/helper/Pump.class
new file mode 100644
index 000000000000..eb6a0d15d305
Binary files /dev/null and b/qadevOOo/bin/helper/Pump.class differ
diff --git a/qadevOOo/bin/helper/StreamSimulator.class b/qadevOOo/bin/helper/StreamSimulator.class
new file mode 100644
index 000000000000..e42c8481eabb
Binary files /dev/null and b/qadevOOo/bin/helper/StreamSimulator.class differ
diff --git a/qadevOOo/bin/helper/StringHelper.class b/qadevOOo/bin/helper/StringHelper.class
new file mode 100644
index 000000000000..923000253455
Binary files /dev/null and b/qadevOOo/bin/helper/StringHelper.class differ
diff --git a/qadevOOo/bin/helper/URLHelper.class b/qadevOOo/bin/helper/URLHelper.class
new file mode 100644
index 000000000000..6e1ef368192d
Binary files /dev/null and b/qadevOOo/bin/helper/URLHelper.class differ
diff --git a/qadevOOo/bin/helper/UnoProvider.class b/qadevOOo/bin/helper/UnoProvider.class
new file mode 100644
index 000000000000..61943456c34c
Binary files /dev/null and b/qadevOOo/bin/helper/UnoProvider.class differ
diff --git a/qadevOOo/bin/ifc/accessibility/_XAccessible.class b/qadevOOo/bin/ifc/accessibility/_XAccessible.class
new file mode 100644
index 000000000000..9e76d7ecd64a
Binary files /dev/null and b/qadevOOo/bin/ifc/accessibility/_XAccessible.class differ
diff --git a/qadevOOo/bin/ifc/accessibility/_XAccessibleAction.class b/qadevOOo/bin/ifc/accessibility/_XAccessibleAction.class
new file mode 100644
index 000000000000..1b207b9c871d
Binary files /dev/null and b/qadevOOo/bin/ifc/accessibility/_XAccessibleAction.class differ
diff --git a/qadevOOo/bin/ifc/accessibility/_XAccessibleComponent.class b/qadevOOo/bin/ifc/accessibility/_XAccessibleComponent.class
new file mode 100644
index 000000000000..70afbeb138bc
Binary files /dev/null and b/qadevOOo/bin/ifc/accessibility/_XAccessibleComponent.class differ
diff --git a/qadevOOo/bin/ifc/accessibility/_XAccessibleContext.class b/qadevOOo/bin/ifc/accessibility/_XAccessibleContext.class
new file mode 100644
index 000000000000..e76e609703d8
Binary files /dev/null and b/qadevOOo/bin/ifc/accessibility/_XAccessibleContext.class differ
diff --git a/qadevOOo/bin/ifc/accessibility/_XAccessibleEditableText.class b/qadevOOo/bin/ifc/accessibility/_XAccessibleEditableText.class
new file mode 100644
index 000000000000..569559dc7a71
Binary files /dev/null and b/qadevOOo/bin/ifc/accessibility/_XAccessibleEditableText.class differ
diff --git a/qadevOOo/bin/ifc/accessibility/_XAccessibleEventBroadcaster$EvListener.class b/qadevOOo/bin/ifc/accessibility/_XAccessibleEventBroadcaster$EvListener.class
new file mode 100644
index 000000000000..6c8cdfbb3abc
Binary files /dev/null and b/qadevOOo/bin/ifc/accessibility/_XAccessibleEventBroadcaster$EvListener.class differ
diff --git a/qadevOOo/bin/ifc/accessibility/_XAccessibleEventBroadcaster$EventProducer.class b/qadevOOo/bin/ifc/accessibility/_XAccessibleEventBroadcaster$EventProducer.class
new file mode 100644
index 000000000000..84784746cc64
Binary files /dev/null and b/qadevOOo/bin/ifc/accessibility/_XAccessibleEventBroadcaster$EventProducer.class differ
diff --git a/qadevOOo/bin/ifc/accessibility/_XAccessibleEventBroadcaster.class b/qadevOOo/bin/ifc/accessibility/_XAccessibleEventBroadcaster.class
new file mode 100644
index 000000000000..e1ae326b4fd9
Binary files /dev/null and b/qadevOOo/bin/ifc/accessibility/_XAccessibleEventBroadcaster.class differ
diff --git a/qadevOOo/bin/ifc/accessibility/_XAccessibleExtendedComponent.class b/qadevOOo/bin/ifc/accessibility/_XAccessibleExtendedComponent.class
new file mode 100644
index 000000000000..d5f71d4a8dac
Binary files /dev/null and b/qadevOOo/bin/ifc/accessibility/_XAccessibleExtendedComponent.class differ
diff --git a/qadevOOo/bin/ifc/accessibility/_XAccessibleImage.class b/qadevOOo/bin/ifc/accessibility/_XAccessibleImage.class
new file mode 100644
index 000000000000..470061949035
Binary files /dev/null and b/qadevOOo/bin/ifc/accessibility/_XAccessibleImage.class differ
diff --git a/qadevOOo/bin/ifc/accessibility/_XAccessibleSelection.class b/qadevOOo/bin/ifc/accessibility/_XAccessibleSelection.class
new file mode 100644
index 000000000000..20e17361d910
Binary files /dev/null and b/qadevOOo/bin/ifc/accessibility/_XAccessibleSelection.class differ
diff --git a/qadevOOo/bin/ifc/accessibility/_XAccessibleTable.class b/qadevOOo/bin/ifc/accessibility/_XAccessibleTable.class
new file mode 100644
index 000000000000..24b95ddea938
Binary files /dev/null and b/qadevOOo/bin/ifc/accessibility/_XAccessibleTable.class differ
diff --git a/qadevOOo/bin/ifc/accessibility/_XAccessibleText.class b/qadevOOo/bin/ifc/accessibility/_XAccessibleText.class
new file mode 100644
index 000000000000..8080d9bd7c9d
Binary files /dev/null and b/qadevOOo/bin/ifc/accessibility/_XAccessibleText.class differ
diff --git a/qadevOOo/bin/ifc/accessibility/_XAccessibleValue.class b/qadevOOo/bin/ifc/accessibility/_XAccessibleValue.class
new file mode 100644
index 000000000000..42a8a244b4ae
Binary files /dev/null and b/qadevOOo/bin/ifc/accessibility/_XAccessibleValue.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlButtonModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlButtonModel$1.class
new file mode 100644
index 000000000000..afc561cd980d
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlButtonModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlButtonModel$2.class b/qadevOOo/bin/ifc/awt/_UnoControlButtonModel$2.class
new file mode 100644
index 000000000000..b7ad42c744dc
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlButtonModel$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlButtonModel.class b/qadevOOo/bin/ifc/awt/_UnoControlButtonModel.class
new file mode 100644
index 000000000000..6c159500b47a
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlButtonModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlCheckBoxModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlCheckBoxModel$1.class
new file mode 100644
index 000000000000..57c05c4cfb99
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlCheckBoxModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlCheckBoxModel$2.class b/qadevOOo/bin/ifc/awt/_UnoControlCheckBoxModel$2.class
new file mode 100644
index 000000000000..9665277cdd5d
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlCheckBoxModel$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlCheckBoxModel$3.class b/qadevOOo/bin/ifc/awt/_UnoControlCheckBoxModel$3.class
new file mode 100644
index 000000000000..b3a2a6d37874
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlCheckBoxModel$3.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlCheckBoxModel$4.class b/qadevOOo/bin/ifc/awt/_UnoControlCheckBoxModel$4.class
new file mode 100644
index 000000000000..f8e113467770
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlCheckBoxModel$4.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlCheckBoxModel.class b/qadevOOo/bin/ifc/awt/_UnoControlCheckBoxModel.class
new file mode 100644
index 000000000000..f1cbfa55e31f
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlCheckBoxModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlComboBoxModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlComboBoxModel$1.class
new file mode 100644
index 000000000000..f703ac28f55d
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlComboBoxModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlComboBoxModel$2.class b/qadevOOo/bin/ifc/awt/_UnoControlComboBoxModel$2.class
new file mode 100644
index 000000000000..45dae9578eb6
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlComboBoxModel$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlComboBoxModel$3.class b/qadevOOo/bin/ifc/awt/_UnoControlComboBoxModel$3.class
new file mode 100644
index 000000000000..bde93484f790
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlComboBoxModel$3.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlComboBoxModel$4.class b/qadevOOo/bin/ifc/awt/_UnoControlComboBoxModel$4.class
new file mode 100644
index 000000000000..33b19e025fcc
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlComboBoxModel$4.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlComboBoxModel$5.class b/qadevOOo/bin/ifc/awt/_UnoControlComboBoxModel$5.class
new file mode 100644
index 000000000000..b02dff685029
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlComboBoxModel$5.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlComboBoxModel.class b/qadevOOo/bin/ifc/awt/_UnoControlComboBoxModel.class
new file mode 100644
index 000000000000..ac465b93eb78
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlComboBoxModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlContainerModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlContainerModel$1.class
new file mode 100644
index 000000000000..f9b750979d90
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlContainerModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlContainerModel.class b/qadevOOo/bin/ifc/awt/_UnoControlContainerModel.class
new file mode 100644
index 000000000000..1089f21f49cd
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlContainerModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlCurrencyFieldModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlCurrencyFieldModel$1.class
new file mode 100644
index 000000000000..dd5a91e25b42
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlCurrencyFieldModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlCurrencyFieldModel$2.class b/qadevOOo/bin/ifc/awt/_UnoControlCurrencyFieldModel$2.class
new file mode 100644
index 000000000000..5e159bc82635
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlCurrencyFieldModel$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlCurrencyFieldModel$3.class b/qadevOOo/bin/ifc/awt/_UnoControlCurrencyFieldModel$3.class
new file mode 100644
index 000000000000..6c77167cc533
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlCurrencyFieldModel$3.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlCurrencyFieldModel$4.class b/qadevOOo/bin/ifc/awt/_UnoControlCurrencyFieldModel$4.class
new file mode 100644
index 000000000000..4468e310d299
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlCurrencyFieldModel$4.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlCurrencyFieldModel$5.class b/qadevOOo/bin/ifc/awt/_UnoControlCurrencyFieldModel$5.class
new file mode 100644
index 000000000000..efb16500c536
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlCurrencyFieldModel$5.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlCurrencyFieldModel$6.class b/qadevOOo/bin/ifc/awt/_UnoControlCurrencyFieldModel$6.class
new file mode 100644
index 000000000000..3b29d15b3ec0
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlCurrencyFieldModel$6.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlCurrencyFieldModel.class b/qadevOOo/bin/ifc/awt/_UnoControlCurrencyFieldModel.class
new file mode 100644
index 000000000000..afa008a070c5
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlCurrencyFieldModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlDateFieldModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlDateFieldModel$1.class
new file mode 100644
index 000000000000..1ad028d51bde
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlDateFieldModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlDateFieldModel$2.class b/qadevOOo/bin/ifc/awt/_UnoControlDateFieldModel$2.class
new file mode 100644
index 000000000000..8c7986975fd6
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlDateFieldModel$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlDateFieldModel$3.class b/qadevOOo/bin/ifc/awt/_UnoControlDateFieldModel$3.class
new file mode 100644
index 000000000000..7ff331730e9d
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlDateFieldModel$3.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlDateFieldModel$4.class b/qadevOOo/bin/ifc/awt/_UnoControlDateFieldModel$4.class
new file mode 100644
index 000000000000..3742e4aacb0c
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlDateFieldModel$4.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlDateFieldModel$5.class b/qadevOOo/bin/ifc/awt/_UnoControlDateFieldModel$5.class
new file mode 100644
index 000000000000..654b2ac362fa
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlDateFieldModel$5.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlDateFieldModel$6.class b/qadevOOo/bin/ifc/awt/_UnoControlDateFieldModel$6.class
new file mode 100644
index 000000000000..a2b5ced23be4
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlDateFieldModel$6.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlDateFieldModel.class b/qadevOOo/bin/ifc/awt/_UnoControlDateFieldModel.class
new file mode 100644
index 000000000000..acf4f6d0a386
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlDateFieldModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlDialogElement.class b/qadevOOo/bin/ifc/awt/_UnoControlDialogElement.class
new file mode 100644
index 000000000000..e61ab455b114
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlDialogElement.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlDialogModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlDialogModel$1.class
new file mode 100644
index 000000000000..611d3e64f547
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlDialogModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlDialogModel$2.class b/qadevOOo/bin/ifc/awt/_UnoControlDialogModel$2.class
new file mode 100644
index 000000000000..9093ff3e2e89
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlDialogModel$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlDialogModel$3.class b/qadevOOo/bin/ifc/awt/_UnoControlDialogModel$3.class
new file mode 100644
index 000000000000..800aca056ee9
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlDialogModel$3.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlDialogModel.class b/qadevOOo/bin/ifc/awt/_UnoControlDialogModel.class
new file mode 100644
index 000000000000..4b5485f847e4
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlDialogModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlEditModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlEditModel$1.class
new file mode 100644
index 000000000000..0787ffc8d43b
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlEditModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlEditModel$2.class b/qadevOOo/bin/ifc/awt/_UnoControlEditModel$2.class
new file mode 100644
index 000000000000..42b27109a4e2
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlEditModel$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlEditModel$3.class b/qadevOOo/bin/ifc/awt/_UnoControlEditModel$3.class
new file mode 100644
index 000000000000..c53eac5c831f
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlEditModel$3.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlEditModel$4.class b/qadevOOo/bin/ifc/awt/_UnoControlEditModel$4.class
new file mode 100644
index 000000000000..bcf84966ef8c
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlEditModel$4.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlEditModel$5.class b/qadevOOo/bin/ifc/awt/_UnoControlEditModel$5.class
new file mode 100644
index 000000000000..776747f81f70
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlEditModel$5.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlEditModel.class b/qadevOOo/bin/ifc/awt/_UnoControlEditModel.class
new file mode 100644
index 000000000000..b25bc99706aa
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlEditModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFileControlModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlFileControlModel$1.class
new file mode 100644
index 000000000000..89d70b320e5e
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFileControlModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFileControlModel$2.class b/qadevOOo/bin/ifc/awt/_UnoControlFileControlModel$2.class
new file mode 100644
index 000000000000..eaf4e9773991
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFileControlModel$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFileControlModel$3.class b/qadevOOo/bin/ifc/awt/_UnoControlFileControlModel$3.class
new file mode 100644
index 000000000000..e46506df26d0
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFileControlModel$3.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFileControlModel$4.class b/qadevOOo/bin/ifc/awt/_UnoControlFileControlModel$4.class
new file mode 100644
index 000000000000..bd249d05022f
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFileControlModel$4.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFileControlModel$5.class b/qadevOOo/bin/ifc/awt/_UnoControlFileControlModel$5.class
new file mode 100644
index 000000000000..b4861eea24ba
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFileControlModel$5.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFileControlModel.class b/qadevOOo/bin/ifc/awt/_UnoControlFileControlModel.class
new file mode 100644
index 000000000000..1e25112d28f0
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFileControlModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFixedLineModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlFixedLineModel$1.class
new file mode 100644
index 000000000000..6c93c3f3dfef
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFixedLineModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFixedLineModel$2.class b/qadevOOo/bin/ifc/awt/_UnoControlFixedLineModel$2.class
new file mode 100644
index 000000000000..6f48550d4771
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFixedLineModel$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFixedLineModel.class b/qadevOOo/bin/ifc/awt/_UnoControlFixedLineModel.class
new file mode 100644
index 000000000000..b2a5a6d38230
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFixedLineModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFixedTextModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlFixedTextModel$1.class
new file mode 100644
index 000000000000..f9e010d3ebfd
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFixedTextModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFixedTextModel$2.class b/qadevOOo/bin/ifc/awt/_UnoControlFixedTextModel$2.class
new file mode 100644
index 000000000000..cb8e8d15781c
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFixedTextModel$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFixedTextModel$3.class b/qadevOOo/bin/ifc/awt/_UnoControlFixedTextModel$3.class
new file mode 100644
index 000000000000..2cc63ba07843
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFixedTextModel$3.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFixedTextModel$4.class b/qadevOOo/bin/ifc/awt/_UnoControlFixedTextModel$4.class
new file mode 100644
index 000000000000..599e0d964998
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFixedTextModel$4.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFixedTextModel.class b/qadevOOo/bin/ifc/awt/_UnoControlFixedTextModel.class
new file mode 100644
index 000000000000..ccc58e7a793b
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFixedTextModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$1.class
new file mode 100644
index 000000000000..eb9ea90bd5dc
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$10.class b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$10.class
new file mode 100644
index 000000000000..3aad667bc714
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$10.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$11.class b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$11.class
new file mode 100644
index 000000000000..56f84625c84f
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$11.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$12.class b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$12.class
new file mode 100644
index 000000000000..ccfc725cf76b
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$12.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$2.class b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$2.class
new file mode 100644
index 000000000000..0049de9deff8
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$3.class b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$3.class
new file mode 100644
index 000000000000..4dadef021c7d
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$3.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$4.class b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$4.class
new file mode 100644
index 000000000000..57b9559e4b8e
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$4.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$5.class b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$5.class
new file mode 100644
index 000000000000..cc1096163aca
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$5.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$6.class b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$6.class
new file mode 100644
index 000000000000..2ab8ac7ae682
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$6.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$7.class b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$7.class
new file mode 100644
index 000000000000..bb895e02652f
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$7.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$8.class b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$8.class
new file mode 100644
index 000000000000..194acad71d22
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$8.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$9.class b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$9.class
new file mode 100644
index 000000000000..37d5412e43e1
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel$9.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel.class b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel.class
new file mode 100644
index 000000000000..24577b33ac88
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlFormattedFieldModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlGroupBoxModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlGroupBoxModel$1.class
new file mode 100644
index 000000000000..615b389fa13c
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlGroupBoxModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlGroupBoxModel$2.class b/qadevOOo/bin/ifc/awt/_UnoControlGroupBoxModel$2.class
new file mode 100644
index 000000000000..7f3aa39552f8
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlGroupBoxModel$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlGroupBoxModel.class b/qadevOOo/bin/ifc/awt/_UnoControlGroupBoxModel.class
new file mode 100644
index 000000000000..a3402859fc91
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlGroupBoxModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlImageControlModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlImageControlModel$1.class
new file mode 100644
index 000000000000..546c1901e144
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlImageControlModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlImageControlModel$2.class b/qadevOOo/bin/ifc/awt/_UnoControlImageControlModel$2.class
new file mode 100644
index 000000000000..8fb2eef40ea6
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlImageControlModel$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlImageControlModel$3.class b/qadevOOo/bin/ifc/awt/_UnoControlImageControlModel$3.class
new file mode 100644
index 000000000000..ae0156e6ec7c
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlImageControlModel$3.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlImageControlModel$4.class b/qadevOOo/bin/ifc/awt/_UnoControlImageControlModel$4.class
new file mode 100644
index 000000000000..000fa183faed
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlImageControlModel$4.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlImageControlModel.class b/qadevOOo/bin/ifc/awt/_UnoControlImageControlModel.class
new file mode 100644
index 000000000000..f7cf7925d548
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlImageControlModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlListBoxModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlListBoxModel$1.class
new file mode 100644
index 000000000000..0330d4a159b5
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlListBoxModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlListBoxModel$2.class b/qadevOOo/bin/ifc/awt/_UnoControlListBoxModel$2.class
new file mode 100644
index 000000000000..eafd7618d016
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlListBoxModel$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlListBoxModel$3.class b/qadevOOo/bin/ifc/awt/_UnoControlListBoxModel$3.class
new file mode 100644
index 000000000000..d63ff14a7a73
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlListBoxModel$3.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlListBoxModel$4.class b/qadevOOo/bin/ifc/awt/_UnoControlListBoxModel$4.class
new file mode 100644
index 000000000000..175184385043
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlListBoxModel$4.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlListBoxModel$5.class b/qadevOOo/bin/ifc/awt/_UnoControlListBoxModel$5.class
new file mode 100644
index 000000000000..c575480da70e
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlListBoxModel$5.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlListBoxModel.class b/qadevOOo/bin/ifc/awt/_UnoControlListBoxModel.class
new file mode 100644
index 000000000000..79d496690b39
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlListBoxModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlModel.class b/qadevOOo/bin/ifc/awt/_UnoControlModel.class
new file mode 100644
index 000000000000..0af763e3dfa8
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlNumericFieldModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlNumericFieldModel$1.class
new file mode 100644
index 000000000000..7304b49b32a4
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlNumericFieldModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlNumericFieldModel$2.class b/qadevOOo/bin/ifc/awt/_UnoControlNumericFieldModel$2.class
new file mode 100644
index 000000000000..cc75dc582cb0
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlNumericFieldModel$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlNumericFieldModel$3.class b/qadevOOo/bin/ifc/awt/_UnoControlNumericFieldModel$3.class
new file mode 100644
index 000000000000..ec0285388151
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlNumericFieldModel$3.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlNumericFieldModel$4.class b/qadevOOo/bin/ifc/awt/_UnoControlNumericFieldModel$4.class
new file mode 100644
index 000000000000..531a1c16ecdb
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlNumericFieldModel$4.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlNumericFieldModel$5.class b/qadevOOo/bin/ifc/awt/_UnoControlNumericFieldModel$5.class
new file mode 100644
index 000000000000..eb19de2d0768
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlNumericFieldModel$5.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlNumericFieldModel$6.class b/qadevOOo/bin/ifc/awt/_UnoControlNumericFieldModel$6.class
new file mode 100644
index 000000000000..41b54d533a5c
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlNumericFieldModel$6.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlNumericFieldModel.class b/qadevOOo/bin/ifc/awt/_UnoControlNumericFieldModel.class
new file mode 100644
index 000000000000..8bc7bbb1c592
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlNumericFieldModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlPatternFieldModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlPatternFieldModel$1.class
new file mode 100644
index 000000000000..5333147fea95
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlPatternFieldModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlPatternFieldModel$2.class b/qadevOOo/bin/ifc/awt/_UnoControlPatternFieldModel$2.class
new file mode 100644
index 000000000000..7580b8438f8a
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlPatternFieldModel$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlPatternFieldModel$3.class b/qadevOOo/bin/ifc/awt/_UnoControlPatternFieldModel$3.class
new file mode 100644
index 000000000000..c34016a965e3
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlPatternFieldModel$3.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlPatternFieldModel$4.class b/qadevOOo/bin/ifc/awt/_UnoControlPatternFieldModel$4.class
new file mode 100644
index 000000000000..1f8c71bd6686
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlPatternFieldModel$4.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlPatternFieldModel$5.class b/qadevOOo/bin/ifc/awt/_UnoControlPatternFieldModel$5.class
new file mode 100644
index 000000000000..2e40d5356905
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlPatternFieldModel$5.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlPatternFieldModel.class b/qadevOOo/bin/ifc/awt/_UnoControlPatternFieldModel.class
new file mode 100644
index 000000000000..7557bb17c194
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlPatternFieldModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlProgressBarModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlProgressBarModel$1.class
new file mode 100644
index 000000000000..b73445d60494
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlProgressBarModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlProgressBarModel$2.class b/qadevOOo/bin/ifc/awt/_UnoControlProgressBarModel$2.class
new file mode 100644
index 000000000000..066035292697
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlProgressBarModel$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlProgressBarModel$3.class b/qadevOOo/bin/ifc/awt/_UnoControlProgressBarModel$3.class
new file mode 100644
index 000000000000..4783f4b714d8
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlProgressBarModel$3.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlProgressBarModel.class b/qadevOOo/bin/ifc/awt/_UnoControlProgressBarModel.class
new file mode 100644
index 000000000000..8035ba941014
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlProgressBarModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlRadioButtonModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlRadioButtonModel$1.class
new file mode 100644
index 000000000000..3996bbcad971
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlRadioButtonModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlRadioButtonModel$2.class b/qadevOOo/bin/ifc/awt/_UnoControlRadioButtonModel$2.class
new file mode 100644
index 000000000000..5b864f254d37
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlRadioButtonModel$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlRadioButtonModel$3.class b/qadevOOo/bin/ifc/awt/_UnoControlRadioButtonModel$3.class
new file mode 100644
index 000000000000..47d27e688be4
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlRadioButtonModel$3.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlRadioButtonModel$4.class b/qadevOOo/bin/ifc/awt/_UnoControlRadioButtonModel$4.class
new file mode 100644
index 000000000000..3812330c9d96
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlRadioButtonModel$4.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlRadioButtonModel.class b/qadevOOo/bin/ifc/awt/_UnoControlRadioButtonModel.class
new file mode 100644
index 000000000000..ea3fdeb7579f
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlRadioButtonModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlScrollBarModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlScrollBarModel$1.class
new file mode 100644
index 000000000000..0b3efeb818ca
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlScrollBarModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlScrollBarModel$2.class b/qadevOOo/bin/ifc/awt/_UnoControlScrollBarModel$2.class
new file mode 100644
index 000000000000..52390d62b2a9
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlScrollBarModel$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlScrollBarModel$3.class b/qadevOOo/bin/ifc/awt/_UnoControlScrollBarModel$3.class
new file mode 100644
index 000000000000..416e319460d1
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlScrollBarModel$3.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlScrollBarModel$4.class b/qadevOOo/bin/ifc/awt/_UnoControlScrollBarModel$4.class
new file mode 100644
index 000000000000..f97fb2f56df0
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlScrollBarModel$4.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlScrollBarModel$5.class b/qadevOOo/bin/ifc/awt/_UnoControlScrollBarModel$5.class
new file mode 100644
index 000000000000..4fd1729c6d31
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlScrollBarModel$5.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlScrollBarModel.class b/qadevOOo/bin/ifc/awt/_UnoControlScrollBarModel.class
new file mode 100644
index 000000000000..1e82202134f4
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlScrollBarModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlSpinButtonModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlSpinButtonModel$1.class
new file mode 100644
index 000000000000..da2dc8ba95bb
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlSpinButtonModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlSpinButtonModel$2.class b/qadevOOo/bin/ifc/awt/_UnoControlSpinButtonModel$2.class
new file mode 100644
index 000000000000..68a83a0661cd
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlSpinButtonModel$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlSpinButtonModel$3.class b/qadevOOo/bin/ifc/awt/_UnoControlSpinButtonModel$3.class
new file mode 100644
index 000000000000..d1253323e889
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlSpinButtonModel$3.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlSpinButtonModel.class b/qadevOOo/bin/ifc/awt/_UnoControlSpinButtonModel.class
new file mode 100644
index 000000000000..ae1192b7f3f4
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlSpinButtonModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlTimeFieldModel$1.class b/qadevOOo/bin/ifc/awt/_UnoControlTimeFieldModel$1.class
new file mode 100644
index 000000000000..1529e7b14dd7
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlTimeFieldModel$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlTimeFieldModel$2.class b/qadevOOo/bin/ifc/awt/_UnoControlTimeFieldModel$2.class
new file mode 100644
index 000000000000..9237026b1439
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlTimeFieldModel$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlTimeFieldModel$3.class b/qadevOOo/bin/ifc/awt/_UnoControlTimeFieldModel$3.class
new file mode 100644
index 000000000000..372ebe6089aa
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlTimeFieldModel$3.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlTimeFieldModel$4.class b/qadevOOo/bin/ifc/awt/_UnoControlTimeFieldModel$4.class
new file mode 100644
index 000000000000..e14cc018de17
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlTimeFieldModel$4.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlTimeFieldModel$5.class b/qadevOOo/bin/ifc/awt/_UnoControlTimeFieldModel$5.class
new file mode 100644
index 000000000000..23aacc7d29ed
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlTimeFieldModel$5.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlTimeFieldModel$6.class b/qadevOOo/bin/ifc/awt/_UnoControlTimeFieldModel$6.class
new file mode 100644
index 000000000000..3b8bd51ecf68
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlTimeFieldModel$6.class differ
diff --git a/qadevOOo/bin/ifc/awt/_UnoControlTimeFieldModel.class b/qadevOOo/bin/ifc/awt/_UnoControlTimeFieldModel.class
new file mode 100644
index 000000000000..d3529fa5fa26
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_UnoControlTimeFieldModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XButton$TestActionListener.class b/qadevOOo/bin/ifc/awt/_XButton$TestActionListener.class
new file mode 100644
index 000000000000..e4b4384e4991
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XButton$TestActionListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XButton.class b/qadevOOo/bin/ifc/awt/_XButton.class
new file mode 100644
index 000000000000..c2742e49f642
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XButton.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XCheckBox$TestItemListener.class b/qadevOOo/bin/ifc/awt/_XCheckBox$TestItemListener.class
new file mode 100644
index 000000000000..8b71f3c85206
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XCheckBox$TestItemListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XCheckBox.class b/qadevOOo/bin/ifc/awt/_XCheckBox.class
new file mode 100644
index 000000000000..ac9bf8c3f59b
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XCheckBox.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XComboBox$TestActionListener.class b/qadevOOo/bin/ifc/awt/_XComboBox$TestActionListener.class
new file mode 100644
index 000000000000..d18aa78f9259
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XComboBox$TestActionListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XComboBox$TestItemListener.class b/qadevOOo/bin/ifc/awt/_XComboBox$TestItemListener.class
new file mode 100644
index 000000000000..582b0b5eb7e3
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XComboBox$TestItemListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XComboBox.class b/qadevOOo/bin/ifc/awt/_XComboBox.class
new file mode 100644
index 000000000000..200bdc3d2f79
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XComboBox.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XControl.class b/qadevOOo/bin/ifc/awt/_XControl.class
new file mode 100644
index 000000000000..552a09565ce1
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XControl.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XControlContainer.class b/qadevOOo/bin/ifc/awt/_XControlContainer.class
new file mode 100644
index 000000000000..ee97946510dc
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XControlContainer.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XCurrencyField.class b/qadevOOo/bin/ifc/awt/_XCurrencyField.class
new file mode 100644
index 000000000000..1dc2ba5aa33a
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XCurrencyField.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XDataTransferProviderAccess.class b/qadevOOo/bin/ifc/awt/_XDataTransferProviderAccess.class
new file mode 100644
index 000000000000..4e339865437f
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XDataTransferProviderAccess.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XDateField.class b/qadevOOo/bin/ifc/awt/_XDateField.class
new file mode 100644
index 000000000000..ba630e85eb1a
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XDateField.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XDialog$1.class b/qadevOOo/bin/ifc/awt/_XDialog$1.class
new file mode 100644
index 000000000000..b4637e3e5a71
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XDialog$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XDialog.class b/qadevOOo/bin/ifc/awt/_XDialog.class
new file mode 100644
index 000000000000..c8e788eb46c4
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XDialog.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XFixedText.class b/qadevOOo/bin/ifc/awt/_XFixedText.class
new file mode 100644
index 000000000000..4a3884e8784f
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XFixedText.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XImageConsumer.class b/qadevOOo/bin/ifc/awt/_XImageConsumer.class
new file mode 100644
index 000000000000..2a377693b805
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XImageConsumer.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XImageProducer$TestImageConsumer.class b/qadevOOo/bin/ifc/awt/_XImageProducer$TestImageConsumer.class
new file mode 100644
index 000000000000..367cbd8d324d
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XImageProducer$TestImageConsumer.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XImageProducer.class b/qadevOOo/bin/ifc/awt/_XImageProducer.class
new file mode 100644
index 000000000000..c28ba794849c
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XImageProducer.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XItemListener$TestItemListener.class b/qadevOOo/bin/ifc/awt/_XItemListener$TestItemListener.class
new file mode 100644
index 000000000000..8a2aca26c05b
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XItemListener$TestItemListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XItemListener.class b/qadevOOo/bin/ifc/awt/_XItemListener.class
new file mode 100644
index 000000000000..ce046f56872c
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XItemListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XLayoutConstrains.class b/qadevOOo/bin/ifc/awt/_XLayoutConstrains.class
new file mode 100644
index 000000000000..a477863f1ced
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XLayoutConstrains.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XListBox$TestActionListener.class b/qadevOOo/bin/ifc/awt/_XListBox$TestActionListener.class
new file mode 100644
index 000000000000..606bc751b0a9
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XListBox$TestActionListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XListBox$TestItemListener.class b/qadevOOo/bin/ifc/awt/_XListBox$TestItemListener.class
new file mode 100644
index 000000000000..8eaa10a06133
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XListBox$TestItemListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XListBox.class b/qadevOOo/bin/ifc/awt/_XListBox.class
new file mode 100644
index 000000000000..55f708394741
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XListBox.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XMessageBoxFactory$1.class b/qadevOOo/bin/ifc/awt/_XMessageBoxFactory$1.class
new file mode 100644
index 000000000000..dca4490c2350
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XMessageBoxFactory$1.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XMessageBoxFactory$2.class b/qadevOOo/bin/ifc/awt/_XMessageBoxFactory$2.class
new file mode 100644
index 000000000000..741a859bae16
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XMessageBoxFactory$2.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XMessageBoxFactory.class b/qadevOOo/bin/ifc/awt/_XMessageBoxFactory.class
new file mode 100644
index 000000000000..f0cf9ccdd29c
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XMessageBoxFactory.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XNumericField.class b/qadevOOo/bin/ifc/awt/_XNumericField.class
new file mode 100644
index 000000000000..b66a6fbe1b93
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XNumericField.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XPatternField.class b/qadevOOo/bin/ifc/awt/_XPatternField.class
new file mode 100644
index 000000000000..b6e9897348de
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XPatternField.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XRadioButton$TestItemListener.class b/qadevOOo/bin/ifc/awt/_XRadioButton$TestItemListener.class
new file mode 100644
index 000000000000..3d8e4ab170e5
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XRadioButton$TestItemListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XRadioButton.class b/qadevOOo/bin/ifc/awt/_XRadioButton.class
new file mode 100644
index 000000000000..ee7f5f9820c7
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XRadioButton.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XScrollBar$AdjustmentListener.class b/qadevOOo/bin/ifc/awt/_XScrollBar$AdjustmentListener.class
new file mode 100644
index 000000000000..287d333ed1b2
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XScrollBar$AdjustmentListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XScrollBar.class b/qadevOOo/bin/ifc/awt/_XScrollBar.class
new file mode 100644
index 000000000000..9f9846959336
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XScrollBar.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XSpinField$TestListener.class b/qadevOOo/bin/ifc/awt/_XSpinField$TestListener.class
new file mode 100644
index 000000000000..339d7093aa79
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XSpinField$TestListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XSpinField.class b/qadevOOo/bin/ifc/awt/_XSpinField.class
new file mode 100644
index 000000000000..3d141fcb1a0e
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XSpinField.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XSpinValue$AdjustmentListener.class b/qadevOOo/bin/ifc/awt/_XSpinValue$AdjustmentListener.class
new file mode 100644
index 000000000000..80a2519eea97
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XSpinValue$AdjustmentListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XSpinValue.class b/qadevOOo/bin/ifc/awt/_XSpinValue.class
new file mode 100644
index 000000000000..4abb9e482d97
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XSpinValue.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XSystemChildFactory.class b/qadevOOo/bin/ifc/awt/_XSystemChildFactory.class
new file mode 100644
index 000000000000..bedf2b4bbd14
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XSystemChildFactory.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XTabController.class b/qadevOOo/bin/ifc/awt/_XTabController.class
new file mode 100644
index 000000000000..036a35be6cad
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XTabController.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XTabControllerModel.class b/qadevOOo/bin/ifc/awt/_XTabControllerModel.class
new file mode 100644
index 000000000000..fd180b49d4b6
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XTabControllerModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XTextComponent$MyChangeListener.class b/qadevOOo/bin/ifc/awt/_XTextComponent$MyChangeListener.class
new file mode 100644
index 000000000000..6039cdca7707
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XTextComponent$MyChangeListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XTextComponent.class b/qadevOOo/bin/ifc/awt/_XTextComponent.class
new file mode 100644
index 000000000000..b974c94b4edc
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XTextComponent.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XTextLayoutConstrains.class b/qadevOOo/bin/ifc/awt/_XTextLayoutConstrains.class
new file mode 100644
index 000000000000..a260fdb9901c
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XTextLayoutConstrains.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XTextListener$TestTextListener.class b/qadevOOo/bin/ifc/awt/_XTextListener$TestTextListener.class
new file mode 100644
index 000000000000..ada94cc5a031
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XTextListener$TestTextListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XTextListener.class b/qadevOOo/bin/ifc/awt/_XTextListener.class
new file mode 100644
index 000000000000..a4ff594f7819
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XTextListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XTimeField.class b/qadevOOo/bin/ifc/awt/_XTimeField.class
new file mode 100644
index 000000000000..b9abe3bbabf7
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XTimeField.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XToolkit.class b/qadevOOo/bin/ifc/awt/_XToolkit.class
new file mode 100644
index 000000000000..8b893f93c58f
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XToolkit.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XTopWindow$TestListener.class b/qadevOOo/bin/ifc/awt/_XTopWindow$TestListener.class
new file mode 100644
index 000000000000..61fb20244e80
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XTopWindow$TestListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XTopWindow.class b/qadevOOo/bin/ifc/awt/_XTopWindow.class
new file mode 100644
index 000000000000..354d20ca2ba5
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XTopWindow.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XUnoControlContainer.class b/qadevOOo/bin/ifc/awt/_XUnoControlContainer.class
new file mode 100644
index 000000000000..a652674fd9ee
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XUnoControlContainer.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XView.class b/qadevOOo/bin/ifc/awt/_XView.class
new file mode 100644
index 000000000000..9d08ee66e3fe
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XView.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XWindow$TestFocusListener.class b/qadevOOo/bin/ifc/awt/_XWindow$TestFocusListener.class
new file mode 100644
index 000000000000..d98fc691695a
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XWindow$TestFocusListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XWindow$TestKeyListener.class b/qadevOOo/bin/ifc/awt/_XWindow$TestKeyListener.class
new file mode 100644
index 000000000000..49b1b79bb1cb
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XWindow$TestKeyListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XWindow$TestMouseListener.class b/qadevOOo/bin/ifc/awt/_XWindow$TestMouseListener.class
new file mode 100644
index 000000000000..6dafd3f7032e
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XWindow$TestMouseListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XWindow$TestMouseMotionListener.class b/qadevOOo/bin/ifc/awt/_XWindow$TestMouseMotionListener.class
new file mode 100644
index 000000000000..5fdd81e2bb9c
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XWindow$TestMouseMotionListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XWindow$TestPaintListener.class b/qadevOOo/bin/ifc/awt/_XWindow$TestPaintListener.class
new file mode 100644
index 000000000000..e91d9c7e16b8
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XWindow$TestPaintListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XWindow$TestWindowListener.class b/qadevOOo/bin/ifc/awt/_XWindow$TestWindowListener.class
new file mode 100644
index 000000000000..abdd3064fc24
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XWindow$TestWindowListener.class differ
diff --git a/qadevOOo/bin/ifc/awt/_XWindow.class b/qadevOOo/bin/ifc/awt/_XWindow.class
new file mode 100644
index 000000000000..fb0486de04d3
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/_XWindow.class differ
diff --git a/qadevOOo/bin/ifc/awt/tree/_TreeControlModel.class b/qadevOOo/bin/ifc/awt/tree/_TreeControlModel.class
new file mode 100644
index 000000000000..c0ab226caff9
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/tree/_TreeControlModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/tree/_XMutableTreeDataModel.class b/qadevOOo/bin/ifc/awt/tree/_XMutableTreeDataModel.class
new file mode 100644
index 000000000000..77b90e4336bd
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/tree/_XMutableTreeDataModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/tree/_XMutableTreeNode$XMutableTreeNodeCreator.class b/qadevOOo/bin/ifc/awt/tree/_XMutableTreeNode$XMutableTreeNodeCreator.class
new file mode 100644
index 000000000000..84b8f5816063
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/tree/_XMutableTreeNode$XMutableTreeNodeCreator.class differ
diff --git a/qadevOOo/bin/ifc/awt/tree/_XMutableTreeNode.class b/qadevOOo/bin/ifc/awt/tree/_XMutableTreeNode.class
new file mode 100644
index 000000000000..5592546cbed2
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/tree/_XMutableTreeNode.class differ
diff --git a/qadevOOo/bin/ifc/awt/tree/_XTreeControl$TreeEditListenerImpl1.class b/qadevOOo/bin/ifc/awt/tree/_XTreeControl$TreeEditListenerImpl1.class
new file mode 100644
index 000000000000..169d13cca760
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/tree/_XTreeControl$TreeEditListenerImpl1.class differ
diff --git a/qadevOOo/bin/ifc/awt/tree/_XTreeControl$TreeEditListenerImpl2.class b/qadevOOo/bin/ifc/awt/tree/_XTreeControl$TreeEditListenerImpl2.class
new file mode 100644
index 000000000000..d8f370b6702c
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/tree/_XTreeControl$TreeEditListenerImpl2.class differ
diff --git a/qadevOOo/bin/ifc/awt/tree/_XTreeControl$TreeExpansionListenerImpl1.class b/qadevOOo/bin/ifc/awt/tree/_XTreeControl$TreeExpansionListenerImpl1.class
new file mode 100644
index 000000000000..06b9a29eab85
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/tree/_XTreeControl$TreeExpansionListenerImpl1.class differ
diff --git a/qadevOOo/bin/ifc/awt/tree/_XTreeControl$TreeExpansionListenerImpl2.class b/qadevOOo/bin/ifc/awt/tree/_XTreeControl$TreeExpansionListenerImpl2.class
new file mode 100644
index 000000000000..c812bfaca642
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/tree/_XTreeControl$TreeExpansionListenerImpl2.class differ
diff --git a/qadevOOo/bin/ifc/awt/tree/_XTreeControl$XTreeDataModelListenerEvent.class b/qadevOOo/bin/ifc/awt/tree/_XTreeControl$XTreeDataModelListenerEvent.class
new file mode 100644
index 000000000000..1cf7ba995c7a
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/tree/_XTreeControl$XTreeDataModelListenerEvent.class differ
diff --git a/qadevOOo/bin/ifc/awt/tree/_XTreeControl.class b/qadevOOo/bin/ifc/awt/tree/_XTreeControl.class
new file mode 100644
index 000000000000..bec0826ffc0c
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/tree/_XTreeControl.class differ
diff --git a/qadevOOo/bin/ifc/awt/tree/_XTreeDataModel$XTreeDataModelListenerEvent.class b/qadevOOo/bin/ifc/awt/tree/_XTreeDataModel$XTreeDataModelListenerEvent.class
new file mode 100644
index 000000000000..e77c06b5b686
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/tree/_XTreeDataModel$XTreeDataModelListenerEvent.class differ
diff --git a/qadevOOo/bin/ifc/awt/tree/_XTreeDataModel$myEventListener1.class b/qadevOOo/bin/ifc/awt/tree/_XTreeDataModel$myEventListener1.class
new file mode 100644
index 000000000000..a9e34f6380b7
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/tree/_XTreeDataModel$myEventListener1.class differ
diff --git a/qadevOOo/bin/ifc/awt/tree/_XTreeDataModel$myEventListener2.class b/qadevOOo/bin/ifc/awt/tree/_XTreeDataModel$myEventListener2.class
new file mode 100644
index 000000000000..930c700e4b6c
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/tree/_XTreeDataModel$myEventListener2.class differ
diff --git a/qadevOOo/bin/ifc/awt/tree/_XTreeDataModel.class b/qadevOOo/bin/ifc/awt/tree/_XTreeDataModel.class
new file mode 100644
index 000000000000..75b217fbcba3
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/tree/_XTreeDataModel.class differ
diff --git a/qadevOOo/bin/ifc/awt/tree/_XTreeNode.class b/qadevOOo/bin/ifc/awt/tree/_XTreeNode.class
new file mode 100644
index 000000000000..40f7179f180a
Binary files /dev/null and b/qadevOOo/bin/ifc/awt/tree/_XTreeNode.class differ
diff --git a/qadevOOo/bin/ifc/beans/_XExactName.class b/qadevOOo/bin/ifc/beans/_XExactName.class
new file mode 100644
index 000000000000..cba025c7cbf6
Binary files /dev/null and b/qadevOOo/bin/ifc/beans/_XExactName.class differ
diff --git a/qadevOOo/bin/ifc/beans/_XFastPropertySet$Prop.class b/qadevOOo/bin/ifc/beans/_XFastPropertySet$Prop.class
new file mode 100644
index 000000000000..63d7e403d9ee
Binary files /dev/null and b/qadevOOo/bin/ifc/beans/_XFastPropertySet$Prop.class differ
diff --git a/qadevOOo/bin/ifc/beans/_XFastPropertySet.class b/qadevOOo/bin/ifc/beans/_XFastPropertySet.class
new file mode 100644
index 000000000000..f93470e9b4a5
Binary files /dev/null and b/qadevOOo/bin/ifc/beans/_XFastPropertySet.class differ
diff --git a/qadevOOo/bin/ifc/beans/_XHierarchicalPropertySet.class b/qadevOOo/bin/ifc/beans/_XHierarchicalPropertySet.class
new file mode 100644
index 000000000000..f68b97215d90
Binary files /dev/null and b/qadevOOo/bin/ifc/beans/_XHierarchicalPropertySet.class differ
diff --git a/qadevOOo/bin/ifc/beans/_XIntrospection.class b/qadevOOo/bin/ifc/beans/_XIntrospection.class
new file mode 100644
index 000000000000..079ee1b468f7
Binary files /dev/null and b/qadevOOo/bin/ifc/beans/_XIntrospection.class differ
diff --git a/qadevOOo/bin/ifc/beans/_XMultiHierarchicalPropertySet.class b/qadevOOo/bin/ifc/beans/_XMultiHierarchicalPropertySet.class
new file mode 100644
index 000000000000..f69bef3cbc1d
Binary files /dev/null and b/qadevOOo/bin/ifc/beans/_XMultiHierarchicalPropertySet.class differ
diff --git a/qadevOOo/bin/ifc/beans/_XMultiPropertySet$MyChangeListener.class b/qadevOOo/bin/ifc/beans/_XMultiPropertySet$MyChangeListener.class
new file mode 100644
index 000000000000..dfcf21c28b70
Binary files /dev/null and b/qadevOOo/bin/ifc/beans/_XMultiPropertySet$MyChangeListener.class differ
diff --git a/qadevOOo/bin/ifc/beans/_XMultiPropertySet.class b/qadevOOo/bin/ifc/beans/_XMultiPropertySet.class
new file mode 100644
index 000000000000..80696a4562b4
Binary files /dev/null and b/qadevOOo/bin/ifc/beans/_XMultiPropertySet.class differ
diff --git a/qadevOOo/bin/ifc/beans/_XMultiPropertyStates.class b/qadevOOo/bin/ifc/beans/_XMultiPropertyStates.class
new file mode 100644
index 000000000000..60dcf1b47ac7
Binary files /dev/null and b/qadevOOo/bin/ifc/beans/_XMultiPropertyStates.class differ
diff --git a/qadevOOo/bin/ifc/beans/_XProperty.class b/qadevOOo/bin/ifc/beans/_XProperty.class
new file mode 100644
index 000000000000..0c84db682ca8
Binary files /dev/null and b/qadevOOo/bin/ifc/beans/_XProperty.class differ
diff --git a/qadevOOo/bin/ifc/beans/_XPropertyAccess.class b/qadevOOo/bin/ifc/beans/_XPropertyAccess.class
new file mode 100644
index 000000000000..48ffbfa0ed69
Binary files /dev/null and b/qadevOOo/bin/ifc/beans/_XPropertyAccess.class differ
diff --git a/qadevOOo/bin/ifc/beans/_XPropertyContainer.class b/qadevOOo/bin/ifc/beans/_XPropertyContainer.class
new file mode 100644
index 000000000000..7c547253726e
Binary files /dev/null and b/qadevOOo/bin/ifc/beans/_XPropertyContainer.class differ
diff --git a/qadevOOo/bin/ifc/beans/_XPropertySet$MyChangeListener.class b/qadevOOo/bin/ifc/beans/_XPropertySet$MyChangeListener.class
new file mode 100644
index 000000000000..e0b3d97e8c64
Binary files /dev/null and b/qadevOOo/bin/ifc/beans/_XPropertySet$MyChangeListener.class differ
diff --git a/qadevOOo/bin/ifc/beans/_XPropertySet$MyVetoListener.class b/qadevOOo/bin/ifc/beans/_XPropertySet$MyVetoListener.class
new file mode 100644
index 000000000000..d9717f49405e
Binary files /dev/null and b/qadevOOo/bin/ifc/beans/_XPropertySet$MyVetoListener.class differ
diff --git a/qadevOOo/bin/ifc/beans/_XPropertySet$PropsToTest.class b/qadevOOo/bin/ifc/beans/_XPropertySet$PropsToTest.class
new file mode 100644
index 000000000000..62ed953d5d9a
Binary files /dev/null and b/qadevOOo/bin/ifc/beans/_XPropertySet$PropsToTest.class differ
diff --git a/qadevOOo/bin/ifc/beans/_XPropertySet.class b/qadevOOo/bin/ifc/beans/_XPropertySet.class
new file mode 100644
index 000000000000..098b2c3ed53f
Binary files /dev/null and b/qadevOOo/bin/ifc/beans/_XPropertySet.class differ
diff --git a/qadevOOo/bin/ifc/beans/_XPropertySetInfo.class b/qadevOOo/bin/ifc/beans/_XPropertySetInfo.class
new file mode 100644
index 000000000000..15a17dc6f564
Binary files /dev/null and b/qadevOOo/bin/ifc/beans/_XPropertySetInfo.class differ
diff --git a/qadevOOo/bin/ifc/beans/_XPropertyState.class b/qadevOOo/bin/ifc/beans/_XPropertyState.class
new file mode 100644
index 000000000000..1a6ff51c95ec
Binary files /dev/null and b/qadevOOo/bin/ifc/beans/_XPropertyState.class differ
diff --git a/qadevOOo/bin/ifc/beans/_XPropertyWithState.class b/qadevOOo/bin/ifc/beans/_XPropertyWithState.class
new file mode 100644
index 000000000000..523dc88ff2ab
Binary files /dev/null and b/qadevOOo/bin/ifc/beans/_XPropertyWithState.class differ
diff --git a/qadevOOo/bin/ifc/beans/_XTolerantMultiPropertySet.class b/qadevOOo/bin/ifc/beans/_XTolerantMultiPropertySet.class
new file mode 100644
index 000000000000..558091b83fa4
Binary files /dev/null and b/qadevOOo/bin/ifc/beans/_XTolerantMultiPropertySet.class differ
diff --git a/qadevOOo/bin/ifc/bridge/_XBridge.class b/qadevOOo/bin/ifc/bridge/_XBridge.class
new file mode 100644
index 000000000000..c2a111a3f5c8
Binary files /dev/null and b/qadevOOo/bin/ifc/bridge/_XBridge.class differ
diff --git a/qadevOOo/bin/ifc/bridge/_XBridgeFactory$AcceptorThread.class b/qadevOOo/bin/ifc/bridge/_XBridgeFactory$AcceptorThread.class
new file mode 100644
index 000000000000..1d872351c7ed
Binary files /dev/null and b/qadevOOo/bin/ifc/bridge/_XBridgeFactory$AcceptorThread.class differ
diff --git a/qadevOOo/bin/ifc/bridge/_XBridgeFactory.class b/qadevOOo/bin/ifc/bridge/_XBridgeFactory.class
new file mode 100644
index 000000000000..3233a4a7af31
Binary files /dev/null and b/qadevOOo/bin/ifc/bridge/_XBridgeFactory.class differ
diff --git a/qadevOOo/bin/ifc/bridge/_XUnoUrlResolver$BridgeThread.class b/qadevOOo/bin/ifc/bridge/_XUnoUrlResolver$BridgeThread.class
new file mode 100644
index 000000000000..c9a292ead6fb
Binary files /dev/null and b/qadevOOo/bin/ifc/bridge/_XUnoUrlResolver$BridgeThread.class differ
diff --git a/qadevOOo/bin/ifc/bridge/_XUnoUrlResolver$MyInstanceProvider.class b/qadevOOo/bin/ifc/bridge/_XUnoUrlResolver$MyInstanceProvider.class
new file mode 100644
index 000000000000..fccd42d603e7
Binary files /dev/null and b/qadevOOo/bin/ifc/bridge/_XUnoUrlResolver$MyInstanceProvider.class differ
diff --git a/qadevOOo/bin/ifc/bridge/_XUnoUrlResolver.class b/qadevOOo/bin/ifc/bridge/_XUnoUrlResolver.class
new file mode 100644
index 000000000000..7d0a79450316
Binary files /dev/null and b/qadevOOo/bin/ifc/bridge/_XUnoUrlResolver.class differ
diff --git a/qadevOOo/bin/ifc/chart/_BarDiagram$1.class b/qadevOOo/bin/ifc/chart/_BarDiagram$1.class
new file mode 100644
index 000000000000..b71df51b7c9f
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_BarDiagram$1.class differ
diff --git a/qadevOOo/bin/ifc/chart/_BarDiagram.class b/qadevOOo/bin/ifc/chart/_BarDiagram.class
new file mode 100644
index 000000000000..6cb709c43d86
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_BarDiagram.class differ
diff --git a/qadevOOo/bin/ifc/chart/_Chart3DBarProperties.class b/qadevOOo/bin/ifc/chart/_Chart3DBarProperties.class
new file mode 100644
index 000000000000..32aedf298e52
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_Chart3DBarProperties.class differ
diff --git a/qadevOOo/bin/ifc/chart/_ChartAxis$1.class b/qadevOOo/bin/ifc/chart/_ChartAxis$1.class
new file mode 100644
index 000000000000..2b3acac23d64
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_ChartAxis$1.class differ
diff --git a/qadevOOo/bin/ifc/chart/_ChartAxis.class b/qadevOOo/bin/ifc/chart/_ChartAxis.class
new file mode 100644
index 000000000000..b7b43a74b2a0
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_ChartAxis.class differ
diff --git a/qadevOOo/bin/ifc/chart/_ChartAxisXSupplier.class b/qadevOOo/bin/ifc/chart/_ChartAxisXSupplier.class
new file mode 100644
index 000000000000..ad088ba31d2a
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_ChartAxisXSupplier.class differ
diff --git a/qadevOOo/bin/ifc/chart/_ChartAxisYSupplier.class b/qadevOOo/bin/ifc/chart/_ChartAxisYSupplier.class
new file mode 100644
index 000000000000..a3dee676f139
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_ChartAxisYSupplier.class differ
diff --git a/qadevOOo/bin/ifc/chart/_ChartAxisZSupplier.class b/qadevOOo/bin/ifc/chart/_ChartAxisZSupplier.class
new file mode 100644
index 000000000000..6dee90dc385b
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_ChartAxisZSupplier.class differ
diff --git a/qadevOOo/bin/ifc/chart/_ChartDataPointProperties.class b/qadevOOo/bin/ifc/chart/_ChartDataPointProperties.class
new file mode 100644
index 000000000000..d0a2b39cd9f3
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_ChartDataPointProperties.class differ
diff --git a/qadevOOo/bin/ifc/chart/_ChartDataRowProperties.class b/qadevOOo/bin/ifc/chart/_ChartDataRowProperties.class
new file mode 100644
index 000000000000..c11284dfc6a4
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_ChartDataRowProperties.class differ
diff --git a/qadevOOo/bin/ifc/chart/_ChartDocument.class b/qadevOOo/bin/ifc/chart/_ChartDocument.class
new file mode 100644
index 000000000000..76067addd745
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_ChartDocument.class differ
diff --git a/qadevOOo/bin/ifc/chart/_ChartLegend.class b/qadevOOo/bin/ifc/chart/_ChartLegend.class
new file mode 100644
index 000000000000..9c0f6a7e1137
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_ChartLegend.class differ
diff --git a/qadevOOo/bin/ifc/chart/_ChartStatistics.class b/qadevOOo/bin/ifc/chart/_ChartStatistics.class
new file mode 100644
index 000000000000..b7f8fcfc1056
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_ChartStatistics.class differ
diff --git a/qadevOOo/bin/ifc/chart/_ChartTableAddressSupplier$1.class b/qadevOOo/bin/ifc/chart/_ChartTableAddressSupplier$1.class
new file mode 100644
index 000000000000..ddcad86ced7f
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_ChartTableAddressSupplier$1.class differ
diff --git a/qadevOOo/bin/ifc/chart/_ChartTableAddressSupplier.class b/qadevOOo/bin/ifc/chart/_ChartTableAddressSupplier.class
new file mode 100644
index 000000000000..2afa70b55efa
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_ChartTableAddressSupplier.class differ
diff --git a/qadevOOo/bin/ifc/chart/_ChartTitle$1.class b/qadevOOo/bin/ifc/chart/_ChartTitle$1.class
new file mode 100644
index 000000000000..064e60300b6c
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_ChartTitle$1.class differ
diff --git a/qadevOOo/bin/ifc/chart/_ChartTitle.class b/qadevOOo/bin/ifc/chart/_ChartTitle.class
new file mode 100644
index 000000000000..2db282daa990
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_ChartTitle.class differ
diff --git a/qadevOOo/bin/ifc/chart/_ChartTwoAxisXSupplier.class b/qadevOOo/bin/ifc/chart/_ChartTwoAxisXSupplier.class
new file mode 100644
index 000000000000..52af4a5d9b42
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_ChartTwoAxisXSupplier.class differ
diff --git a/qadevOOo/bin/ifc/chart/_ChartTwoAxisYSupplier.class b/qadevOOo/bin/ifc/chart/_ChartTwoAxisYSupplier.class
new file mode 100644
index 000000000000..f7570c0c8c53
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_ChartTwoAxisYSupplier.class differ
diff --git a/qadevOOo/bin/ifc/chart/_Diagram.class b/qadevOOo/bin/ifc/chart/_Diagram.class
new file mode 100644
index 000000000000..d93a1d40661b
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_Diagram.class differ
diff --git a/qadevOOo/bin/ifc/chart/_Dim3DDiagram.class b/qadevOOo/bin/ifc/chart/_Dim3DDiagram.class
new file mode 100644
index 000000000000..43189e9cb607
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_Dim3DDiagram.class differ
diff --git a/qadevOOo/bin/ifc/chart/_LineDiagram$1.class b/qadevOOo/bin/ifc/chart/_LineDiagram$1.class
new file mode 100644
index 000000000000..39421fcac436
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_LineDiagram$1.class differ
diff --git a/qadevOOo/bin/ifc/chart/_LineDiagram$2.class b/qadevOOo/bin/ifc/chart/_LineDiagram$2.class
new file mode 100644
index 000000000000..a207cca40949
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_LineDiagram$2.class differ
diff --git a/qadevOOo/bin/ifc/chart/_LineDiagram.class b/qadevOOo/bin/ifc/chart/_LineDiagram.class
new file mode 100644
index 000000000000..30b4673c2393
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_LineDiagram.class differ
diff --git a/qadevOOo/bin/ifc/chart/_StackableDiagram.class b/qadevOOo/bin/ifc/chart/_StackableDiagram.class
new file mode 100644
index 000000000000..f4a714a25052
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_StackableDiagram.class differ
diff --git a/qadevOOo/bin/ifc/chart/_StockDiagram.class b/qadevOOo/bin/ifc/chart/_StockDiagram.class
new file mode 100644
index 000000000000..c1483ffdf278
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_StockDiagram.class differ
diff --git a/qadevOOo/bin/ifc/chart/_X3DDisplay.class b/qadevOOo/bin/ifc/chart/_X3DDisplay.class
new file mode 100644
index 000000000000..e4f7e3f51664
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_X3DDisplay.class differ
diff --git a/qadevOOo/bin/ifc/chart/_XAxisXSupplier.class b/qadevOOo/bin/ifc/chart/_XAxisXSupplier.class
new file mode 100644
index 000000000000..5ac13be349d0
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_XAxisXSupplier.class differ
diff --git a/qadevOOo/bin/ifc/chart/_XAxisYSupplier.class b/qadevOOo/bin/ifc/chart/_XAxisYSupplier.class
new file mode 100644
index 000000000000..6701612c625d
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_XAxisYSupplier.class differ
diff --git a/qadevOOo/bin/ifc/chart/_XAxisZSupplier.class b/qadevOOo/bin/ifc/chart/_XAxisZSupplier.class
new file mode 100644
index 000000000000..99f8f645e128
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_XAxisZSupplier.class differ
diff --git a/qadevOOo/bin/ifc/chart/_XChartData$MyEventListener.class b/qadevOOo/bin/ifc/chart/_XChartData$MyEventListener.class
new file mode 100644
index 000000000000..12d9978e2e6b
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_XChartData$MyEventListener.class differ
diff --git a/qadevOOo/bin/ifc/chart/_XChartData$MyEventListener2.class b/qadevOOo/bin/ifc/chart/_XChartData$MyEventListener2.class
new file mode 100644
index 000000000000..b6b509892d8d
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_XChartData$MyEventListener2.class differ
diff --git a/qadevOOo/bin/ifc/chart/_XChartData.class b/qadevOOo/bin/ifc/chart/_XChartData.class
new file mode 100644
index 000000000000..5e37493d5152
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_XChartData.class differ
diff --git a/qadevOOo/bin/ifc/chart/_XChartDataArray.class b/qadevOOo/bin/ifc/chart/_XChartDataArray.class
new file mode 100644
index 000000000000..c44d3734f54d
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_XChartDataArray.class differ
diff --git a/qadevOOo/bin/ifc/chart/_XChartDocument.class b/qadevOOo/bin/ifc/chart/_XChartDocument.class
new file mode 100644
index 000000000000..aa9750edf0f6
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_XChartDocument.class differ
diff --git a/qadevOOo/bin/ifc/chart/_XDiagram.class b/qadevOOo/bin/ifc/chart/_XDiagram.class
new file mode 100644
index 000000000000..27bd093d2ca9
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_XDiagram.class differ
diff --git a/qadevOOo/bin/ifc/chart/_XStatisticDisplay.class b/qadevOOo/bin/ifc/chart/_XStatisticDisplay.class
new file mode 100644
index 000000000000..40b918c3a672
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_XStatisticDisplay.class differ
diff --git a/qadevOOo/bin/ifc/chart/_XTwoAxisXSupplier.class b/qadevOOo/bin/ifc/chart/_XTwoAxisXSupplier.class
new file mode 100644
index 000000000000..1c70fa7d3eef
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_XTwoAxisXSupplier.class differ
diff --git a/qadevOOo/bin/ifc/chart/_XTwoAxisYSupplier.class b/qadevOOo/bin/ifc/chart/_XTwoAxisYSupplier.class
new file mode 100644
index 000000000000..02fc41e24da9
Binary files /dev/null and b/qadevOOo/bin/ifc/chart/_XTwoAxisYSupplier.class differ
diff --git a/qadevOOo/bin/ifc/configuration/_XTemplateContainer.class b/qadevOOo/bin/ifc/configuration/_XTemplateContainer.class
new file mode 100644
index 000000000000..60f6a225d82d
Binary files /dev/null and b/qadevOOo/bin/ifc/configuration/_XTemplateContainer.class differ
diff --git a/qadevOOo/bin/ifc/configuration/_XTemplateInstance.class b/qadevOOo/bin/ifc/configuration/_XTemplateInstance.class
new file mode 100644
index 000000000000..f3912c4cc2e1
Binary files /dev/null and b/qadevOOo/bin/ifc/configuration/_XTemplateInstance.class differ
diff --git a/qadevOOo/bin/ifc/configuration/backend/_XBackend.class b/qadevOOo/bin/ifc/configuration/backend/_XBackend.class
new file mode 100644
index 000000000000..ed2b65dd3ac9
Binary files /dev/null and b/qadevOOo/bin/ifc/configuration/backend/_XBackend.class differ
diff --git a/qadevOOo/bin/ifc/configuration/backend/_XBackendEntities.class b/qadevOOo/bin/ifc/configuration/backend/_XBackendEntities.class
new file mode 100644
index 000000000000..55317f0e53c8
Binary files /dev/null and b/qadevOOo/bin/ifc/configuration/backend/_XBackendEntities.class differ
diff --git a/qadevOOo/bin/ifc/configuration/backend/_XLayer.class b/qadevOOo/bin/ifc/configuration/backend/_XLayer.class
new file mode 100644
index 000000000000..2eaba791e102
Binary files /dev/null and b/qadevOOo/bin/ifc/configuration/backend/_XLayer.class differ
diff --git a/qadevOOo/bin/ifc/configuration/backend/_XLayerHandler.class b/qadevOOo/bin/ifc/configuration/backend/_XLayerHandler.class
new file mode 100644
index 000000000000..840a64dc2bd5
Binary files /dev/null and b/qadevOOo/bin/ifc/configuration/backend/_XLayerHandler.class differ
diff --git a/qadevOOo/bin/ifc/configuration/backend/_XLayerImporter.class b/qadevOOo/bin/ifc/configuration/backend/_XLayerImporter.class
new file mode 100644
index 000000000000..7c8746cda343
Binary files /dev/null and b/qadevOOo/bin/ifc/configuration/backend/_XLayerImporter.class differ
diff --git a/qadevOOo/bin/ifc/configuration/backend/_XMultiLayerStratum.class b/qadevOOo/bin/ifc/configuration/backend/_XMultiLayerStratum.class
new file mode 100644
index 000000000000..feee4f0b0771
Binary files /dev/null and b/qadevOOo/bin/ifc/configuration/backend/_XMultiLayerStratum.class differ
diff --git a/qadevOOo/bin/ifc/configuration/backend/_XSchema.class b/qadevOOo/bin/ifc/configuration/backend/_XSchema.class
new file mode 100644
index 000000000000..eacf6adef991
Binary files /dev/null and b/qadevOOo/bin/ifc/configuration/backend/_XSchema.class differ
diff --git a/qadevOOo/bin/ifc/configuration/backend/_XSchemaSupplier.class b/qadevOOo/bin/ifc/configuration/backend/_XSchemaSupplier.class
new file mode 100644
index 000000000000..087ab6202819
Binary files /dev/null and b/qadevOOo/bin/ifc/configuration/backend/_XSchemaSupplier.class differ
diff --git a/qadevOOo/bin/ifc/configuration/backend/_XSingleLayerStratum.class b/qadevOOo/bin/ifc/configuration/backend/_XSingleLayerStratum.class
new file mode 100644
index 000000000000..0f514bb4c20f
Binary files /dev/null and b/qadevOOo/bin/ifc/configuration/backend/_XSingleLayerStratum.class differ
diff --git a/qadevOOo/bin/ifc/configuration/backend/_XUpdateHandler.class b/qadevOOo/bin/ifc/configuration/backend/_XUpdateHandler.class
new file mode 100644
index 000000000000..2e00b4413810
Binary files /dev/null and b/qadevOOo/bin/ifc/configuration/backend/_XUpdateHandler.class differ
diff --git a/qadevOOo/bin/ifc/connection/_XAcceptor$AcceptorThread.class b/qadevOOo/bin/ifc/connection/_XAcceptor$AcceptorThread.class
new file mode 100644
index 000000000000..2b13355fd32f
Binary files /dev/null and b/qadevOOo/bin/ifc/connection/_XAcceptor$AcceptorThread.class differ
diff --git a/qadevOOo/bin/ifc/connection/_XAcceptor.class b/qadevOOo/bin/ifc/connection/_XAcceptor.class
new file mode 100644
index 000000000000..24947728ff17
Binary files /dev/null and b/qadevOOo/bin/ifc/connection/_XAcceptor.class differ
diff --git a/qadevOOo/bin/ifc/connection/_XConnector$AcceptorThread.class b/qadevOOo/bin/ifc/connection/_XConnector$AcceptorThread.class
new file mode 100644
index 000000000000..f45c7cc6e21b
Binary files /dev/null and b/qadevOOo/bin/ifc/connection/_XConnector$AcceptorThread.class differ
diff --git a/qadevOOo/bin/ifc/connection/_XConnector.class b/qadevOOo/bin/ifc/connection/_XConnector.class
new file mode 100644
index 000000000000..7ace0b279e5e
Binary files /dev/null and b/qadevOOo/bin/ifc/connection/_XConnector.class differ
diff --git a/qadevOOo/bin/ifc/container/_XChild.class b/qadevOOo/bin/ifc/container/_XChild.class
new file mode 100644
index 000000000000..a5d6ef8bdf2c
Binary files /dev/null and b/qadevOOo/bin/ifc/container/_XChild.class differ
diff --git a/qadevOOo/bin/ifc/container/_XContainer$MyListener.class b/qadevOOo/bin/ifc/container/_XContainer$MyListener.class
new file mode 100644
index 000000000000..50f9a1f5ff63
Binary files /dev/null and b/qadevOOo/bin/ifc/container/_XContainer$MyListener.class differ
diff --git a/qadevOOo/bin/ifc/container/_XContainer.class b/qadevOOo/bin/ifc/container/_XContainer.class
new file mode 100644
index 000000000000..f071ffb85ce6
Binary files /dev/null and b/qadevOOo/bin/ifc/container/_XContainer.class differ
diff --git a/qadevOOo/bin/ifc/container/_XContainerQuery.class b/qadevOOo/bin/ifc/container/_XContainerQuery.class
new file mode 100644
index 000000000000..514817276e2d
Binary files /dev/null and b/qadevOOo/bin/ifc/container/_XContainerQuery.class differ
diff --git a/qadevOOo/bin/ifc/container/_XContentEnumerationAccess.class b/qadevOOo/bin/ifc/container/_XContentEnumerationAccess.class
new file mode 100644
index 000000000000..a178bd1535ef
Binary files /dev/null and b/qadevOOo/bin/ifc/container/_XContentEnumerationAccess.class differ
diff --git a/qadevOOo/bin/ifc/container/_XElementAccess.class b/qadevOOo/bin/ifc/container/_XElementAccess.class
new file mode 100644
index 000000000000..e1ff68975d17
Binary files /dev/null and b/qadevOOo/bin/ifc/container/_XElementAccess.class differ
diff --git a/qadevOOo/bin/ifc/container/_XEnumeration.class b/qadevOOo/bin/ifc/container/_XEnumeration.class
new file mode 100644
index 000000000000..2a22d50de506
Binary files /dev/null and b/qadevOOo/bin/ifc/container/_XEnumeration.class differ
diff --git a/qadevOOo/bin/ifc/container/_XEnumerationAccess.class b/qadevOOo/bin/ifc/container/_XEnumerationAccess.class
new file mode 100644
index 000000000000..c85074b3086a
Binary files /dev/null and b/qadevOOo/bin/ifc/container/_XEnumerationAccess.class differ
diff --git a/qadevOOo/bin/ifc/container/_XHierarchicalName.class b/qadevOOo/bin/ifc/container/_XHierarchicalName.class
new file mode 100644
index 000000000000..e280b179c3ad
Binary files /dev/null and b/qadevOOo/bin/ifc/container/_XHierarchicalName.class differ
diff --git a/qadevOOo/bin/ifc/container/_XHierarchicalNameAccess.class b/qadevOOo/bin/ifc/container/_XHierarchicalNameAccess.class
new file mode 100644
index 000000000000..2e9b73fb9be3
Binary files /dev/null and b/qadevOOo/bin/ifc/container/_XHierarchicalNameAccess.class differ
diff --git a/qadevOOo/bin/ifc/container/_XIndexAccess.class b/qadevOOo/bin/ifc/container/_XIndexAccess.class
new file mode 100644
index 000000000000..30352a025cd0
Binary files /dev/null and b/qadevOOo/bin/ifc/container/_XIndexAccess.class differ
diff --git a/qadevOOo/bin/ifc/container/_XIndexContainer.class b/qadevOOo/bin/ifc/container/_XIndexContainer.class
new file mode 100644
index 000000000000..1f788209ec72
Binary files /dev/null and b/qadevOOo/bin/ifc/container/_XIndexContainer.class differ
diff --git a/qadevOOo/bin/ifc/container/_XIndexReplace.class b/qadevOOo/bin/ifc/container/_XIndexReplace.class
new file mode 100644
index 000000000000..ca72fde0fc84
Binary files /dev/null and b/qadevOOo/bin/ifc/container/_XIndexReplace.class differ
diff --git a/qadevOOo/bin/ifc/container/_XNameAccess.class b/qadevOOo/bin/ifc/container/_XNameAccess.class
new file mode 100644
index 000000000000..26aefb98c80e
Binary files /dev/null and b/qadevOOo/bin/ifc/container/_XNameAccess.class differ
diff --git a/qadevOOo/bin/ifc/container/_XNameContainer.class b/qadevOOo/bin/ifc/container/_XNameContainer.class
new file mode 100644
index 000000000000..d145eb2238f4
Binary files /dev/null and b/qadevOOo/bin/ifc/container/_XNameContainer.class differ
diff --git a/qadevOOo/bin/ifc/container/_XNameReplace.class b/qadevOOo/bin/ifc/container/_XNameReplace.class
new file mode 100644
index 000000000000..9e2f49cf80a2
Binary files /dev/null and b/qadevOOo/bin/ifc/container/_XNameReplace.class differ
diff --git a/qadevOOo/bin/ifc/container/_XNamed.class b/qadevOOo/bin/ifc/container/_XNamed.class
new file mode 100644
index 000000000000..73b7353e593a
Binary files /dev/null and b/qadevOOo/bin/ifc/container/_XNamed.class differ
diff --git a/qadevOOo/bin/ifc/container/_XSet.class b/qadevOOo/bin/ifc/container/_XSet.class
new file mode 100644
index 000000000000..2e168728c7bd
Binary files /dev/null and b/qadevOOo/bin/ifc/container/_XSet.class differ
diff --git a/qadevOOo/bin/ifc/datatransfer/_XDataFormatTranslator.class b/qadevOOo/bin/ifc/datatransfer/_XDataFormatTranslator.class
new file mode 100644
index 000000000000..3c414cbf6493
Binary files /dev/null and b/qadevOOo/bin/ifc/datatransfer/_XDataFormatTranslator.class differ
diff --git a/qadevOOo/bin/ifc/datatransfer/_XMimeContentTypeFactory.class b/qadevOOo/bin/ifc/datatransfer/_XMimeContentTypeFactory.class
new file mode 100644
index 000000000000..2a18a22f1f2f
Binary files /dev/null and b/qadevOOo/bin/ifc/datatransfer/_XMimeContentTypeFactory.class differ
diff --git a/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboard$MyOwner.class b/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboard$MyOwner.class
new file mode 100644
index 000000000000..11a4c661a7c7
Binary files /dev/null and b/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboard$MyOwner.class differ
diff --git a/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboard$MyTransferable.class b/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboard$MyTransferable.class
new file mode 100644
index 000000000000..be696a7cb279
Binary files /dev/null and b/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboard$MyTransferable.class differ
diff --git a/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboard.class b/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboard.class
new file mode 100644
index 000000000000..ab9c1f6684a8
Binary files /dev/null and b/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboard.class differ
diff --git a/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboardEx.class b/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboardEx.class
new file mode 100644
index 000000000000..72a4cd4ee264
Binary files /dev/null and b/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboardEx.class differ
diff --git a/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboardNotifier$MyClipboardListener.class b/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboardNotifier$MyClipboardListener.class
new file mode 100644
index 000000000000..10781a79f080
Binary files /dev/null and b/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboardNotifier$MyClipboardListener.class differ
diff --git a/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboardNotifier$MyOwner.class b/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboardNotifier$MyOwner.class
new file mode 100644
index 000000000000..44cdb4dff16a
Binary files /dev/null and b/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboardNotifier$MyOwner.class differ
diff --git a/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboardNotifier$MyTransferable.class b/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboardNotifier$MyTransferable.class
new file mode 100644
index 000000000000..4e863ce4e384
Binary files /dev/null and b/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboardNotifier$MyTransferable.class differ
diff --git a/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboardNotifier.class b/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboardNotifier.class
new file mode 100644
index 000000000000..ad3b20791fc6
Binary files /dev/null and b/qadevOOo/bin/ifc/datatransfer/clipboard/_XClipboardNotifier.class differ
diff --git a/qadevOOo/bin/ifc/datatransfer/clipboard/_XFlushableClipboard.class b/qadevOOo/bin/ifc/datatransfer/clipboard/_XFlushableClipboard.class
new file mode 100644
index 000000000000..16057f0dcb1f
Binary files /dev/null and b/qadevOOo/bin/ifc/datatransfer/clipboard/_XFlushableClipboard.class differ
diff --git a/qadevOOo/bin/ifc/document/_ExportFilter.class b/qadevOOo/bin/ifc/document/_ExportFilter.class
new file mode 100644
index 000000000000..fbb22eedd21f
Binary files /dev/null and b/qadevOOo/bin/ifc/document/_ExportFilter.class differ
diff --git a/qadevOOo/bin/ifc/document/_ImportFilter.class b/qadevOOo/bin/ifc/document/_ImportFilter.class
new file mode 100644
index 000000000000..5fb87900d0a5
Binary files /dev/null and b/qadevOOo/bin/ifc/document/_ImportFilter.class differ
diff --git a/qadevOOo/bin/ifc/document/_LinkTarget.class b/qadevOOo/bin/ifc/document/_LinkTarget.class
new file mode 100644
index 000000000000..3e716cb2b7ee
Binary files /dev/null and b/qadevOOo/bin/ifc/document/_LinkTarget.class differ
diff --git a/qadevOOo/bin/ifc/document/_OfficeDocument.class b/qadevOOo/bin/ifc/document/_OfficeDocument.class
new file mode 100644
index 000000000000..6ec5334db64b
Binary files /dev/null and b/qadevOOo/bin/ifc/document/_OfficeDocument.class differ
diff --git a/qadevOOo/bin/ifc/document/_Settings.class b/qadevOOo/bin/ifc/document/_Settings.class
new file mode 100644
index 000000000000..e1d491e31764
Binary files /dev/null and b/qadevOOo/bin/ifc/document/_Settings.class differ
diff --git a/qadevOOo/bin/ifc/document/_XActionLockable.class b/qadevOOo/bin/ifc/document/_XActionLockable.class
new file mode 100644
index 000000000000..b22b9c093fef
Binary files /dev/null and b/qadevOOo/bin/ifc/document/_XActionLockable.class differ
diff --git a/qadevOOo/bin/ifc/document/_XDocumentInsertable$InsertChecker.class b/qadevOOo/bin/ifc/document/_XDocumentInsertable$InsertChecker.class
new file mode 100644
index 000000000000..66ecbdddb8a0
Binary files /dev/null and b/qadevOOo/bin/ifc/document/_XDocumentInsertable$InsertChecker.class differ
diff --git a/qadevOOo/bin/ifc/document/_XDocumentInsertable.class b/qadevOOo/bin/ifc/document/_XDocumentInsertable.class
new file mode 100644
index 000000000000..19c9302d6962
Binary files /dev/null and b/qadevOOo/bin/ifc/document/_XDocumentInsertable.class differ
diff --git a/qadevOOo/bin/ifc/document/_XEmbeddedObjectSupplier.class b/qadevOOo/bin/ifc/document/_XEmbeddedObjectSupplier.class
new file mode 100644
index 000000000000..6eb08aa1c1d3
Binary files /dev/null and b/qadevOOo/bin/ifc/document/_XEmbeddedObjectSupplier.class differ
diff --git a/qadevOOo/bin/ifc/document/_XEventBroadcaster$MyEventListener.class b/qadevOOo/bin/ifc/document/_XEventBroadcaster$MyEventListener.class
new file mode 100644
index 000000000000..a4f8cd4010c5
Binary files /dev/null and b/qadevOOo/bin/ifc/document/_XEventBroadcaster$MyEventListener.class differ
diff --git a/qadevOOo/bin/ifc/document/_XEventBroadcaster.class b/qadevOOo/bin/ifc/document/_XEventBroadcaster.class
new file mode 100644
index 000000000000..7974dcad56af
Binary files /dev/null and b/qadevOOo/bin/ifc/document/_XEventBroadcaster.class differ
diff --git a/qadevOOo/bin/ifc/document/_XEventsSupplier.class b/qadevOOo/bin/ifc/document/_XEventsSupplier.class
new file mode 100644
index 000000000000..0015e6a6c264
Binary files /dev/null and b/qadevOOo/bin/ifc/document/_XEventsSupplier.class differ
diff --git a/qadevOOo/bin/ifc/document/_XExporter.class b/qadevOOo/bin/ifc/document/_XExporter.class
new file mode 100644
index 000000000000..5a6f906e1b90
Binary files /dev/null and b/qadevOOo/bin/ifc/document/_XExporter.class differ
diff --git a/qadevOOo/bin/ifc/document/_XFilter$FilterChecker.class b/qadevOOo/bin/ifc/document/_XFilter$FilterChecker.class
new file mode 100644
index 000000000000..b80cfb529cd4
Binary files /dev/null and b/qadevOOo/bin/ifc/document/_XFilter$FilterChecker.class differ
diff --git a/qadevOOo/bin/ifc/document/_XFilter$FilterThread.class b/qadevOOo/bin/ifc/document/_XFilter$FilterThread.class
new file mode 100644
index 000000000000..24e03b3f63a1
Binary files /dev/null and b/qadevOOo/bin/ifc/document/_XFilter$FilterThread.class differ
diff --git a/qadevOOo/bin/ifc/document/_XFilter.class b/qadevOOo/bin/ifc/document/_XFilter.class
new file mode 100644
index 000000000000..9696f1f2b20e
Binary files /dev/null and b/qadevOOo/bin/ifc/document/_XFilter.class differ
diff --git a/qadevOOo/bin/ifc/document/_XImporter.class b/qadevOOo/bin/ifc/document/_XImporter.class
new file mode 100644
index 000000000000..45b0b8e33857
Binary files /dev/null and b/qadevOOo/bin/ifc/document/_XImporter.class differ
diff --git a/qadevOOo/bin/ifc/document/_XLinkTargetSupplier.class b/qadevOOo/bin/ifc/document/_XLinkTargetSupplier.class
new file mode 100644
index 000000000000..af9c5048e7fe
Binary files /dev/null and b/qadevOOo/bin/ifc/document/_XLinkTargetSupplier.class differ
diff --git a/qadevOOo/bin/ifc/document/_XMimeTypeInfo.class b/qadevOOo/bin/ifc/document/_XMimeTypeInfo.class
new file mode 100644
index 000000000000..100972974f69
Binary files /dev/null and b/qadevOOo/bin/ifc/document/_XMimeTypeInfo.class differ
diff --git a/qadevOOo/bin/ifc/document/_XTypeDetection.class b/qadevOOo/bin/ifc/document/_XTypeDetection.class
new file mode 100644
index 000000000000..59f165b01b97
Binary files /dev/null and b/qadevOOo/bin/ifc/document/_XTypeDetection.class differ
diff --git a/qadevOOo/bin/ifc/document/_XViewDataSupplier.class b/qadevOOo/bin/ifc/document/_XViewDataSupplier.class
new file mode 100644
index 000000000000..cffb1a4dca1d
Binary files /dev/null and b/qadevOOo/bin/ifc/document/_XViewDataSupplier.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_AreaShapeDescriptor$1.class b/qadevOOo/bin/ifc/drawing/_AreaShapeDescriptor$1.class
new file mode 100644
index 000000000000..d17b664354a1
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_AreaShapeDescriptor$1.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_AreaShapeDescriptor$2.class b/qadevOOo/bin/ifc/drawing/_AreaShapeDescriptor$2.class
new file mode 100644
index 000000000000..e05110b60c35
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_AreaShapeDescriptor$2.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_AreaShapeDescriptor.class b/qadevOOo/bin/ifc/drawing/_AreaShapeDescriptor.class
new file mode 100644
index 000000000000..d3b5b68ed882
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_AreaShapeDescriptor.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_ConnectorProperties.class b/qadevOOo/bin/ifc/drawing/_ConnectorProperties.class
new file mode 100644
index 000000000000..3cdfeab79fbe
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_ConnectorProperties.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_ConnectorShape.class b/qadevOOo/bin/ifc/drawing/_ConnectorShape.class
new file mode 100644
index 000000000000..2493ba0f432c
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_ConnectorShape.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_ConnectorShapeDescriptor.class b/qadevOOo/bin/ifc/drawing/_ConnectorShapeDescriptor.class
new file mode 100644
index 000000000000..a80f9439deaa
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_ConnectorShapeDescriptor.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_DimensioningShapeDescriptor.class b/qadevOOo/bin/ifc/drawing/_DimensioningShapeDescriptor.class
new file mode 100644
index 000000000000..a4d3641e8356
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_DimensioningShapeDescriptor.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_DrawingDocument.class b/qadevOOo/bin/ifc/drawing/_DrawingDocument.class
new file mode 100644
index 000000000000..d7bd495e27b7
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_DrawingDocument.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_DrawingDocumentDrawView$1.class b/qadevOOo/bin/ifc/drawing/_DrawingDocumentDrawView$1.class
new file mode 100644
index 000000000000..b3bf8fa56e3f
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_DrawingDocumentDrawView$1.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_DrawingDocumentDrawView.class b/qadevOOo/bin/ifc/drawing/_DrawingDocumentDrawView.class
new file mode 100644
index 000000000000..3e38bc6233e6
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_DrawingDocumentDrawView.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_EllipseShape.class b/qadevOOo/bin/ifc/drawing/_EllipseShape.class
new file mode 100644
index 000000000000..2a27a6f48c65
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_EllipseShape.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_EllipseShapeDescriptor.class b/qadevOOo/bin/ifc/drawing/_EllipseShapeDescriptor.class
new file mode 100644
index 000000000000..e87153c42bab
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_EllipseShapeDescriptor.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_FillProperties$1.class b/qadevOOo/bin/ifc/drawing/_FillProperties$1.class
new file mode 100644
index 000000000000..96313c2c4c1f
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_FillProperties$1.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_FillProperties$2.class b/qadevOOo/bin/ifc/drawing/_FillProperties$2.class
new file mode 100644
index 000000000000..cb4637ec210f
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_FillProperties$2.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_FillProperties$3.class b/qadevOOo/bin/ifc/drawing/_FillProperties$3.class
new file mode 100644
index 000000000000..ec394c6fabe4
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_FillProperties$3.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_FillProperties.class b/qadevOOo/bin/ifc/drawing/_FillProperties.class
new file mode 100644
index 000000000000..1522bd314a75
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_FillProperties.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_GenericDrawPage.class b/qadevOOo/bin/ifc/drawing/_GenericDrawPage.class
new file mode 100644
index 000000000000..5676ad71694a
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_GenericDrawPage.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_GenericDrawingDocument.class b/qadevOOo/bin/ifc/drawing/_GenericDrawingDocument.class
new file mode 100644
index 000000000000..9f4ecf2d0283
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_GenericDrawingDocument.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_GraphicObjectShape$1.class b/qadevOOo/bin/ifc/drawing/_GraphicObjectShape$1.class
new file mode 100644
index 000000000000..068489f29cfc
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_GraphicObjectShape$1.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_GraphicObjectShape$2.class b/qadevOOo/bin/ifc/drawing/_GraphicObjectShape$2.class
new file mode 100644
index 000000000000..08396bfd36f0
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_GraphicObjectShape$2.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_GraphicObjectShape.class b/qadevOOo/bin/ifc/drawing/_GraphicObjectShape.class
new file mode 100644
index 000000000000..779dd6f69d64
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_GraphicObjectShape.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_GraphicObjectShapeDescriptor$1.class b/qadevOOo/bin/ifc/drawing/_GraphicObjectShapeDescriptor$1.class
new file mode 100644
index 000000000000..58c0a63a1169
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_GraphicObjectShapeDescriptor$1.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_GraphicObjectShapeDescriptor$2.class b/qadevOOo/bin/ifc/drawing/_GraphicObjectShapeDescriptor$2.class
new file mode 100644
index 000000000000..4a3f3b3a09dc
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_GraphicObjectShapeDescriptor$2.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_GraphicObjectShapeDescriptor.class b/qadevOOo/bin/ifc/drawing/_GraphicObjectShapeDescriptor.class
new file mode 100644
index 000000000000..224e2f858ed3
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_GraphicObjectShapeDescriptor.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_Layer.class b/qadevOOo/bin/ifc/drawing/_Layer.class
new file mode 100644
index 000000000000..de8750f6ef4e
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_Layer.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_LineProperties$1.class b/qadevOOo/bin/ifc/drawing/_LineProperties$1.class
new file mode 100644
index 000000000000..03fd228be6ce
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_LineProperties$1.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_LineProperties.class b/qadevOOo/bin/ifc/drawing/_LineProperties.class
new file mode 100644
index 000000000000..8d89fb98caa3
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_LineProperties.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_LineShapeDescriptor.class b/qadevOOo/bin/ifc/drawing/_LineShapeDescriptor.class
new file mode 100644
index 000000000000..1850af0df6e4
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_LineShapeDescriptor.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_MeasureProperties.class b/qadevOOo/bin/ifc/drawing/_MeasureProperties.class
new file mode 100644
index 000000000000..702a6757713a
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_MeasureProperties.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_MeasureShape.class b/qadevOOo/bin/ifc/drawing/_MeasureShape.class
new file mode 100644
index 000000000000..374d04b7bad0
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_MeasureShape.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_PolyPolygonBezierDescriptor.class b/qadevOOo/bin/ifc/drawing/_PolyPolygonBezierDescriptor.class
new file mode 100644
index 000000000000..73b834bf0e1c
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_PolyPolygonBezierDescriptor.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_PolyPolygonDescriptor.class b/qadevOOo/bin/ifc/drawing/_PolyPolygonDescriptor.class
new file mode 100644
index 000000000000..f2d3c0820f6c
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_PolyPolygonDescriptor.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_RotationDescriptor$1.class b/qadevOOo/bin/ifc/drawing/_RotationDescriptor$1.class
new file mode 100644
index 000000000000..a8e5b3cf46f2
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_RotationDescriptor$1.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_RotationDescriptor.class b/qadevOOo/bin/ifc/drawing/_RotationDescriptor.class
new file mode 100644
index 000000000000..053001a962cf
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_RotationDescriptor.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_ShadowDescriptor.class b/qadevOOo/bin/ifc/drawing/_ShadowDescriptor.class
new file mode 100644
index 000000000000..3d02374ef048
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_ShadowDescriptor.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_ShadowProperties.class b/qadevOOo/bin/ifc/drawing/_ShadowProperties.class
new file mode 100644
index 000000000000..76985bddd784
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_ShadowProperties.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_Shape$1.class b/qadevOOo/bin/ifc/drawing/_Shape$1.class
new file mode 100644
index 000000000000..2a43deea0e34
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_Shape$1.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_Shape$2.class b/qadevOOo/bin/ifc/drawing/_Shape$2.class
new file mode 100644
index 000000000000..de10c9a405d3
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_Shape$2.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_Shape.class b/qadevOOo/bin/ifc/drawing/_Shape.class
new file mode 100644
index 000000000000..2ead9b65e908
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_Shape.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_ShapeDescriptor.class b/qadevOOo/bin/ifc/drawing/_ShapeDescriptor.class
new file mode 100644
index 000000000000..bdc3d9dcf2f7
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_ShapeDescriptor.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_Text.class b/qadevOOo/bin/ifc/drawing/_Text.class
new file mode 100644
index 000000000000..858f02f004c7
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_Text.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_TextProperties.class b/qadevOOo/bin/ifc/drawing/_TextProperties.class
new file mode 100644
index 000000000000..83271941a5a0
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_TextProperties.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_TextShape.class b/qadevOOo/bin/ifc/drawing/_TextShape.class
new file mode 100644
index 000000000000..93cc53fd97fe
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_TextShape.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_TextShapeDescriptor.class b/qadevOOo/bin/ifc/drawing/_TextShapeDescriptor.class
new file mode 100644
index 000000000000..3f79c8940ecb
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_TextShapeDescriptor.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_XConnectorShape.class b/qadevOOo/bin/ifc/drawing/_XConnectorShape.class
new file mode 100644
index 000000000000..f8c0c509bf1b
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_XConnectorShape.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_XControlShape.class b/qadevOOo/bin/ifc/drawing/_XControlShape.class
new file mode 100644
index 000000000000..68d723148869
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_XControlShape.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_XDrawPageDuplicator.class b/qadevOOo/bin/ifc/drawing/_XDrawPageDuplicator.class
new file mode 100644
index 000000000000..7dbd781779dd
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_XDrawPageDuplicator.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_XDrawPageSupplier.class b/qadevOOo/bin/ifc/drawing/_XDrawPageSupplier.class
new file mode 100644
index 000000000000..527fe3adf9bd
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_XDrawPageSupplier.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_XDrawPages.class b/qadevOOo/bin/ifc/drawing/_XDrawPages.class
new file mode 100644
index 000000000000..f1d38e08b96d
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_XDrawPages.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_XDrawPagesSupplier.class b/qadevOOo/bin/ifc/drawing/_XDrawPagesSupplier.class
new file mode 100644
index 000000000000..e847a6e830f8
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_XDrawPagesSupplier.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_XDrawView.class b/qadevOOo/bin/ifc/drawing/_XDrawView.class
new file mode 100644
index 000000000000..7af7196d44e2
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_XDrawView.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_XGluePointsSupplier.class b/qadevOOo/bin/ifc/drawing/_XGluePointsSupplier.class
new file mode 100644
index 000000000000..b4348987f3e6
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_XGluePointsSupplier.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_XLayerManager.class b/qadevOOo/bin/ifc/drawing/_XLayerManager.class
new file mode 100644
index 000000000000..a8fe46d86b71
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_XLayerManager.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_XLayerSupplier.class b/qadevOOo/bin/ifc/drawing/_XLayerSupplier.class
new file mode 100644
index 000000000000..01e48a29ebfe
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_XLayerSupplier.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_XMasterPageTarget.class b/qadevOOo/bin/ifc/drawing/_XMasterPageTarget.class
new file mode 100644
index 000000000000..46eb3fd89d72
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_XMasterPageTarget.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_XMasterPagesSupplier.class b/qadevOOo/bin/ifc/drawing/_XMasterPagesSupplier.class
new file mode 100644
index 000000000000..8c8b0f64c5c7
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_XMasterPagesSupplier.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_XShape.class b/qadevOOo/bin/ifc/drawing/_XShape.class
new file mode 100644
index 000000000000..ee76ea3be33a
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_XShape.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_XShapeBinder.class b/qadevOOo/bin/ifc/drawing/_XShapeBinder.class
new file mode 100644
index 000000000000..4afdc5f52662
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_XShapeBinder.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_XShapeCombiner.class b/qadevOOo/bin/ifc/drawing/_XShapeCombiner.class
new file mode 100644
index 000000000000..b00d357b34a2
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_XShapeCombiner.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_XShapeDescriptor.class b/qadevOOo/bin/ifc/drawing/_XShapeDescriptor.class
new file mode 100644
index 000000000000..269b5ee1b638
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_XShapeDescriptor.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_XShapeGroup.class b/qadevOOo/bin/ifc/drawing/_XShapeGroup.class
new file mode 100644
index 000000000000..dc34c0428e09
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_XShapeGroup.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_XShapeGrouper.class b/qadevOOo/bin/ifc/drawing/_XShapeGrouper.class
new file mode 100644
index 000000000000..774cd3132da2
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_XShapeGrouper.class differ
diff --git a/qadevOOo/bin/ifc/drawing/_XShapes.class b/qadevOOo/bin/ifc/drawing/_XShapes.class
new file mode 100644
index 000000000000..91d4c3f58620
Binary files /dev/null and b/qadevOOo/bin/ifc/drawing/_XShapes.class differ
diff --git a/qadevOOo/bin/ifc/form/_DataAwareControlModel$1.class b/qadevOOo/bin/ifc/form/_DataAwareControlModel$1.class
new file mode 100644
index 000000000000..2a654155bc8b
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_DataAwareControlModel$1.class differ
diff --git a/qadevOOo/bin/ifc/form/_DataAwareControlModel$2.class b/qadevOOo/bin/ifc/form/_DataAwareControlModel$2.class
new file mode 100644
index 000000000000..67b47dac2b79
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_DataAwareControlModel$2.class differ
diff --git a/qadevOOo/bin/ifc/form/_DataAwareControlModel.class b/qadevOOo/bin/ifc/form/_DataAwareControlModel.class
new file mode 100644
index 000000000000..189900f4e36a
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_DataAwareControlModel.class differ
diff --git a/qadevOOo/bin/ifc/form/_FormComponent.class b/qadevOOo/bin/ifc/form/_FormComponent.class
new file mode 100644
index 000000000000..4b5179f4a2d4
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_FormComponent.class differ
diff --git a/qadevOOo/bin/ifc/form/_FormControlModel.class b/qadevOOo/bin/ifc/form/_FormControlModel.class
new file mode 100644
index 000000000000..b05a18c7a258
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_FormControlModel.class differ
diff --git a/qadevOOo/bin/ifc/form/_XApproveActionBroadcaster$TestListener.class b/qadevOOo/bin/ifc/form/_XApproveActionBroadcaster$TestListener.class
new file mode 100644
index 000000000000..a612fb3d19d8
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XApproveActionBroadcaster$TestListener.class differ
diff --git a/qadevOOo/bin/ifc/form/_XApproveActionBroadcaster.class b/qadevOOo/bin/ifc/form/_XApproveActionBroadcaster.class
new file mode 100644
index 000000000000..5f7fcfcc3935
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XApproveActionBroadcaster.class differ
diff --git a/qadevOOo/bin/ifc/form/_XBoundComponent.class b/qadevOOo/bin/ifc/form/_XBoundComponent.class
new file mode 100644
index 000000000000..ea0237995247
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XBoundComponent.class differ
diff --git a/qadevOOo/bin/ifc/form/_XBoundControl.class b/qadevOOo/bin/ifc/form/_XBoundControl.class
new file mode 100644
index 000000000000..90d4e79f2c3f
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XBoundControl.class differ
diff --git a/qadevOOo/bin/ifc/form/_XChangeBroadcaster$Changer.class b/qadevOOo/bin/ifc/form/_XChangeBroadcaster$Changer.class
new file mode 100644
index 000000000000..3b270320e7b9
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XChangeBroadcaster$Changer.class differ
diff --git a/qadevOOo/bin/ifc/form/_XChangeBroadcaster$MyChangeListener.class b/qadevOOo/bin/ifc/form/_XChangeBroadcaster$MyChangeListener.class
new file mode 100644
index 000000000000..60bb919a642f
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XChangeBroadcaster$MyChangeListener.class differ
diff --git a/qadevOOo/bin/ifc/form/_XChangeBroadcaster.class b/qadevOOo/bin/ifc/form/_XChangeBroadcaster.class
new file mode 100644
index 000000000000..882aa5e64e52
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XChangeBroadcaster.class differ
diff --git a/qadevOOo/bin/ifc/form/_XConfirmDeleteBroadcaster$ConfirmDeleteImpl.class b/qadevOOo/bin/ifc/form/_XConfirmDeleteBroadcaster$ConfirmDeleteImpl.class
new file mode 100644
index 000000000000..088877e268d6
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XConfirmDeleteBroadcaster$ConfirmDeleteImpl.class differ
diff --git a/qadevOOo/bin/ifc/form/_XConfirmDeleteBroadcaster.class b/qadevOOo/bin/ifc/form/_XConfirmDeleteBroadcaster.class
new file mode 100644
index 000000000000..5415e4b2a153
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XConfirmDeleteBroadcaster.class differ
diff --git a/qadevOOo/bin/ifc/form/_XDatabaseParameterBroadcaster$CheckParameterListener.class b/qadevOOo/bin/ifc/form/_XDatabaseParameterBroadcaster$CheckParameterListener.class
new file mode 100644
index 000000000000..61bc8491fde3
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XDatabaseParameterBroadcaster$CheckParameterListener.class differ
diff --git a/qadevOOo/bin/ifc/form/_XDatabaseParameterBroadcaster.class b/qadevOOo/bin/ifc/form/_XDatabaseParameterBroadcaster.class
new file mode 100644
index 000000000000..fc8deb970f81
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XDatabaseParameterBroadcaster.class differ
diff --git a/qadevOOo/bin/ifc/form/_XFormController$MyListener.class b/qadevOOo/bin/ifc/form/_XFormController$MyListener.class
new file mode 100644
index 000000000000..d36c7ced8d1f
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XFormController$MyListener.class differ
diff --git a/qadevOOo/bin/ifc/form/_XFormController.class b/qadevOOo/bin/ifc/form/_XFormController.class
new file mode 100644
index 000000000000..5f923ea58488
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XFormController.class differ
diff --git a/qadevOOo/bin/ifc/form/_XFormsSupplier.class b/qadevOOo/bin/ifc/form/_XFormsSupplier.class
new file mode 100644
index 000000000000..41abf81bdf8a
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XFormsSupplier.class differ
diff --git a/qadevOOo/bin/ifc/form/_XGrid.class b/qadevOOo/bin/ifc/form/_XGrid.class
new file mode 100644
index 000000000000..528eda8b6534
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XGrid.class differ
diff --git a/qadevOOo/bin/ifc/form/_XGridColumnFactory.class b/qadevOOo/bin/ifc/form/_XGridColumnFactory.class
new file mode 100644
index 000000000000..78b1cd9fe6ed
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XGridColumnFactory.class differ
diff --git a/qadevOOo/bin/ifc/form/_XGridFieldDataSupplier.class b/qadevOOo/bin/ifc/form/_XGridFieldDataSupplier.class
new file mode 100644
index 000000000000..ed49af625057
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XGridFieldDataSupplier.class differ
diff --git a/qadevOOo/bin/ifc/form/_XImageProducerSupplier.class b/qadevOOo/bin/ifc/form/_XImageProducerSupplier.class
new file mode 100644
index 000000000000..590da52df359
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XImageProducerSupplier.class differ
diff --git a/qadevOOo/bin/ifc/form/_XLoadListener.class b/qadevOOo/bin/ifc/form/_XLoadListener.class
new file mode 100644
index 000000000000..a8bcc04d44ac
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XLoadListener.class differ
diff --git a/qadevOOo/bin/ifc/form/_XLoadable$TestLoadListener.class b/qadevOOo/bin/ifc/form/_XLoadable$TestLoadListener.class
new file mode 100644
index 000000000000..5096f59c62f5
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XLoadable$TestLoadListener.class differ
diff --git a/qadevOOo/bin/ifc/form/_XLoadable.class b/qadevOOo/bin/ifc/form/_XLoadable.class
new file mode 100644
index 000000000000..f62be1601a9f
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XLoadable.class differ
diff --git a/qadevOOo/bin/ifc/form/_XReset$MyResetListener.class b/qadevOOo/bin/ifc/form/_XReset$MyResetListener.class
new file mode 100644
index 000000000000..fef6e5858ef0
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XReset$MyResetListener.class differ
diff --git a/qadevOOo/bin/ifc/form/_XReset$MyResetListener2.class b/qadevOOo/bin/ifc/form/_XReset$MyResetListener2.class
new file mode 100644
index 000000000000..66f4fa1d791e
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XReset$MyResetListener2.class differ
diff --git a/qadevOOo/bin/ifc/form/_XReset.class b/qadevOOo/bin/ifc/form/_XReset.class
new file mode 100644
index 000000000000..c8f405b51cbe
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XReset.class differ
diff --git a/qadevOOo/bin/ifc/form/_XSubmit$MySubmitListener.class b/qadevOOo/bin/ifc/form/_XSubmit$MySubmitListener.class
new file mode 100644
index 000000000000..673a35d23aee
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XSubmit$MySubmitListener.class differ
diff --git a/qadevOOo/bin/ifc/form/_XSubmit.class b/qadevOOo/bin/ifc/form/_XSubmit.class
new file mode 100644
index 000000000000..e3c409a62db2
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XSubmit.class differ
diff --git a/qadevOOo/bin/ifc/form/_XUpdateBroadcaster$TestListener.class b/qadevOOo/bin/ifc/form/_XUpdateBroadcaster$TestListener.class
new file mode 100644
index 000000000000..5df008b1d374
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XUpdateBroadcaster$TestListener.class differ
diff --git a/qadevOOo/bin/ifc/form/_XUpdateBroadcaster$UpdateChecker.class b/qadevOOo/bin/ifc/form/_XUpdateBroadcaster$UpdateChecker.class
new file mode 100644
index 000000000000..219160ff5712
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XUpdateBroadcaster$UpdateChecker.class differ
diff --git a/qadevOOo/bin/ifc/form/_XUpdateBroadcaster.class b/qadevOOo/bin/ifc/form/_XUpdateBroadcaster.class
new file mode 100644
index 000000000000..f919b2183fd4
Binary files /dev/null and b/qadevOOo/bin/ifc/form/_XUpdateBroadcaster.class differ
diff --git a/qadevOOo/bin/ifc/form/binding/_BindableDatabaseCheckBox.class b/qadevOOo/bin/ifc/form/binding/_BindableDatabaseCheckBox.class
new file mode 100644
index 000000000000..4232f66aacd5
Binary files /dev/null and b/qadevOOo/bin/ifc/form/binding/_BindableDatabaseCheckBox.class differ
diff --git a/qadevOOo/bin/ifc/form/binding/_BindableDatabaseRadioButton.class b/qadevOOo/bin/ifc/form/binding/_BindableDatabaseRadioButton.class
new file mode 100644
index 000000000000..ad95e038f26b
Binary files /dev/null and b/qadevOOo/bin/ifc/form/binding/_BindableDatabaseRadioButton.class differ
diff --git a/qadevOOo/bin/ifc/form/binding/_XBindableValue$MyValueBinding.class b/qadevOOo/bin/ifc/form/binding/_XBindableValue$MyValueBinding.class
new file mode 100644
index 000000000000..dc5450e329c6
Binary files /dev/null and b/qadevOOo/bin/ifc/form/binding/_XBindableValue$MyValueBinding.class differ
diff --git a/qadevOOo/bin/ifc/form/binding/_XBindableValue.class b/qadevOOo/bin/ifc/form/binding/_XBindableValue.class
new file mode 100644
index 000000000000..f9b4c429e128
Binary files /dev/null and b/qadevOOo/bin/ifc/form/binding/_XBindableValue.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_CheckBox.class b/qadevOOo/bin/ifc/form/component/_CheckBox.class
new file mode 100644
index 000000000000..c4596d9c8f01
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_CheckBox.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_ComboBox.class b/qadevOOo/bin/ifc/form/component/_ComboBox.class
new file mode 100644
index 000000000000..ef059260c901
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_ComboBox.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_CommandButton.class b/qadevOOo/bin/ifc/form/component/_CommandButton.class
new file mode 100644
index 000000000000..84b94fc347da
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_CommandButton.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_CurrencyField$1.class b/qadevOOo/bin/ifc/form/component/_CurrencyField$1.class
new file mode 100644
index 000000000000..520f034e307a
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_CurrencyField$1.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_CurrencyField.class b/qadevOOo/bin/ifc/form/component/_CurrencyField.class
new file mode 100644
index 000000000000..df879d01bcc9
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_CurrencyField.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_DataForm$1.class b/qadevOOo/bin/ifc/form/component/_DataForm$1.class
new file mode 100644
index 000000000000..777dfc1d5aca
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_DataForm$1.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_DataForm$2.class b/qadevOOo/bin/ifc/form/component/_DataForm$2.class
new file mode 100644
index 000000000000..1792ac1b4f2c
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_DataForm$2.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_DataForm.class b/qadevOOo/bin/ifc/form/component/_DataForm.class
new file mode 100644
index 000000000000..2ce818154d97
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_DataForm.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_DatabaseComboBox.class b/qadevOOo/bin/ifc/form/component/_DatabaseComboBox.class
new file mode 100644
index 000000000000..70c7f358a06a
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_DatabaseComboBox.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_DatabaseForm$1.class b/qadevOOo/bin/ifc/form/component/_DatabaseForm$1.class
new file mode 100644
index 000000000000..bc69258438a0
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_DatabaseForm$1.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_DatabaseForm$2.class b/qadevOOo/bin/ifc/form/component/_DatabaseForm$2.class
new file mode 100644
index 000000000000..930d34c65e86
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_DatabaseForm$2.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_DatabaseForm.class b/qadevOOo/bin/ifc/form/component/_DatabaseForm.class
new file mode 100644
index 000000000000..08eeef4e4a79
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_DatabaseForm.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_DatabaseFormattedField.class b/qadevOOo/bin/ifc/form/component/_DatabaseFormattedField.class
new file mode 100644
index 000000000000..fbd7c77c5a41
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_DatabaseFormattedField.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_DatabaseImageControl.class b/qadevOOo/bin/ifc/form/component/_DatabaseImageControl.class
new file mode 100644
index 000000000000..e78d71e532ce
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_DatabaseImageControl.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_DatabaseListBox.class b/qadevOOo/bin/ifc/form/component/_DatabaseListBox.class
new file mode 100644
index 000000000000..6289f876bbcd
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_DatabaseListBox.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_DatabasePatternField.class b/qadevOOo/bin/ifc/form/component/_DatabasePatternField.class
new file mode 100644
index 000000000000..1ae49587c8e0
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_DatabasePatternField.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_DatabaseTextField.class b/qadevOOo/bin/ifc/form/component/_DatabaseTextField.class
new file mode 100644
index 000000000000..1a4115123a24
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_DatabaseTextField.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_DateField$1.class b/qadevOOo/bin/ifc/form/component/_DateField$1.class
new file mode 100644
index 000000000000..f735fe00bfba
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_DateField$1.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_DateField.class b/qadevOOo/bin/ifc/form/component/_DateField.class
new file mode 100644
index 000000000000..54b55430d310
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_DateField.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_FileControl.class b/qadevOOo/bin/ifc/form/component/_FileControl.class
new file mode 100644
index 000000000000..b805db3cc3ba
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_FileControl.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_FormattedField.class b/qadevOOo/bin/ifc/form/component/_FormattedField.class
new file mode 100644
index 000000000000..a274c525e0e0
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_FormattedField.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_GridControl$1.class b/qadevOOo/bin/ifc/form/component/_GridControl$1.class
new file mode 100644
index 000000000000..65173bd897b8
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_GridControl$1.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_GridControl$2.class b/qadevOOo/bin/ifc/form/component/_GridControl$2.class
new file mode 100644
index 000000000000..0d183acebf5a
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_GridControl$2.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_GridControl$3.class b/qadevOOo/bin/ifc/form/component/_GridControl$3.class
new file mode 100644
index 000000000000..77b6f98daf56
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_GridControl$3.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_GridControl$4.class b/qadevOOo/bin/ifc/form/component/_GridControl$4.class
new file mode 100644
index 000000000000..6956dc5f7d2d
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_GridControl$4.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_GridControl.class b/qadevOOo/bin/ifc/form/component/_GridControl.class
new file mode 100644
index 000000000000..0ec738f2de9b
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_GridControl.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_HTMLForm.class b/qadevOOo/bin/ifc/form/component/_HTMLForm.class
new file mode 100644
index 000000000000..52b8b4847373
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_HTMLForm.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_HiddenControl.class b/qadevOOo/bin/ifc/form/component/_HiddenControl.class
new file mode 100644
index 000000000000..a3fcb33a4378
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_HiddenControl.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_ImageButton.class b/qadevOOo/bin/ifc/form/component/_ImageButton.class
new file mode 100644
index 000000000000..ddf224a208ec
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_ImageButton.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_ListBox.class b/qadevOOo/bin/ifc/form/component/_ListBox.class
new file mode 100644
index 000000000000..d548de726842
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_ListBox.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_NavigationToolBar$1.class b/qadevOOo/bin/ifc/form/component/_NavigationToolBar$1.class
new file mode 100644
index 000000000000..9874a120283c
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_NavigationToolBar$1.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_NavigationToolBar$2.class b/qadevOOo/bin/ifc/form/component/_NavigationToolBar$2.class
new file mode 100644
index 000000000000..8d3076a01039
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_NavigationToolBar$2.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_NavigationToolBar.class b/qadevOOo/bin/ifc/form/component/_NavigationToolBar.class
new file mode 100644
index 000000000000..33ab12e4ea93
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_NavigationToolBar.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_NumericField$1.class b/qadevOOo/bin/ifc/form/component/_NumericField$1.class
new file mode 100644
index 000000000000..fce9001dbcf3
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_NumericField$1.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_NumericField.class b/qadevOOo/bin/ifc/form/component/_NumericField.class
new file mode 100644
index 000000000000..306e82f0afba
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_NumericField.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_PatternField.class b/qadevOOo/bin/ifc/form/component/_PatternField.class
new file mode 100644
index 000000000000..dc1f70110bb4
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_PatternField.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_RadioButton.class b/qadevOOo/bin/ifc/form/component/_RadioButton.class
new file mode 100644
index 000000000000..32e2e7fa248a
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_RadioButton.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_RichTextControl.class b/qadevOOo/bin/ifc/form/component/_RichTextControl.class
new file mode 100644
index 000000000000..5adc94036336
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_RichTextControl.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_ScrollBar.class b/qadevOOo/bin/ifc/form/component/_ScrollBar.class
new file mode 100644
index 000000000000..15b0b46d1c1a
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_ScrollBar.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_SpinButton.class b/qadevOOo/bin/ifc/form/component/_SpinButton.class
new file mode 100644
index 000000000000..942114dd4fee
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_SpinButton.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_TextField.class b/qadevOOo/bin/ifc/form/component/_TextField.class
new file mode 100644
index 000000000000..1644f161f23b
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_TextField.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_TimeField$1.class b/qadevOOo/bin/ifc/form/component/_TimeField$1.class
new file mode 100644
index 000000000000..61b80c1a77ea
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_TimeField$1.class differ
diff --git a/qadevOOo/bin/ifc/form/component/_TimeField.class b/qadevOOo/bin/ifc/form/component/_TimeField.class
new file mode 100644
index 000000000000..7026e97b5653
Binary files /dev/null and b/qadevOOo/bin/ifc/form/component/_TimeField.class differ
diff --git a/qadevOOo/bin/ifc/form/submission/_XSubmission$MyListener.class b/qadevOOo/bin/ifc/form/submission/_XSubmission$MyListener.class
new file mode 100644
index 000000000000..5c832a1c4420
Binary files /dev/null and b/qadevOOo/bin/ifc/form/submission/_XSubmission$MyListener.class differ
diff --git a/qadevOOo/bin/ifc/form/submission/_XSubmission.class b/qadevOOo/bin/ifc/form/submission/_XSubmission.class
new file mode 100644
index 000000000000..a2cc6521471f
Binary files /dev/null and b/qadevOOo/bin/ifc/form/submission/_XSubmission.class differ
diff --git a/qadevOOo/bin/ifc/form/submission/_XSubmissionSupplier$MyXSubmission.class b/qadevOOo/bin/ifc/form/submission/_XSubmissionSupplier$MyXSubmission.class
new file mode 100644
index 000000000000..d5bd3ca42e06
Binary files /dev/null and b/qadevOOo/bin/ifc/form/submission/_XSubmissionSupplier$MyXSubmission.class differ
diff --git a/qadevOOo/bin/ifc/form/submission/_XSubmissionSupplier.class b/qadevOOo/bin/ifc/form/submission/_XSubmissionSupplier.class
new file mode 100644
index 000000000000..31e3794d591e
Binary files /dev/null and b/qadevOOo/bin/ifc/form/submission/_XSubmissionSupplier.class differ
diff --git a/qadevOOo/bin/ifc/form/validation/_XValidatable$MyValidator.class b/qadevOOo/bin/ifc/form/validation/_XValidatable$MyValidator.class
new file mode 100644
index 000000000000..95f4017cf220
Binary files /dev/null and b/qadevOOo/bin/ifc/form/validation/_XValidatable$MyValidator.class differ
diff --git a/qadevOOo/bin/ifc/form/validation/_XValidatable.class b/qadevOOo/bin/ifc/form/validation/_XValidatable.class
new file mode 100644
index 000000000000..e6222da19b26
Binary files /dev/null and b/qadevOOo/bin/ifc/form/validation/_XValidatable.class differ
diff --git a/qadevOOo/bin/ifc/form/validation/_XValidatableFormComponent$MyListener.class b/qadevOOo/bin/ifc/form/validation/_XValidatableFormComponent$MyListener.class
new file mode 100644
index 000000000000..d0da96530ec5
Binary files /dev/null and b/qadevOOo/bin/ifc/form/validation/_XValidatableFormComponent$MyListener.class differ
diff --git a/qadevOOo/bin/ifc/form/validation/_XValidatableFormComponent.class b/qadevOOo/bin/ifc/form/validation/_XValidatableFormComponent.class
new file mode 100644
index 000000000000..41359ac546ee
Binary files /dev/null and b/qadevOOo/bin/ifc/form/validation/_XValidatableFormComponent.class differ
diff --git a/qadevOOo/bin/ifc/form/validation/_XValidityConstraintListener$MyValidator.class b/qadevOOo/bin/ifc/form/validation/_XValidityConstraintListener$MyValidator.class
new file mode 100644
index 000000000000..04e3759e7a5a
Binary files /dev/null and b/qadevOOo/bin/ifc/form/validation/_XValidityConstraintListener$MyValidator.class differ
diff --git a/qadevOOo/bin/ifc/form/validation/_XValidityConstraintListener.class b/qadevOOo/bin/ifc/form/validation/_XValidityConstraintListener.class
new file mode 100644
index 000000000000..019081868b16
Binary files /dev/null and b/qadevOOo/bin/ifc/form/validation/_XValidityConstraintListener.class differ
diff --git a/qadevOOo/bin/ifc/formula/_FormulaProperties.class b/qadevOOo/bin/ifc/formula/_FormulaProperties.class
new file mode 100644
index 000000000000..2e34488af33f
Binary files /dev/null and b/qadevOOo/bin/ifc/formula/_FormulaProperties.class differ
diff --git a/qadevOOo/bin/ifc/frame/_Desktop.class b/qadevOOo/bin/ifc/frame/_Desktop.class
new file mode 100644
index 000000000000..cf3b0314594c
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_Desktop.class differ
diff --git a/qadevOOo/bin/ifc/frame/_Frame.class b/qadevOOo/bin/ifc/frame/_Frame.class
new file mode 100644
index 000000000000..8d5cd27b2832
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_Frame.class differ
diff --git a/qadevOOo/bin/ifc/frame/_FrameLoader.class b/qadevOOo/bin/ifc/frame/_FrameLoader.class
new file mode 100644
index 000000000000..b456c058dc94
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_FrameLoader.class differ
diff --git a/qadevOOo/bin/ifc/frame/_SynchronousFrameLoader.class b/qadevOOo/bin/ifc/frame/_SynchronousFrameLoader.class
new file mode 100644
index 000000000000..fa0f50638bd7
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_SynchronousFrameLoader.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XComponentLoader.class b/qadevOOo/bin/ifc/frame/_XComponentLoader.class
new file mode 100644
index 000000000000..af6eee835a9a
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XComponentLoader.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XController.class b/qadevOOo/bin/ifc/frame/_XController.class
new file mode 100644
index 000000000000..212306dd5f5a
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XController.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XDesktop.class b/qadevOOo/bin/ifc/frame/_XDesktop.class
new file mode 100644
index 000000000000..fa77df9f5aea
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XDesktop.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XDispatch$TestNotificationListener.class b/qadevOOo/bin/ifc/frame/_XDispatch$TestNotificationListener.class
new file mode 100644
index 000000000000..5be1c46fa460
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XDispatch$TestNotificationListener.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XDispatch$TestStatusListener.class b/qadevOOo/bin/ifc/frame/_XDispatch$TestStatusListener.class
new file mode 100644
index 000000000000..dde3462818c4
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XDispatch$TestStatusListener.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XDispatch.class b/qadevOOo/bin/ifc/frame/_XDispatch.class
new file mode 100644
index 000000000000..4e85e0c49587
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XDispatch.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XDispatchProvider.class b/qadevOOo/bin/ifc/frame/_XDispatchProvider.class
new file mode 100644
index 000000000000..b08069980568
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XDispatchProvider.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XDispatchProviderInterception$TestInterceptor.class b/qadevOOo/bin/ifc/frame/_XDispatchProviderInterception$TestInterceptor.class
new file mode 100644
index 000000000000..bf0b3eff8c82
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XDispatchProviderInterception$TestInterceptor.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XDispatchProviderInterception.class b/qadevOOo/bin/ifc/frame/_XDispatchProviderInterception.class
new file mode 100644
index 000000000000..8387c6145d1e
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XDispatchProviderInterception.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XDispatchRecorder.class b/qadevOOo/bin/ifc/frame/_XDispatchRecorder.class
new file mode 100644
index 000000000000..bdfd436f5fce
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XDispatchRecorder.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XDispatchRecorderSupplier$MyRecorder.class b/qadevOOo/bin/ifc/frame/_XDispatchRecorderSupplier$MyRecorder.class
new file mode 100644
index 000000000000..ab14cae452a0
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XDispatchRecorderSupplier$MyRecorder.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XDispatchRecorderSupplier.class b/qadevOOo/bin/ifc/frame/_XDispatchRecorderSupplier.class
new file mode 100644
index 000000000000..3bbfcfbd792d
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XDispatchRecorderSupplier.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XDocumentTemplates.class b/qadevOOo/bin/ifc/frame/_XDocumentTemplates.class
new file mode 100644
index 000000000000..36d8eb8ad05b
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XDocumentTemplates.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XFrame$TestFrameActionListener.class b/qadevOOo/bin/ifc/frame/_XFrame$TestFrameActionListener.class
new file mode 100644
index 000000000000..2de33a7dadfe
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XFrame$TestFrameActionListener.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XFrame.class b/qadevOOo/bin/ifc/frame/_XFrame.class
new file mode 100644
index 000000000000..e91bb5ef8c11
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XFrame.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XFrameActionListener.class b/qadevOOo/bin/ifc/frame/_XFrameActionListener.class
new file mode 100644
index 000000000000..144955a302ff
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XFrameActionListener.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XFrameLoader$TestListener.class b/qadevOOo/bin/ifc/frame/_XFrameLoader$TestListener.class
new file mode 100644
index 000000000000..acb34894fd94
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XFrameLoader$TestListener.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XFrameLoader.class b/qadevOOo/bin/ifc/frame/_XFrameLoader.class
new file mode 100644
index 000000000000..7929faecb008
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XFrameLoader.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XFramesSupplier.class b/qadevOOo/bin/ifc/frame/_XFramesSupplier.class
new file mode 100644
index 000000000000..7482f22653b3
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XFramesSupplier.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XLayoutManager.class b/qadevOOo/bin/ifc/frame/_XLayoutManager.class
new file mode 100644
index 000000000000..d3e976a29895
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XLayoutManager.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XModel.class b/qadevOOo/bin/ifc/frame/_XModel.class
new file mode 100644
index 000000000000..0c9f0f261b10
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XModel.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XModuleManager.class b/qadevOOo/bin/ifc/frame/_XModuleManager.class
new file mode 100644
index 000000000000..65a9c7a377d2
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XModuleManager.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XNotifyingDispatch$TestNotificationListener.class b/qadevOOo/bin/ifc/frame/_XNotifyingDispatch$TestNotificationListener.class
new file mode 100644
index 000000000000..ea95aebb0d2c
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XNotifyingDispatch$TestNotificationListener.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XNotifyingDispatch.class b/qadevOOo/bin/ifc/frame/_XNotifyingDispatch.class
new file mode 100644
index 000000000000..e540a3dda45c
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XNotifyingDispatch.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XPopupMenuController$PopupMenuImpl.class b/qadevOOo/bin/ifc/frame/_XPopupMenuController$PopupMenuImpl.class
new file mode 100644
index 000000000000..a4995f0d25fc
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XPopupMenuController$PopupMenuImpl.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XPopupMenuController.class b/qadevOOo/bin/ifc/frame/_XPopupMenuController.class
new file mode 100644
index 000000000000..a9b2daec88b6
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XPopupMenuController.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XStatusListener.class b/qadevOOo/bin/ifc/frame/_XStatusListener.class
new file mode 100644
index 000000000000..0801178aa4b1
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XStatusListener.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XStorable.class b/qadevOOo/bin/ifc/frame/_XStorable.class
new file mode 100644
index 000000000000..6037124c76d0
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XStorable.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XSynchronousFrameLoader$1.class b/qadevOOo/bin/ifc/frame/_XSynchronousFrameLoader$1.class
new file mode 100644
index 000000000000..ea6c52c2e77c
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XSynchronousFrameLoader$1.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XSynchronousFrameLoader.class b/qadevOOo/bin/ifc/frame/_XSynchronousFrameLoader.class
new file mode 100644
index 000000000000..1fbbb76700b0
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XSynchronousFrameLoader.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XTasksSupplier.class b/qadevOOo/bin/ifc/frame/_XTasksSupplier.class
new file mode 100644
index 000000000000..8db5fbfa2913
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XTasksSupplier.class differ
diff --git a/qadevOOo/bin/ifc/frame/_XUIControllerRegistration.class b/qadevOOo/bin/ifc/frame/_XUIControllerRegistration.class
new file mode 100644
index 000000000000..93f52ad03f47
Binary files /dev/null and b/qadevOOo/bin/ifc/frame/_XUIControllerRegistration.class differ
diff --git a/qadevOOo/bin/ifc/i18n/_XBreakIterator.class b/qadevOOo/bin/ifc/i18n/_XBreakIterator.class
new file mode 100644
index 000000000000..87ad9c788c55
Binary files /dev/null and b/qadevOOo/bin/ifc/i18n/_XBreakIterator.class differ
diff --git a/qadevOOo/bin/ifc/i18n/_XCalendar.class b/qadevOOo/bin/ifc/i18n/_XCalendar.class
new file mode 100644
index 000000000000..b3509a503da5
Binary files /dev/null and b/qadevOOo/bin/ifc/i18n/_XCalendar.class differ
diff --git a/qadevOOo/bin/ifc/i18n/_XCharacterClassification.class b/qadevOOo/bin/ifc/i18n/_XCharacterClassification.class
new file mode 100644
index 000000000000..725361efb420
Binary files /dev/null and b/qadevOOo/bin/ifc/i18n/_XCharacterClassification.class differ
diff --git a/qadevOOo/bin/ifc/i18n/_XCollator.class b/qadevOOo/bin/ifc/i18n/_XCollator.class
new file mode 100644
index 000000000000..44a2864fc357
Binary files /dev/null and b/qadevOOo/bin/ifc/i18n/_XCollator.class differ
diff --git a/qadevOOo/bin/ifc/i18n/_XExtendedCalendar.class b/qadevOOo/bin/ifc/i18n/_XExtendedCalendar.class
new file mode 100644
index 000000000000..c7b45afe5cb8
Binary files /dev/null and b/qadevOOo/bin/ifc/i18n/_XExtendedCalendar.class differ
diff --git a/qadevOOo/bin/ifc/i18n/_XExtendedIndexEntrySupplier$UnicodeStringPair.class b/qadevOOo/bin/ifc/i18n/_XExtendedIndexEntrySupplier$UnicodeStringPair.class
new file mode 100644
index 000000000000..9f25ae718b6c
Binary files /dev/null and b/qadevOOo/bin/ifc/i18n/_XExtendedIndexEntrySupplier$UnicodeStringPair.class differ
diff --git a/qadevOOo/bin/ifc/i18n/_XExtendedIndexEntrySupplier.class b/qadevOOo/bin/ifc/i18n/_XExtendedIndexEntrySupplier.class
new file mode 100644
index 000000000000..e7d0023d19b9
Binary files /dev/null and b/qadevOOo/bin/ifc/i18n/_XExtendedIndexEntrySupplier.class differ
diff --git a/qadevOOo/bin/ifc/i18n/_XExtendedTransliteration.class b/qadevOOo/bin/ifc/i18n/_XExtendedTransliteration.class
new file mode 100644
index 000000000000..daa43859ec23
Binary files /dev/null and b/qadevOOo/bin/ifc/i18n/_XExtendedTransliteration.class differ
diff --git a/qadevOOo/bin/ifc/i18n/_XIndexEntrySupplier.class b/qadevOOo/bin/ifc/i18n/_XIndexEntrySupplier.class
new file mode 100644
index 000000000000..00a78049a22e
Binary files /dev/null and b/qadevOOo/bin/ifc/i18n/_XIndexEntrySupplier.class differ
diff --git a/qadevOOo/bin/ifc/i18n/_XLocaleData.class b/qadevOOo/bin/ifc/i18n/_XLocaleData.class
new file mode 100644
index 000000000000..5df3df45b39b
Binary files /dev/null and b/qadevOOo/bin/ifc/i18n/_XLocaleData.class differ
diff --git a/qadevOOo/bin/ifc/i18n/_XNumberFormatCode.class b/qadevOOo/bin/ifc/i18n/_XNumberFormatCode.class
new file mode 100644
index 000000000000..885a5de17a5f
Binary files /dev/null and b/qadevOOo/bin/ifc/i18n/_XNumberFormatCode.class differ
diff --git a/qadevOOo/bin/ifc/i18n/_XTransliteration.class b/qadevOOo/bin/ifc/i18n/_XTransliteration.class
new file mode 100644
index 000000000000..022d29e32c7a
Binary files /dev/null and b/qadevOOo/bin/ifc/i18n/_XTransliteration.class differ
diff --git a/qadevOOo/bin/ifc/inspection/_XObjectInspector.class b/qadevOOo/bin/ifc/inspection/_XObjectInspector.class
new file mode 100644
index 000000000000..c5e3f53e9837
Binary files /dev/null and b/qadevOOo/bin/ifc/inspection/_XObjectInspector.class differ
diff --git a/qadevOOo/bin/ifc/inspection/_XObjectInspectorModel.class b/qadevOOo/bin/ifc/inspection/_XObjectInspectorModel.class
new file mode 100644
index 000000000000..1e98335c1649
Binary files /dev/null and b/qadevOOo/bin/ifc/inspection/_XObjectInspectorModel.class differ
diff --git a/qadevOOo/bin/ifc/io/_XActiveDataControl$TestStreamListener.class b/qadevOOo/bin/ifc/io/_XActiveDataControl$TestStreamListener.class
new file mode 100644
index 000000000000..e21fb5796c19
Binary files /dev/null and b/qadevOOo/bin/ifc/io/_XActiveDataControl$TestStreamListener.class differ
diff --git a/qadevOOo/bin/ifc/io/_XActiveDataControl.class b/qadevOOo/bin/ifc/io/_XActiveDataControl.class
new file mode 100644
index 000000000000..1d8f13e8abaa
Binary files /dev/null and b/qadevOOo/bin/ifc/io/_XActiveDataControl.class differ
diff --git a/qadevOOo/bin/ifc/io/_XActiveDataSink.class b/qadevOOo/bin/ifc/io/_XActiveDataSink.class
new file mode 100644
index 000000000000..6f3607a73939
Binary files /dev/null and b/qadevOOo/bin/ifc/io/_XActiveDataSink.class differ
diff --git a/qadevOOo/bin/ifc/io/_XActiveDataSource.class b/qadevOOo/bin/ifc/io/_XActiveDataSource.class
new file mode 100644
index 000000000000..fd5ecc6bc6b2
Binary files /dev/null and b/qadevOOo/bin/ifc/io/_XActiveDataSource.class differ
diff --git a/qadevOOo/bin/ifc/io/_XConnectable.class b/qadevOOo/bin/ifc/io/_XConnectable.class
new file mode 100644
index 000000000000..df7e12030d3f
Binary files /dev/null and b/qadevOOo/bin/ifc/io/_XConnectable.class differ
diff --git a/qadevOOo/bin/ifc/io/_XDataInputStream.class b/qadevOOo/bin/ifc/io/_XDataInputStream.class
new file mode 100644
index 000000000000..26cf7049bf3e
Binary files /dev/null and b/qadevOOo/bin/ifc/io/_XDataInputStream.class differ
diff --git a/qadevOOo/bin/ifc/io/_XDataOutputStream.class b/qadevOOo/bin/ifc/io/_XDataOutputStream.class
new file mode 100644
index 000000000000..981b5b3be067
Binary files /dev/null and b/qadevOOo/bin/ifc/io/_XDataOutputStream.class differ
diff --git a/qadevOOo/bin/ifc/io/_XInputStream.class b/qadevOOo/bin/ifc/io/_XInputStream.class
new file mode 100644
index 000000000000..a2ffd82620ad
Binary files /dev/null and b/qadevOOo/bin/ifc/io/_XInputStream.class differ
diff --git a/qadevOOo/bin/ifc/io/_XMarkableStream.class b/qadevOOo/bin/ifc/io/_XMarkableStream.class
new file mode 100644
index 000000000000..bcdea42f6a6c
Binary files /dev/null and b/qadevOOo/bin/ifc/io/_XMarkableStream.class differ
diff --git a/qadevOOo/bin/ifc/io/_XObjectInputStream.class b/qadevOOo/bin/ifc/io/_XObjectInputStream.class
new file mode 100644
index 000000000000..4ed8d71d779a
Binary files /dev/null and b/qadevOOo/bin/ifc/io/_XObjectInputStream.class differ
diff --git a/qadevOOo/bin/ifc/io/_XObjectOutputStream.class b/qadevOOo/bin/ifc/io/_XObjectOutputStream.class
new file mode 100644
index 000000000000..cc70fc3ef421
Binary files /dev/null and b/qadevOOo/bin/ifc/io/_XObjectOutputStream.class differ
diff --git a/qadevOOo/bin/ifc/io/_XOutputStream$StreamChecker.class b/qadevOOo/bin/ifc/io/_XOutputStream$StreamChecker.class
new file mode 100644
index 000000000000..232b8781ad07
Binary files /dev/null and b/qadevOOo/bin/ifc/io/_XOutputStream$StreamChecker.class differ
diff --git a/qadevOOo/bin/ifc/io/_XOutputStream.class b/qadevOOo/bin/ifc/io/_XOutputStream.class
new file mode 100644
index 000000000000..c42930f838b5
Binary files /dev/null and b/qadevOOo/bin/ifc/io/_XOutputStream.class differ
diff --git a/qadevOOo/bin/ifc/io/_XPersistObject.class b/qadevOOo/bin/ifc/io/_XPersistObject.class
new file mode 100644
index 000000000000..774df4e960a7
Binary files /dev/null and b/qadevOOo/bin/ifc/io/_XPersistObject.class differ
diff --git a/qadevOOo/bin/ifc/java/_XJavaThreadRegister_11.class b/qadevOOo/bin/ifc/java/_XJavaThreadRegister_11.class
new file mode 100644
index 000000000000..25f4152a3d73
Binary files /dev/null and b/qadevOOo/bin/ifc/java/_XJavaThreadRegister_11.class differ
diff --git a/qadevOOo/bin/ifc/java/_XJavaVM.class b/qadevOOo/bin/ifc/java/_XJavaVM.class
new file mode 100644
index 000000000000..6f596be0d659
Binary files /dev/null and b/qadevOOo/bin/ifc/java/_XJavaVM.class differ
diff --git a/qadevOOo/bin/ifc/lang/_ServiceManager.class b/qadevOOo/bin/ifc/lang/_ServiceManager.class
new file mode 100644
index 000000000000..e7dc528a8f08
Binary files /dev/null and b/qadevOOo/bin/ifc/lang/_ServiceManager.class differ
diff --git a/qadevOOo/bin/ifc/lang/_XComponent$MyEventListener.class b/qadevOOo/bin/ifc/lang/_XComponent$MyEventListener.class
new file mode 100644
index 000000000000..cfed517610fe
Binary files /dev/null and b/qadevOOo/bin/ifc/lang/_XComponent$MyEventListener.class differ
diff --git a/qadevOOo/bin/ifc/lang/_XComponent$MyEventListener2.class b/qadevOOo/bin/ifc/lang/_XComponent$MyEventListener2.class
new file mode 100644
index 000000000000..1122b96024c6
Binary files /dev/null and b/qadevOOo/bin/ifc/lang/_XComponent$MyEventListener2.class differ
diff --git a/qadevOOo/bin/ifc/lang/_XComponent.class b/qadevOOo/bin/ifc/lang/_XComponent.class
new file mode 100644
index 000000000000..e06ba0b6f2bf
Binary files /dev/null and b/qadevOOo/bin/ifc/lang/_XComponent.class differ
diff --git a/qadevOOo/bin/ifc/lang/_XEventListener.class b/qadevOOo/bin/ifc/lang/_XEventListener.class
new file mode 100644
index 000000000000..a1b2af8b896d
Binary files /dev/null and b/qadevOOo/bin/ifc/lang/_XEventListener.class differ
diff --git a/qadevOOo/bin/ifc/lang/_XInitialization.class b/qadevOOo/bin/ifc/lang/_XInitialization.class
new file mode 100644
index 000000000000..d06fbc221416
Binary files /dev/null and b/qadevOOo/bin/ifc/lang/_XInitialization.class differ
diff --git a/qadevOOo/bin/ifc/lang/_XLocalizable.class b/qadevOOo/bin/ifc/lang/_XLocalizable.class
new file mode 100644
index 000000000000..fb5d3664917b
Binary files /dev/null and b/qadevOOo/bin/ifc/lang/_XLocalizable.class differ
diff --git a/qadevOOo/bin/ifc/lang/_XMain.class b/qadevOOo/bin/ifc/lang/_XMain.class
new file mode 100644
index 000000000000..044dfde3ad8c
Binary files /dev/null and b/qadevOOo/bin/ifc/lang/_XMain.class differ
diff --git a/qadevOOo/bin/ifc/lang/_XMultiComponentFactory.class b/qadevOOo/bin/ifc/lang/_XMultiComponentFactory.class
new file mode 100644
index 000000000000..6f7779237ee6
Binary files /dev/null and b/qadevOOo/bin/ifc/lang/_XMultiComponentFactory.class differ
diff --git a/qadevOOo/bin/ifc/lang/_XMultiServiceFactory.class b/qadevOOo/bin/ifc/lang/_XMultiServiceFactory.class
new file mode 100644
index 000000000000..b5952c98e62e
Binary files /dev/null and b/qadevOOo/bin/ifc/lang/_XMultiServiceFactory.class differ
diff --git a/qadevOOo/bin/ifc/lang/_XServiceDisplayName.class b/qadevOOo/bin/ifc/lang/_XServiceDisplayName.class
new file mode 100644
index 000000000000..7ae675a250e0
Binary files /dev/null and b/qadevOOo/bin/ifc/lang/_XServiceDisplayName.class differ
diff --git a/qadevOOo/bin/ifc/lang/_XServiceInfo.class b/qadevOOo/bin/ifc/lang/_XServiceInfo.class
new file mode 100644
index 000000000000..859a470a8516
Binary files /dev/null and b/qadevOOo/bin/ifc/lang/_XServiceInfo.class differ
diff --git a/qadevOOo/bin/ifc/lang/_XSingleServiceFactory.class b/qadevOOo/bin/ifc/lang/_XSingleServiceFactory.class
new file mode 100644
index 000000000000..979880171f25
Binary files /dev/null and b/qadevOOo/bin/ifc/lang/_XSingleServiceFactory.class differ
diff --git a/qadevOOo/bin/ifc/lang/_XTypeProvider.class b/qadevOOo/bin/ifc/lang/_XTypeProvider.class
new file mode 100644
index 000000000000..a7d1127d6a86
Binary files /dev/null and b/qadevOOo/bin/ifc/lang/_XTypeProvider.class differ
diff --git a/qadevOOo/bin/ifc/linguistic2/_LinguProperties.class b/qadevOOo/bin/ifc/linguistic2/_LinguProperties.class
new file mode 100644
index 000000000000..0c51819947bf
Binary files /dev/null and b/qadevOOo/bin/ifc/linguistic2/_LinguProperties.class differ
diff --git a/qadevOOo/bin/ifc/linguistic2/_XAvailableLocales.class b/qadevOOo/bin/ifc/linguistic2/_XAvailableLocales.class
new file mode 100644
index 000000000000..978e812f2a4d
Binary files /dev/null and b/qadevOOo/bin/ifc/linguistic2/_XAvailableLocales.class differ
diff --git a/qadevOOo/bin/ifc/linguistic2/_XDictionaryList$MyDictionaryListEventListener.class b/qadevOOo/bin/ifc/linguistic2/_XDictionaryList$MyDictionaryListEventListener.class
new file mode 100644
index 000000000000..60f9ec2be472
Binary files /dev/null and b/qadevOOo/bin/ifc/linguistic2/_XDictionaryList$MyDictionaryListEventListener.class differ
diff --git a/qadevOOo/bin/ifc/linguistic2/_XDictionaryList.class b/qadevOOo/bin/ifc/linguistic2/_XDictionaryList.class
new file mode 100644
index 000000000000..703db967f140
Binary files /dev/null and b/qadevOOo/bin/ifc/linguistic2/_XDictionaryList.class differ
diff --git a/qadevOOo/bin/ifc/linguistic2/_XHyphenator.class b/qadevOOo/bin/ifc/linguistic2/_XHyphenator.class
new file mode 100644
index 000000000000..f72e990d9bbc
Binary files /dev/null and b/qadevOOo/bin/ifc/linguistic2/_XHyphenator.class differ
diff --git a/qadevOOo/bin/ifc/linguistic2/_XLinguServiceEventBroadcaster$MyLinguServiceEventListener.class b/qadevOOo/bin/ifc/linguistic2/_XLinguServiceEventBroadcaster$MyLinguServiceEventListener.class
new file mode 100644
index 000000000000..4a810598081b
Binary files /dev/null and b/qadevOOo/bin/ifc/linguistic2/_XLinguServiceEventBroadcaster$MyLinguServiceEventListener.class differ
diff --git a/qadevOOo/bin/ifc/linguistic2/_XLinguServiceEventBroadcaster.class b/qadevOOo/bin/ifc/linguistic2/_XLinguServiceEventBroadcaster.class
new file mode 100644
index 000000000000..25a1c875e2c8
Binary files /dev/null and b/qadevOOo/bin/ifc/linguistic2/_XLinguServiceEventBroadcaster.class differ
diff --git a/qadevOOo/bin/ifc/linguistic2/_XLinguServiceManager$MyLinguServiceEventListener.class b/qadevOOo/bin/ifc/linguistic2/_XLinguServiceManager$MyLinguServiceEventListener.class
new file mode 100644
index 000000000000..78c054d7d483
Binary files /dev/null and b/qadevOOo/bin/ifc/linguistic2/_XLinguServiceManager$MyLinguServiceEventListener.class differ
diff --git a/qadevOOo/bin/ifc/linguistic2/_XLinguServiceManager.class b/qadevOOo/bin/ifc/linguistic2/_XLinguServiceManager.class
new file mode 100644
index 000000000000..d16141b87c37
Binary files /dev/null and b/qadevOOo/bin/ifc/linguistic2/_XLinguServiceManager.class differ
diff --git a/qadevOOo/bin/ifc/linguistic2/_XSearchableDictionaryList.class b/qadevOOo/bin/ifc/linguistic2/_XSearchableDictionaryList.class
new file mode 100644
index 000000000000..57828a889e89
Binary files /dev/null and b/qadevOOo/bin/ifc/linguistic2/_XSearchableDictionaryList.class differ
diff --git a/qadevOOo/bin/ifc/linguistic2/_XSpellChecker.class b/qadevOOo/bin/ifc/linguistic2/_XSpellChecker.class
new file mode 100644
index 000000000000..3d1806957e25
Binary files /dev/null and b/qadevOOo/bin/ifc/linguistic2/_XSpellChecker.class differ
diff --git a/qadevOOo/bin/ifc/linguistic2/_XSupportedLocales.class b/qadevOOo/bin/ifc/linguistic2/_XSupportedLocales.class
new file mode 100644
index 000000000000..ce0f518ea46a
Binary files /dev/null and b/qadevOOo/bin/ifc/linguistic2/_XSupportedLocales.class differ
diff --git a/qadevOOo/bin/ifc/linguistic2/_XThesaurus.class b/qadevOOo/bin/ifc/linguistic2/_XThesaurus.class
new file mode 100644
index 000000000000..205f81810bc3
Binary files /dev/null and b/qadevOOo/bin/ifc/linguistic2/_XThesaurus.class differ
diff --git a/qadevOOo/bin/ifc/loader/_XImplementationLoader.class b/qadevOOo/bin/ifc/loader/_XImplementationLoader.class
new file mode 100644
index 000000000000..0792638d6dd6
Binary files /dev/null and b/qadevOOo/bin/ifc/loader/_XImplementationLoader.class differ
diff --git a/qadevOOo/bin/ifc/presentation/_OutlineView.class b/qadevOOo/bin/ifc/presentation/_OutlineView.class
new file mode 100644
index 000000000000..ec0a2937bed5
Binary files /dev/null and b/qadevOOo/bin/ifc/presentation/_OutlineView.class differ
diff --git a/qadevOOo/bin/ifc/presentation/_Presentation$1.class b/qadevOOo/bin/ifc/presentation/_Presentation$1.class
new file mode 100644
index 000000000000..0aa072c39b5f
Binary files /dev/null and b/qadevOOo/bin/ifc/presentation/_Presentation$1.class differ
diff --git a/qadevOOo/bin/ifc/presentation/_Presentation.class b/qadevOOo/bin/ifc/presentation/_Presentation.class
new file mode 100644
index 000000000000..c690dd04e389
Binary files /dev/null and b/qadevOOo/bin/ifc/presentation/_Presentation.class differ
diff --git a/qadevOOo/bin/ifc/presentation/_PresentationView$1.class b/qadevOOo/bin/ifc/presentation/_PresentationView$1.class
new file mode 100644
index 000000000000..3b9b05d3cca2
Binary files /dev/null and b/qadevOOo/bin/ifc/presentation/_PresentationView$1.class differ
diff --git a/qadevOOo/bin/ifc/presentation/_PresentationView.class b/qadevOOo/bin/ifc/presentation/_PresentationView.class
new file mode 100644
index 000000000000..d2b79fdffc9e
Binary files /dev/null and b/qadevOOo/bin/ifc/presentation/_PresentationView.class differ
diff --git a/qadevOOo/bin/ifc/presentation/_PreviewView.class b/qadevOOo/bin/ifc/presentation/_PreviewView.class
new file mode 100644
index 000000000000..4d5ea20cfaed
Binary files /dev/null and b/qadevOOo/bin/ifc/presentation/_PreviewView.class differ
diff --git a/qadevOOo/bin/ifc/presentation/_SlidesView.class b/qadevOOo/bin/ifc/presentation/_SlidesView.class
new file mode 100644
index 000000000000..d66b707397dc
Binary files /dev/null and b/qadevOOo/bin/ifc/presentation/_SlidesView.class differ
diff --git a/qadevOOo/bin/ifc/presentation/_XCustomPresentationSupplier.class b/qadevOOo/bin/ifc/presentation/_XCustomPresentationSupplier.class
new file mode 100644
index 000000000000..a96f803a3542
Binary files /dev/null and b/qadevOOo/bin/ifc/presentation/_XCustomPresentationSupplier.class differ
diff --git a/qadevOOo/bin/ifc/presentation/_XPresentation.class b/qadevOOo/bin/ifc/presentation/_XPresentation.class
new file mode 100644
index 000000000000..1012c2b222fb
Binary files /dev/null and b/qadevOOo/bin/ifc/presentation/_XPresentation.class differ
diff --git a/qadevOOo/bin/ifc/presentation/_XPresentationSupplier.class b/qadevOOo/bin/ifc/presentation/_XPresentationSupplier.class
new file mode 100644
index 000000000000..2746e21a51d8
Binary files /dev/null and b/qadevOOo/bin/ifc/presentation/_XPresentationSupplier.class differ
diff --git a/qadevOOo/bin/ifc/reflection/_XIdlReflection.class b/qadevOOo/bin/ifc/reflection/_XIdlReflection.class
new file mode 100644
index 000000000000..5c5b150d223b
Binary files /dev/null and b/qadevOOo/bin/ifc/reflection/_XIdlReflection.class differ
diff --git a/qadevOOo/bin/ifc/reflection/_XProxyFactory$1MyObject.class b/qadevOOo/bin/ifc/reflection/_XProxyFactory$1MyObject.class
new file mode 100644
index 000000000000..b686dc4a06aa
Binary files /dev/null and b/qadevOOo/bin/ifc/reflection/_XProxyFactory$1MyObject.class differ
diff --git a/qadevOOo/bin/ifc/reflection/_XProxyFactory.class b/qadevOOo/bin/ifc/reflection/_XProxyFactory.class
new file mode 100644
index 000000000000..baa6478a1682
Binary files /dev/null and b/qadevOOo/bin/ifc/reflection/_XProxyFactory.class differ
diff --git a/qadevOOo/bin/ifc/reflection/_XTypeDescriptionEnumerationAccess.class b/qadevOOo/bin/ifc/reflection/_XTypeDescriptionEnumerationAccess.class
new file mode 100644
index 000000000000..c4817b4c8557
Binary files /dev/null and b/qadevOOo/bin/ifc/reflection/_XTypeDescriptionEnumerationAccess.class differ
diff --git a/qadevOOo/bin/ifc/registry/_XImplementationRegistration.class b/qadevOOo/bin/ifc/registry/_XImplementationRegistration.class
new file mode 100644
index 000000000000..66a24264e999
Binary files /dev/null and b/qadevOOo/bin/ifc/registry/_XImplementationRegistration.class differ
diff --git a/qadevOOo/bin/ifc/registry/_XSimpleRegistry.class b/qadevOOo/bin/ifc/registry/_XSimpleRegistry.class
new file mode 100644
index 000000000000..d0447c9c01cc
Binary files /dev/null and b/qadevOOo/bin/ifc/registry/_XSimpleRegistry.class differ
diff --git a/qadevOOo/bin/ifc/script/_XEventAttacherManager$MyScriptListener.class b/qadevOOo/bin/ifc/script/_XEventAttacherManager$MyScriptListener.class
new file mode 100644
index 000000000000..834f6d0b38c2
Binary files /dev/null and b/qadevOOo/bin/ifc/script/_XEventAttacherManager$MyScriptListener.class differ
diff --git a/qadevOOo/bin/ifc/script/_XEventAttacherManager.class b/qadevOOo/bin/ifc/script/_XEventAttacherManager.class
new file mode 100644
index 000000000000..7f4867f8b355
Binary files /dev/null and b/qadevOOo/bin/ifc/script/_XEventAttacherManager.class differ
diff --git a/qadevOOo/bin/ifc/script/_XInvocationAdapterFactory.class b/qadevOOo/bin/ifc/script/_XInvocationAdapterFactory.class
new file mode 100644
index 000000000000..9f9a8b6ef7e9
Binary files /dev/null and b/qadevOOo/bin/ifc/script/_XInvocationAdapterFactory.class differ
diff --git a/qadevOOo/bin/ifc/script/_XInvocationAdapterFactory2.class b/qadevOOo/bin/ifc/script/_XInvocationAdapterFactory2.class
new file mode 100644
index 000000000000..57d7c1a2a56d
Binary files /dev/null and b/qadevOOo/bin/ifc/script/_XInvocationAdapterFactory2.class differ
diff --git a/qadevOOo/bin/ifc/script/_XTypeConverter.class b/qadevOOo/bin/ifc/script/_XTypeConverter.class
new file mode 100644
index 000000000000..c300b0f011bb
Binary files /dev/null and b/qadevOOo/bin/ifc/script/_XTypeConverter.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_DataAccessDescriptor.class b/qadevOOo/bin/ifc/sdb/_DataAccessDescriptor.class
new file mode 100644
index 000000000000..2fc57cd335d1
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_DataAccessDescriptor.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_DataSource$1.class b/qadevOOo/bin/ifc/sdb/_DataSource$1.class
new file mode 100644
index 000000000000..3cc5de58b9cf
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_DataSource$1.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_DataSource$2.class b/qadevOOo/bin/ifc/sdb/_DataSource$2.class
new file mode 100644
index 000000000000..00ce182f0d9a
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_DataSource$2.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_DataSource.class b/qadevOOo/bin/ifc/sdb/_DataSource.class
new file mode 100644
index 000000000000..fff4dba487a1
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_DataSource.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_DatasourceAdministrationDialog.class b/qadevOOo/bin/ifc/sdb/_DatasourceAdministrationDialog.class
new file mode 100644
index 000000000000..d36e4f14e438
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_DatasourceAdministrationDialog.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_ErrorMessageDialog.class b/qadevOOo/bin/ifc/sdb/_ErrorMessageDialog.class
new file mode 100644
index 000000000000..ab8958fcb1e9
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_ErrorMessageDialog.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_QueryDefinition.class b/qadevOOo/bin/ifc/sdb/_QueryDefinition.class
new file mode 100644
index 000000000000..53213825e55c
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_QueryDefinition.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_RowSet$SafeTester.class b/qadevOOo/bin/ifc/sdb/_RowSet$SafeTester.class
new file mode 100644
index 000000000000..76ccf2f4091e
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_RowSet$SafeTester.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_RowSet.class b/qadevOOo/bin/ifc/sdb/_RowSet.class
new file mode 100644
index 000000000000..a65a4bb64f4d
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_RowSet.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_SingleSelectQueryComposer.class b/qadevOOo/bin/ifc/sdb/_SingleSelectQueryComposer.class
new file mode 100644
index 000000000000..9d7e36041a79
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_SingleSelectQueryComposer.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_XBookmarksSupplier.class b/qadevOOo/bin/ifc/sdb/_XBookmarksSupplier.class
new file mode 100644
index 000000000000..8833a9151a50
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_XBookmarksSupplier.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_XCompletedConnection.class b/qadevOOo/bin/ifc/sdb/_XCompletedConnection.class
new file mode 100644
index 000000000000..b1c243bd2e38
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_XCompletedConnection.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_XCompletedExecution$CheckInteractionHandler.class b/qadevOOo/bin/ifc/sdb/_XCompletedExecution$CheckInteractionHandler.class
new file mode 100644
index 000000000000..9335a782eb77
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_XCompletedExecution$CheckInteractionHandler.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_XCompletedExecution.class b/qadevOOo/bin/ifc/sdb/_XCompletedExecution.class
new file mode 100644
index 000000000000..5d00bd1e79fc
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_XCompletedExecution.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_XFormDocumentsSupplier.class b/qadevOOo/bin/ifc/sdb/_XFormDocumentsSupplier.class
new file mode 100644
index 000000000000..798db706e454
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_XFormDocumentsSupplier.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_XParametersSupplier.class b/qadevOOo/bin/ifc/sdb/_XParametersSupplier.class
new file mode 100644
index 000000000000..3bde03017db9
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_XParametersSupplier.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_XQueryDefinitionsSupplier.class b/qadevOOo/bin/ifc/sdb/_XQueryDefinitionsSupplier.class
new file mode 100644
index 000000000000..ea1085bdd387
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_XQueryDefinitionsSupplier.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_XReportDocumentsSupplier.class b/qadevOOo/bin/ifc/sdb/_XReportDocumentsSupplier.class
new file mode 100644
index 000000000000..285fabae9982
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_XReportDocumentsSupplier.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_XResultSetAccess.class b/qadevOOo/bin/ifc/sdb/_XResultSetAccess.class
new file mode 100644
index 000000000000..5690a955eebd
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_XResultSetAccess.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_XRowSetApproveBroadcaster$RowSetApproveChecker.class b/qadevOOo/bin/ifc/sdb/_XRowSetApproveBroadcaster$RowSetApproveChecker.class
new file mode 100644
index 000000000000..501e7dff68e7
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_XRowSetApproveBroadcaster$RowSetApproveChecker.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_XRowSetApproveBroadcaster$TestListener.class b/qadevOOo/bin/ifc/sdb/_XRowSetApproveBroadcaster$TestListener.class
new file mode 100644
index 000000000000..de20b932e346
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_XRowSetApproveBroadcaster$TestListener.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_XRowSetApproveBroadcaster.class b/qadevOOo/bin/ifc/sdb/_XRowSetApproveBroadcaster.class
new file mode 100644
index 000000000000..7bad53e93611
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_XRowSetApproveBroadcaster.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_XSQLErrorBroadcaster.class b/qadevOOo/bin/ifc/sdb/_XSQLErrorBroadcaster.class
new file mode 100644
index 000000000000..840ea3f1a8d0
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_XSQLErrorBroadcaster.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_XSingleSelectQueryAnalyzer.class b/qadevOOo/bin/ifc/sdb/_XSingleSelectQueryAnalyzer.class
new file mode 100644
index 000000000000..4d7e21e69e33
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_XSingleSelectQueryAnalyzer.class differ
diff --git a/qadevOOo/bin/ifc/sdb/_XSingleSelectQueryComposer.class b/qadevOOo/bin/ifc/sdb/_XSingleSelectQueryComposer.class
new file mode 100644
index 000000000000..c9ff181aeec7
Binary files /dev/null and b/qadevOOo/bin/ifc/sdb/_XSingleSelectQueryComposer.class differ
diff --git a/qadevOOo/bin/ifc/sdbc/_ResultSet.class b/qadevOOo/bin/ifc/sdbc/_ResultSet.class
new file mode 100644
index 000000000000..6e8a020c186f
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbc/_ResultSet.class differ
diff --git a/qadevOOo/bin/ifc/sdbc/_RowSet.class b/qadevOOo/bin/ifc/sdbc/_RowSet.class
new file mode 100644
index 000000000000..87e2a1f90db8
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbc/_RowSet.class differ
diff --git a/qadevOOo/bin/ifc/sdbc/_XCloseable.class b/qadevOOo/bin/ifc/sdbc/_XCloseable.class
new file mode 100644
index 000000000000..79a1dcd22d1e
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbc/_XCloseable.class differ
diff --git a/qadevOOo/bin/ifc/sdbc/_XColumnLocate.class b/qadevOOo/bin/ifc/sdbc/_XColumnLocate.class
new file mode 100644
index 000000000000..00991019a88a
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbc/_XColumnLocate.class differ
diff --git a/qadevOOo/bin/ifc/sdbc/_XDataSource.class b/qadevOOo/bin/ifc/sdbc/_XDataSource.class
new file mode 100644
index 000000000000..91ddc153d61e
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbc/_XDataSource.class differ
diff --git a/qadevOOo/bin/ifc/sdbc/_XDriver.class b/qadevOOo/bin/ifc/sdbc/_XDriver.class
new file mode 100644
index 000000000000..741841e4b7c1
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbc/_XDriver.class differ
diff --git a/qadevOOo/bin/ifc/sdbc/_XDriverManager.class b/qadevOOo/bin/ifc/sdbc/_XDriverManager.class
new file mode 100644
index 000000000000..a08223079232
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbc/_XDriverManager.class differ
diff --git a/qadevOOo/bin/ifc/sdbc/_XIsolatedConnection.class b/qadevOOo/bin/ifc/sdbc/_XIsolatedConnection.class
new file mode 100644
index 000000000000..3d8ff5a8d43b
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbc/_XIsolatedConnection.class differ
diff --git a/qadevOOo/bin/ifc/sdbc/_XParameters.class b/qadevOOo/bin/ifc/sdbc/_XParameters.class
new file mode 100644
index 000000000000..97dd65ec7eb0
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbc/_XParameters.class differ
diff --git a/qadevOOo/bin/ifc/sdbc/_XResultSet.class b/qadevOOo/bin/ifc/sdbc/_XResultSet.class
new file mode 100644
index 000000000000..7843f75e24b2
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbc/_XResultSet.class differ
diff --git a/qadevOOo/bin/ifc/sdbc/_XResultSetMetaDataSupplier.class b/qadevOOo/bin/ifc/sdbc/_XResultSetMetaDataSupplier.class
new file mode 100644
index 000000000000..899ebc087438
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbc/_XResultSetMetaDataSupplier.class differ
diff --git a/qadevOOo/bin/ifc/sdbc/_XResultSetUpdate$UpdateTester.class b/qadevOOo/bin/ifc/sdbc/_XResultSetUpdate$UpdateTester.class
new file mode 100644
index 000000000000..80dfce3d1ad7
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbc/_XResultSetUpdate$UpdateTester.class differ
diff --git a/qadevOOo/bin/ifc/sdbc/_XResultSetUpdate.class b/qadevOOo/bin/ifc/sdbc/_XResultSetUpdate.class
new file mode 100644
index 000000000000..1ad3af2dbaf3
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbc/_XResultSetUpdate.class differ
diff --git a/qadevOOo/bin/ifc/sdbc/_XRow.class b/qadevOOo/bin/ifc/sdbc/_XRow.class
new file mode 100644
index 000000000000..2a043dfa18bd
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbc/_XRow.class differ
diff --git a/qadevOOo/bin/ifc/sdbc/_XRowSet$TestListener.class b/qadevOOo/bin/ifc/sdbc/_XRowSet$TestListener.class
new file mode 100644
index 000000000000..b2760d10d8c6
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbc/_XRowSet$TestListener.class differ
diff --git a/qadevOOo/bin/ifc/sdbc/_XRowSet.class b/qadevOOo/bin/ifc/sdbc/_XRowSet.class
new file mode 100644
index 000000000000..3d9c175decc8
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbc/_XRowSet.class differ
diff --git a/qadevOOo/bin/ifc/sdbc/_XRowUpdate.class b/qadevOOo/bin/ifc/sdbc/_XRowUpdate.class
new file mode 100644
index 000000000000..61eca1596785
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbc/_XRowUpdate.class differ
diff --git a/qadevOOo/bin/ifc/sdbc/_XWarningsSupplier.class b/qadevOOo/bin/ifc/sdbc/_XWarningsSupplier.class
new file mode 100644
index 000000000000..ee229430d259
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbc/_XWarningsSupplier.class differ
diff --git a/qadevOOo/bin/ifc/sdbcx/_ResultSet.class b/qadevOOo/bin/ifc/sdbcx/_ResultSet.class
new file mode 100644
index 000000000000..6cc7391d9b05
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbcx/_ResultSet.class differ
diff --git a/qadevOOo/bin/ifc/sdbcx/_XColumnsSupplier.class b/qadevOOo/bin/ifc/sdbcx/_XColumnsSupplier.class
new file mode 100644
index 000000000000..7396ddb727f3
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbcx/_XColumnsSupplier.class differ
diff --git a/qadevOOo/bin/ifc/sdbcx/_XCreateCatalog.class b/qadevOOo/bin/ifc/sdbcx/_XCreateCatalog.class
new file mode 100644
index 000000000000..76ebb20d443c
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbcx/_XCreateCatalog.class differ
diff --git a/qadevOOo/bin/ifc/sdbcx/_XDataDefinitionSupplier.class b/qadevOOo/bin/ifc/sdbcx/_XDataDefinitionSupplier.class
new file mode 100644
index 000000000000..0060d90ca480
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbcx/_XDataDefinitionSupplier.class differ
diff --git a/qadevOOo/bin/ifc/sdbcx/_XDeleteRows.class b/qadevOOo/bin/ifc/sdbcx/_XDeleteRows.class
new file mode 100644
index 000000000000..ca7afe14833f
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbcx/_XDeleteRows.class differ
diff --git a/qadevOOo/bin/ifc/sdbcx/_XDropCatalog.class b/qadevOOo/bin/ifc/sdbcx/_XDropCatalog.class
new file mode 100644
index 000000000000..5256046e9770
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbcx/_XDropCatalog.class differ
diff --git a/qadevOOo/bin/ifc/sdbcx/_XRowLocate.class b/qadevOOo/bin/ifc/sdbcx/_XRowLocate.class
new file mode 100644
index 000000000000..6df98d416503
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbcx/_XRowLocate.class differ
diff --git a/qadevOOo/bin/ifc/sdbcx/_XTablesSupplier.class b/qadevOOo/bin/ifc/sdbcx/_XTablesSupplier.class
new file mode 100644
index 000000000000..3fa822216f74
Binary files /dev/null and b/qadevOOo/bin/ifc/sdbcx/_XTablesSupplier.class differ
diff --git a/qadevOOo/bin/ifc/sheet/_SpreadsheetDocument.class b/qadevOOo/bin/ifc/sheet/_SpreadsheetDocument.class
new file mode 100644
index 000000000000..4985c5cdda9e
Binary files /dev/null and b/qadevOOo/bin/ifc/sheet/_SpreadsheetDocument.class differ
diff --git a/qadevOOo/bin/ifc/sheet/_TableAutoFormatField$1.class b/qadevOOo/bin/ifc/sheet/_TableAutoFormatField$1.class
new file mode 100644
index 000000000000..ad1e7d33b137
Binary files /dev/null and b/qadevOOo/bin/ifc/sheet/_TableAutoFormatField$1.class differ
diff --git a/qadevOOo/bin/ifc/sheet/_TableAutoFormatField$2.class b/qadevOOo/bin/ifc/sheet/_TableAutoFormatField$2.class
new file mode 100644
index 000000000000..b846d69ee257
Binary files /dev/null and b/qadevOOo/bin/ifc/sheet/_TableAutoFormatField$2.class differ
diff --git a/qadevOOo/bin/ifc/sheet/_TableAutoFormatField$3.class b/qadevOOo/bin/ifc/sheet/_TableAutoFormatField$3.class
new file mode 100644
index 000000000000..a3fe8d8ceb1b
Binary files /dev/null and b/qadevOOo/bin/ifc/sheet/_TableAutoFormatField$3.class differ
diff --git a/qadevOOo/bin/ifc/sheet/_TableAutoFormatField.class b/qadevOOo/bin/ifc/sheet/_TableAutoFormatField.class
new file mode 100644
index 000000000000..cdc195c4521a
Binary files /dev/null and b/qadevOOo/bin/ifc/sheet/_TableAutoFormatField.class differ
diff --git a/qadevOOo/bin/ifc/sheet/_XCellRangeData.class b/qadevOOo/bin/ifc/sheet/_XCellRangeData.class
new file mode 100644
index 000000000000..643f98102d43
Binary files /dev/null and b/qadevOOo/bin/ifc/sheet/_XCellRangeData.class differ
diff --git a/qadevOOo/bin/ifc/sheet/_XCellRangesQuery.class b/qadevOOo/bin/ifc/sheet/_XCellRangesQuery.class
new file mode 100644
index 000000000000..11ca8bcfc01f
Binary files /dev/null and b/qadevOOo/bin/ifc/sheet/_XCellRangesQuery.class differ
diff --git a/qadevOOo/bin/ifc/sheet/_XEnhancedMouseClickBroadcaster$MyListener.class b/qadevOOo/bin/ifc/sheet/_XEnhancedMouseClickBroadcaster$MyListener.class
new file mode 100644
index 000000000000..2bd26280cbdf
Binary files /dev/null and b/qadevOOo/bin/ifc/sheet/_XEnhancedMouseClickBroadcaster$MyListener.class differ
diff --git a/qadevOOo/bin/ifc/sheet/_XEnhancedMouseClickBroadcaster.class b/qadevOOo/bin/ifc/sheet/_XEnhancedMouseClickBroadcaster.class
new file mode 100644
index 000000000000..71e7b9de17e2
Binary files /dev/null and b/qadevOOo/bin/ifc/sheet/_XEnhancedMouseClickBroadcaster.class differ
diff --git a/qadevOOo/bin/ifc/sheet/_XRangeSelection$MyRangeSelectionListener.class b/qadevOOo/bin/ifc/sheet/_XRangeSelection$MyRangeSelectionListener.class
new file mode 100644
index 000000000000..302ce657928b
Binary files /dev/null and b/qadevOOo/bin/ifc/sheet/_XRangeSelection$MyRangeSelectionListener.class differ
diff --git a/qadevOOo/bin/ifc/sheet/_XRangeSelection.class b/qadevOOo/bin/ifc/sheet/_XRangeSelection.class
new file mode 100644
index 000000000000..1113ff07db5f
Binary files /dev/null and b/qadevOOo/bin/ifc/sheet/_XRangeSelection.class differ
diff --git a/qadevOOo/bin/ifc/style/_CharacterProperties$1.class b/qadevOOo/bin/ifc/style/_CharacterProperties$1.class
new file mode 100644
index 000000000000..13a53ab3f77e
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_CharacterProperties$1.class differ
diff --git a/qadevOOo/bin/ifc/style/_CharacterProperties$2.class b/qadevOOo/bin/ifc/style/_CharacterProperties$2.class
new file mode 100644
index 000000000000..6ab4a7362aef
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_CharacterProperties$2.class differ
diff --git a/qadevOOo/bin/ifc/style/_CharacterProperties$3.class b/qadevOOo/bin/ifc/style/_CharacterProperties$3.class
new file mode 100644
index 000000000000..8135c6092e44
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_CharacterProperties$3.class differ
diff --git a/qadevOOo/bin/ifc/style/_CharacterProperties$4.class b/qadevOOo/bin/ifc/style/_CharacterProperties$4.class
new file mode 100644
index 000000000000..4aa91cbe01fe
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_CharacterProperties$4.class differ
diff --git a/qadevOOo/bin/ifc/style/_CharacterProperties$5.class b/qadevOOo/bin/ifc/style/_CharacterProperties$5.class
new file mode 100644
index 000000000000..7e33646a2f21
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_CharacterProperties$5.class differ
diff --git a/qadevOOo/bin/ifc/style/_CharacterProperties$OwnUserDefinedAttributes.class b/qadevOOo/bin/ifc/style/_CharacterProperties$OwnUserDefinedAttributes.class
new file mode 100644
index 000000000000..234131e63efe
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_CharacterProperties$OwnUserDefinedAttributes.class differ
diff --git a/qadevOOo/bin/ifc/style/_CharacterProperties.class b/qadevOOo/bin/ifc/style/_CharacterProperties.class
new file mode 100644
index 000000000000..5177324928ca
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_CharacterProperties.class differ
diff --git a/qadevOOo/bin/ifc/style/_CharacterPropertiesAsian.class b/qadevOOo/bin/ifc/style/_CharacterPropertiesAsian.class
new file mode 100644
index 000000000000..7df7785c3843
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_CharacterPropertiesAsian.class differ
diff --git a/qadevOOo/bin/ifc/style/_CharacterPropertiesComplex.class b/qadevOOo/bin/ifc/style/_CharacterPropertiesComplex.class
new file mode 100644
index 000000000000..c1705e51305d
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_CharacterPropertiesComplex.class differ
diff --git a/qadevOOo/bin/ifc/style/_CharacterStyle.class b/qadevOOo/bin/ifc/style/_CharacterStyle.class
new file mode 100644
index 000000000000..49ccd01aaaf8
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_CharacterStyle.class differ
diff --git a/qadevOOo/bin/ifc/style/_PageProperties.class b/qadevOOo/bin/ifc/style/_PageProperties.class
new file mode 100644
index 000000000000..4ad0b2922d5f
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_PageProperties.class differ
diff --git a/qadevOOo/bin/ifc/style/_PageStyle.class b/qadevOOo/bin/ifc/style/_PageStyle.class
new file mode 100644
index 000000000000..0d5bccb51453
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_PageStyle.class differ
diff --git a/qadevOOo/bin/ifc/style/_ParagraphProperties$1.class b/qadevOOo/bin/ifc/style/_ParagraphProperties$1.class
new file mode 100644
index 000000000000..fe3f15038aeb
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_ParagraphProperties$1.class differ
diff --git a/qadevOOo/bin/ifc/style/_ParagraphProperties$2.class b/qadevOOo/bin/ifc/style/_ParagraphProperties$2.class
new file mode 100644
index 000000000000..2b0b132b59cd
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_ParagraphProperties$2.class differ
diff --git a/qadevOOo/bin/ifc/style/_ParagraphProperties$3.class b/qadevOOo/bin/ifc/style/_ParagraphProperties$3.class
new file mode 100644
index 000000000000..f4dd7a0abf7e
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_ParagraphProperties$3.class differ
diff --git a/qadevOOo/bin/ifc/style/_ParagraphProperties$4.class b/qadevOOo/bin/ifc/style/_ParagraphProperties$4.class
new file mode 100644
index 000000000000..a45e2d807a60
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_ParagraphProperties$4.class differ
diff --git a/qadevOOo/bin/ifc/style/_ParagraphProperties$5.class b/qadevOOo/bin/ifc/style/_ParagraphProperties$5.class
new file mode 100644
index 000000000000..66c89db7d2dc
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_ParagraphProperties$5.class differ
diff --git a/qadevOOo/bin/ifc/style/_ParagraphProperties$6.class b/qadevOOo/bin/ifc/style/_ParagraphProperties$6.class
new file mode 100644
index 000000000000..5f07cdf22db3
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_ParagraphProperties$6.class differ
diff --git a/qadevOOo/bin/ifc/style/_ParagraphProperties$7.class b/qadevOOo/bin/ifc/style/_ParagraphProperties$7.class
new file mode 100644
index 000000000000..4734df9dab6f
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_ParagraphProperties$7.class differ
diff --git a/qadevOOo/bin/ifc/style/_ParagraphProperties$OwnUserDefinedAttributes.class b/qadevOOo/bin/ifc/style/_ParagraphProperties$OwnUserDefinedAttributes.class
new file mode 100644
index 000000000000..3bf6ef9dcd63
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_ParagraphProperties$OwnUserDefinedAttributes.class differ
diff --git a/qadevOOo/bin/ifc/style/_ParagraphProperties.class b/qadevOOo/bin/ifc/style/_ParagraphProperties.class
new file mode 100644
index 000000000000..505e33b7beaa
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_ParagraphProperties.class differ
diff --git a/qadevOOo/bin/ifc/style/_ParagraphPropertiesAsian$1.class b/qadevOOo/bin/ifc/style/_ParagraphPropertiesAsian$1.class
new file mode 100644
index 000000000000..fe38727f19ca
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_ParagraphPropertiesAsian$1.class differ
diff --git a/qadevOOo/bin/ifc/style/_ParagraphPropertiesAsian.class b/qadevOOo/bin/ifc/style/_ParagraphPropertiesAsian.class
new file mode 100644
index 000000000000..769c53d6280a
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_ParagraphPropertiesAsian.class differ
diff --git a/qadevOOo/bin/ifc/style/_ParagraphPropertiesComplex$1.class b/qadevOOo/bin/ifc/style/_ParagraphPropertiesComplex$1.class
new file mode 100644
index 000000000000..f7d3aaedd343
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_ParagraphPropertiesComplex$1.class differ
diff --git a/qadevOOo/bin/ifc/style/_ParagraphPropertiesComplex.class b/qadevOOo/bin/ifc/style/_ParagraphPropertiesComplex.class
new file mode 100644
index 000000000000..afb8d5843ed4
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_ParagraphPropertiesComplex.class differ
diff --git a/qadevOOo/bin/ifc/style/_ParagraphStyle.class b/qadevOOo/bin/ifc/style/_ParagraphStyle.class
new file mode 100644
index 000000000000..29990321bc32
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_ParagraphStyle.class differ
diff --git a/qadevOOo/bin/ifc/style/_Style.class b/qadevOOo/bin/ifc/style/_Style.class
new file mode 100644
index 000000000000..931aa23d5782
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_Style.class differ
diff --git a/qadevOOo/bin/ifc/style/_XStyle.class b/qadevOOo/bin/ifc/style/_XStyle.class
new file mode 100644
index 000000000000..d447eda098e1
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_XStyle.class differ
diff --git a/qadevOOo/bin/ifc/style/_XStyleFamiliesSupplier.class b/qadevOOo/bin/ifc/style/_XStyleFamiliesSupplier.class
new file mode 100644
index 000000000000..7b7d792df9f6
Binary files /dev/null and b/qadevOOo/bin/ifc/style/_XStyleFamiliesSupplier.class differ
diff --git a/qadevOOo/bin/ifc/system/_XSimpleMailClientSupplier.class b/qadevOOo/bin/ifc/system/_XSimpleMailClientSupplier.class
new file mode 100644
index 000000000000..4ed6b605780b
Binary files /dev/null and b/qadevOOo/bin/ifc/system/_XSimpleMailClientSupplier.class differ
diff --git a/qadevOOo/bin/ifc/system/_XSystemShellExecute.class b/qadevOOo/bin/ifc/system/_XSystemShellExecute.class
new file mode 100644
index 000000000000..ce532b9ac757
Binary files /dev/null and b/qadevOOo/bin/ifc/system/_XSystemShellExecute.class differ
diff --git a/qadevOOo/bin/ifc/table/_CellProperties$1.class b/qadevOOo/bin/ifc/table/_CellProperties$1.class
new file mode 100644
index 000000000000..db12771d6f16
Binary files /dev/null and b/qadevOOo/bin/ifc/table/_CellProperties$1.class differ
diff --git a/qadevOOo/bin/ifc/table/_CellProperties.class b/qadevOOo/bin/ifc/table/_CellProperties.class
new file mode 100644
index 000000000000..312592a00fe4
Binary files /dev/null and b/qadevOOo/bin/ifc/table/_CellProperties.class differ
diff --git a/qadevOOo/bin/ifc/table/_XAutoFormattable.class b/qadevOOo/bin/ifc/table/_XAutoFormattable.class
new file mode 100644
index 000000000000..4abb49b3eeb6
Binary files /dev/null and b/qadevOOo/bin/ifc/table/_XAutoFormattable.class differ
diff --git a/qadevOOo/bin/ifc/table/_XCellRange.class b/qadevOOo/bin/ifc/table/_XCellRange.class
new file mode 100644
index 000000000000..021c196fbeb2
Binary files /dev/null and b/qadevOOo/bin/ifc/table/_XCellRange.class differ
diff --git a/qadevOOo/bin/ifc/table/_XTableChart.class b/qadevOOo/bin/ifc/table/_XTableChart.class
new file mode 100644
index 000000000000..dbb95a8ee5e8
Binary files /dev/null and b/qadevOOo/bin/ifc/table/_XTableChart.class differ
diff --git a/qadevOOo/bin/ifc/table/_XTableColumns.class b/qadevOOo/bin/ifc/table/_XTableColumns.class
new file mode 100644
index 000000000000..9d1effa4555b
Binary files /dev/null and b/qadevOOo/bin/ifc/table/_XTableColumns.class differ
diff --git a/qadevOOo/bin/ifc/table/_XTableRows.class b/qadevOOo/bin/ifc/table/_XTableRows.class
new file mode 100644
index 000000000000..61e9355d08da
Binary files /dev/null and b/qadevOOo/bin/ifc/table/_XTableRows.class differ
diff --git a/qadevOOo/bin/ifc/task/_XInteractionHandler.class b/qadevOOo/bin/ifc/task/_XInteractionHandler.class
new file mode 100644
index 000000000000..04fbc23dbc4d
Binary files /dev/null and b/qadevOOo/bin/ifc/task/_XInteractionHandler.class differ
diff --git a/qadevOOo/bin/ifc/task/_XJob.class b/qadevOOo/bin/ifc/task/_XJob.class
new file mode 100644
index 000000000000..a8765b067304
Binary files /dev/null and b/qadevOOo/bin/ifc/task/_XJob.class differ
diff --git a/qadevOOo/bin/ifc/task/_XJobExecutor.class b/qadevOOo/bin/ifc/task/_XJobExecutor.class
new file mode 100644
index 000000000000..3537dfa52cf5
Binary files /dev/null and b/qadevOOo/bin/ifc/task/_XJobExecutor.class differ
diff --git a/qadevOOo/bin/ifc/task/_XStatusIndicatorFactory.class b/qadevOOo/bin/ifc/task/_XStatusIndicatorFactory.class
new file mode 100644
index 000000000000..8e72e06f6c46
Binary files /dev/null and b/qadevOOo/bin/ifc/task/_XStatusIndicatorFactory.class differ
diff --git a/qadevOOo/bin/ifc/text/_BaseFrame$1.class b/qadevOOo/bin/ifc/text/_BaseFrame$1.class
new file mode 100644
index 000000000000..6b813b31f081
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_BaseFrame$1.class differ
diff --git a/qadevOOo/bin/ifc/text/_BaseFrame.class b/qadevOOo/bin/ifc/text/_BaseFrame.class
new file mode 100644
index 000000000000..04d5e88f21a6
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_BaseFrame.class differ
diff --git a/qadevOOo/bin/ifc/text/_BaseFrameProperties$1.class b/qadevOOo/bin/ifc/text/_BaseFrameProperties$1.class
new file mode 100644
index 000000000000..120758743cab
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_BaseFrameProperties$1.class differ
diff --git a/qadevOOo/bin/ifc/text/_BaseFrameProperties.class b/qadevOOo/bin/ifc/text/_BaseFrameProperties.class
new file mode 100644
index 000000000000..668b29a30dfb
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_BaseFrameProperties.class differ
diff --git a/qadevOOo/bin/ifc/text/_BaseIndex$1.class b/qadevOOo/bin/ifc/text/_BaseIndex$1.class
new file mode 100644
index 000000000000..ecef8a2a10d4
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_BaseIndex$1.class differ
diff --git a/qadevOOo/bin/ifc/text/_BaseIndex$2.class b/qadevOOo/bin/ifc/text/_BaseIndex$2.class
new file mode 100644
index 000000000000..ffd207e4abe1
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_BaseIndex$2.class differ
diff --git a/qadevOOo/bin/ifc/text/_BaseIndex.class b/qadevOOo/bin/ifc/text/_BaseIndex.class
new file mode 100644
index 000000000000..183e6ea22c53
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_BaseIndex.class differ
diff --git a/qadevOOo/bin/ifc/text/_BaseIndexMark.class b/qadevOOo/bin/ifc/text/_BaseIndexMark.class
new file mode 100644
index 000000000000..8f1aa53309fa
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_BaseIndexMark.class differ
diff --git a/qadevOOo/bin/ifc/text/_CellProperties$1.class b/qadevOOo/bin/ifc/text/_CellProperties$1.class
new file mode 100644
index 000000000000..c5734fa70fcf
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_CellProperties$1.class differ
diff --git a/qadevOOo/bin/ifc/text/_CellProperties$2.class b/qadevOOo/bin/ifc/text/_CellProperties$2.class
new file mode 100644
index 000000000000..f08b6a3f7a0b
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_CellProperties$2.class differ
diff --git a/qadevOOo/bin/ifc/text/_CellProperties$3.class b/qadevOOo/bin/ifc/text/_CellProperties$3.class
new file mode 100644
index 000000000000..9f4398d04c59
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_CellProperties$3.class differ
diff --git a/qadevOOo/bin/ifc/text/_CellProperties$4.class b/qadevOOo/bin/ifc/text/_CellProperties$4.class
new file mode 100644
index 000000000000..9b2159242a5a
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_CellProperties$4.class differ
diff --git a/qadevOOo/bin/ifc/text/_CellProperties.class b/qadevOOo/bin/ifc/text/_CellProperties.class
new file mode 100644
index 000000000000..44dae2456e2e
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_CellProperties.class differ
diff --git a/qadevOOo/bin/ifc/text/_CellRange$1.class b/qadevOOo/bin/ifc/text/_CellRange$1.class
new file mode 100644
index 000000000000..b3865086ac24
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_CellRange$1.class differ
diff --git a/qadevOOo/bin/ifc/text/_CellRange$2.class b/qadevOOo/bin/ifc/text/_CellRange$2.class
new file mode 100644
index 000000000000..81858480b074
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_CellRange$2.class differ
diff --git a/qadevOOo/bin/ifc/text/_CellRange.class b/qadevOOo/bin/ifc/text/_CellRange.class
new file mode 100644
index 000000000000..60a1f948d1e1
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_CellRange.class differ
diff --git a/qadevOOo/bin/ifc/text/_Defaults.class b/qadevOOo/bin/ifc/text/_Defaults.class
new file mode 100644
index 000000000000..03925c735c65
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_Defaults.class differ
diff --git a/qadevOOo/bin/ifc/text/_DocumentIndex.class b/qadevOOo/bin/ifc/text/_DocumentIndex.class
new file mode 100644
index 000000000000..a25bf46e5424
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_DocumentIndex.class differ
diff --git a/qadevOOo/bin/ifc/text/_DocumentIndexMark.class b/qadevOOo/bin/ifc/text/_DocumentIndexMark.class
new file mode 100644
index 000000000000..4c148d8723df
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_DocumentIndexMark.class differ
diff --git a/qadevOOo/bin/ifc/text/_DocumentSettings.class b/qadevOOo/bin/ifc/text/_DocumentSettings.class
new file mode 100644
index 000000000000..727279b34830
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_DocumentSettings.class differ
diff --git a/qadevOOo/bin/ifc/text/_Footnote.class b/qadevOOo/bin/ifc/text/_Footnote.class
new file mode 100644
index 000000000000..c33ebd97e617
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_Footnote.class differ
diff --git a/qadevOOo/bin/ifc/text/_FootnoteSettings.class b/qadevOOo/bin/ifc/text/_FootnoteSettings.class
new file mode 100644
index 000000000000..cd91dd361ccd
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_FootnoteSettings.class differ
diff --git a/qadevOOo/bin/ifc/text/_GenericTextDocument.class b/qadevOOo/bin/ifc/text/_GenericTextDocument.class
new file mode 100644
index 000000000000..ad40a0315021
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_GenericTextDocument.class differ
diff --git a/qadevOOo/bin/ifc/text/_LineNumberingProperties.class b/qadevOOo/bin/ifc/text/_LineNumberingProperties.class
new file mode 100644
index 000000000000..a35a33d88579
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_LineNumberingProperties.class differ
diff --git a/qadevOOo/bin/ifc/text/_MailMerge$1.class b/qadevOOo/bin/ifc/text/_MailMerge$1.class
new file mode 100644
index 000000000000..0931602c0030
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_MailMerge$1.class differ
diff --git a/qadevOOo/bin/ifc/text/_MailMerge$2.class b/qadevOOo/bin/ifc/text/_MailMerge$2.class
new file mode 100644
index 000000000000..48af51771088
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_MailMerge$2.class differ
diff --git a/qadevOOo/bin/ifc/text/_MailMerge.class b/qadevOOo/bin/ifc/text/_MailMerge.class
new file mode 100644
index 000000000000..6cb58a972fcb
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_MailMerge.class differ
diff --git a/qadevOOo/bin/ifc/text/_NumberingLevel.class b/qadevOOo/bin/ifc/text/_NumberingLevel.class
new file mode 100644
index 000000000000..34bc22a0166e
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_NumberingLevel.class differ
diff --git a/qadevOOo/bin/ifc/text/_NumberingRules.class b/qadevOOo/bin/ifc/text/_NumberingRules.class
new file mode 100644
index 000000000000..60d1b6d6058d
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_NumberingRules.class differ
diff --git a/qadevOOo/bin/ifc/text/_PrintSettings.class b/qadevOOo/bin/ifc/text/_PrintSettings.class
new file mode 100644
index 000000000000..50c277c083a3
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_PrintSettings.class differ
diff --git a/qadevOOo/bin/ifc/text/_Text.class b/qadevOOo/bin/ifc/text/_Text.class
new file mode 100644
index 000000000000..d1b4d9fa325a
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_Text.class differ
diff --git a/qadevOOo/bin/ifc/text/_TextColumns$1.class b/qadevOOo/bin/ifc/text/_TextColumns$1.class
new file mode 100644
index 000000000000..bea1d448c871
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_TextColumns$1.class differ
diff --git a/qadevOOo/bin/ifc/text/_TextColumns.class b/qadevOOo/bin/ifc/text/_TextColumns.class
new file mode 100644
index 000000000000..9ed452963be9
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_TextColumns.class differ
diff --git a/qadevOOo/bin/ifc/text/_TextContent.class b/qadevOOo/bin/ifc/text/_TextContent.class
new file mode 100644
index 000000000000..0bf79cc96e41
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_TextContent.class differ
diff --git a/qadevOOo/bin/ifc/text/_TextDocument.class b/qadevOOo/bin/ifc/text/_TextDocument.class
new file mode 100644
index 000000000000..d46b8d676543
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_TextDocument.class differ
diff --git a/qadevOOo/bin/ifc/text/_TextEmbeddedObject.class b/qadevOOo/bin/ifc/text/_TextEmbeddedObject.class
new file mode 100644
index 000000000000..b7032c40df98
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_TextEmbeddedObject.class differ
diff --git a/qadevOOo/bin/ifc/text/_TextFieldMaster.class b/qadevOOo/bin/ifc/text/_TextFieldMaster.class
new file mode 100644
index 000000000000..2d37a28a364c
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_TextFieldMaster.class differ
diff --git a/qadevOOo/bin/ifc/text/_TextFrame$1.class b/qadevOOo/bin/ifc/text/_TextFrame$1.class
new file mode 100644
index 000000000000..badcf56f16d5
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_TextFrame$1.class differ
diff --git a/qadevOOo/bin/ifc/text/_TextFrame.class b/qadevOOo/bin/ifc/text/_TextFrame.class
new file mode 100644
index 000000000000..d96473b01eab
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_TextFrame.class differ
diff --git a/qadevOOo/bin/ifc/text/_TextGraphicObject$1.class b/qadevOOo/bin/ifc/text/_TextGraphicObject$1.class
new file mode 100644
index 000000000000..786d273e390e
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_TextGraphicObject$1.class differ
diff --git a/qadevOOo/bin/ifc/text/_TextGraphicObject.class b/qadevOOo/bin/ifc/text/_TextGraphicObject.class
new file mode 100644
index 000000000000..10ed53a79228
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_TextGraphicObject.class differ
diff --git a/qadevOOo/bin/ifc/text/_TextPortion.class b/qadevOOo/bin/ifc/text/_TextPortion.class
new file mode 100644
index 000000000000..3a926c23d942
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_TextPortion.class differ
diff --git a/qadevOOo/bin/ifc/text/_TextSection$1.class b/qadevOOo/bin/ifc/text/_TextSection$1.class
new file mode 100644
index 000000000000..8cdc771cffee
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_TextSection$1.class differ
diff --git a/qadevOOo/bin/ifc/text/_TextSection.class b/qadevOOo/bin/ifc/text/_TextSection.class
new file mode 100644
index 000000000000..0f61cc143768
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_TextSection.class differ
diff --git a/qadevOOo/bin/ifc/text/_TextTable.class b/qadevOOo/bin/ifc/text/_TextTable.class
new file mode 100644
index 000000000000..4e6baeede620
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_TextTable.class differ
diff --git a/qadevOOo/bin/ifc/text/_TextTableRow.class b/qadevOOo/bin/ifc/text/_TextTableRow.class
new file mode 100644
index 000000000000..27d993562c80
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_TextTableRow.class differ
diff --git a/qadevOOo/bin/ifc/text/_ViewSettings.class b/qadevOOo/bin/ifc/text/_ViewSettings.class
new file mode 100644
index 000000000000..c387145b1b37
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_ViewSettings.class differ
diff --git a/qadevOOo/bin/ifc/text/_XAutoTextContainer.class b/qadevOOo/bin/ifc/text/_XAutoTextContainer.class
new file mode 100644
index 000000000000..b05ab996c7b6
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XAutoTextContainer.class differ
diff --git a/qadevOOo/bin/ifc/text/_XAutoTextEntry.class b/qadevOOo/bin/ifc/text/_XAutoTextEntry.class
new file mode 100644
index 000000000000..05953c96602b
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XAutoTextEntry.class differ
diff --git a/qadevOOo/bin/ifc/text/_XAutoTextGroup.class b/qadevOOo/bin/ifc/text/_XAutoTextGroup.class
new file mode 100644
index 000000000000..baa0cb11dd22
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XAutoTextGroup.class differ
diff --git a/qadevOOo/bin/ifc/text/_XBookmarksSupplier.class b/qadevOOo/bin/ifc/text/_XBookmarksSupplier.class
new file mode 100644
index 000000000000..30a758cab0a1
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XBookmarksSupplier.class differ
diff --git a/qadevOOo/bin/ifc/text/_XChapterNumberingSupplier.class b/qadevOOo/bin/ifc/text/_XChapterNumberingSupplier.class
new file mode 100644
index 000000000000..3269a0643beb
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XChapterNumberingSupplier.class differ
diff --git a/qadevOOo/bin/ifc/text/_XDefaultNumberingProvider.class b/qadevOOo/bin/ifc/text/_XDefaultNumberingProvider.class
new file mode 100644
index 000000000000..8bc6057ef688
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XDefaultNumberingProvider.class differ
diff --git a/qadevOOo/bin/ifc/text/_XDocumentIndex.class b/qadevOOo/bin/ifc/text/_XDocumentIndex.class
new file mode 100644
index 000000000000..cc8e49a41d52
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XDocumentIndex.class differ
diff --git a/qadevOOo/bin/ifc/text/_XDocumentIndexesSupplier.class b/qadevOOo/bin/ifc/text/_XDocumentIndexesSupplier.class
new file mode 100644
index 000000000000..99ab258d267f
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XDocumentIndexesSupplier.class differ
diff --git a/qadevOOo/bin/ifc/text/_XEndnotesSupplier.class b/qadevOOo/bin/ifc/text/_XEndnotesSupplier.class
new file mode 100644
index 000000000000..564ed260e6c5
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XEndnotesSupplier.class differ
diff --git a/qadevOOo/bin/ifc/text/_XFootnote.class b/qadevOOo/bin/ifc/text/_XFootnote.class
new file mode 100644
index 000000000000..3a314556d81a
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XFootnote.class differ
diff --git a/qadevOOo/bin/ifc/text/_XFootnotesSettingsSupplier.class b/qadevOOo/bin/ifc/text/_XFootnotesSettingsSupplier.class
new file mode 100644
index 000000000000..cff30815dc57
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XFootnotesSettingsSupplier.class differ
diff --git a/qadevOOo/bin/ifc/text/_XFootnotesSupplier.class b/qadevOOo/bin/ifc/text/_XFootnotesSupplier.class
new file mode 100644
index 000000000000..d991c03abbba
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XFootnotesSupplier.class differ
diff --git a/qadevOOo/bin/ifc/text/_XLineNumberingProperties.class b/qadevOOo/bin/ifc/text/_XLineNumberingProperties.class
new file mode 100644
index 000000000000..bc33346fde7c
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XLineNumberingProperties.class differ
diff --git a/qadevOOo/bin/ifc/text/_XMailMergeBroadcaster$MyMailMergeEventListener.class b/qadevOOo/bin/ifc/text/_XMailMergeBroadcaster$MyMailMergeEventListener.class
new file mode 100644
index 000000000000..5998f138c39e
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XMailMergeBroadcaster$MyMailMergeEventListener.class differ
diff --git a/qadevOOo/bin/ifc/text/_XMailMergeBroadcaster.class b/qadevOOo/bin/ifc/text/_XMailMergeBroadcaster.class
new file mode 100644
index 000000000000..ea55e67c09d8
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XMailMergeBroadcaster.class differ
diff --git a/qadevOOo/bin/ifc/text/_XPageCursor.class b/qadevOOo/bin/ifc/text/_XPageCursor.class
new file mode 100644
index 000000000000..c333287883fc
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XPageCursor.class differ
diff --git a/qadevOOo/bin/ifc/text/_XPagePrintable.class b/qadevOOo/bin/ifc/text/_XPagePrintable.class
new file mode 100644
index 000000000000..d79a9bc57963
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XPagePrintable.class differ
diff --git a/qadevOOo/bin/ifc/text/_XParagraphCursor.class b/qadevOOo/bin/ifc/text/_XParagraphCursor.class
new file mode 100644
index 000000000000..e619221ecd7b
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XParagraphCursor.class differ
diff --git a/qadevOOo/bin/ifc/text/_XReferenceMarksSupplier.class b/qadevOOo/bin/ifc/text/_XReferenceMarksSupplier.class
new file mode 100644
index 000000000000..79f6e185abf5
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XReferenceMarksSupplier.class differ
diff --git a/qadevOOo/bin/ifc/text/_XRelativeTextContentInsert.class b/qadevOOo/bin/ifc/text/_XRelativeTextContentInsert.class
new file mode 100644
index 000000000000..4c547ee3bc23
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XRelativeTextContentInsert.class differ
diff --git a/qadevOOo/bin/ifc/text/_XSentenceCursor.class b/qadevOOo/bin/ifc/text/_XSentenceCursor.class
new file mode 100644
index 000000000000..0521bfa58434
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XSentenceCursor.class differ
diff --git a/qadevOOo/bin/ifc/text/_XSimpleText.class b/qadevOOo/bin/ifc/text/_XSimpleText.class
new file mode 100644
index 000000000000..823c9bbcabba
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XSimpleText.class differ
diff --git a/qadevOOo/bin/ifc/text/_XText.class b/qadevOOo/bin/ifc/text/_XText.class
new file mode 100644
index 000000000000..79e934f51d49
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XText.class differ
diff --git a/qadevOOo/bin/ifc/text/_XTextColumns.class b/qadevOOo/bin/ifc/text/_XTextColumns.class
new file mode 100644
index 000000000000..a73443ad2df5
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XTextColumns.class differ
diff --git a/qadevOOo/bin/ifc/text/_XTextContent.class b/qadevOOo/bin/ifc/text/_XTextContent.class
new file mode 100644
index 000000000000..2f970d8e4b1a
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XTextContent.class differ
diff --git a/qadevOOo/bin/ifc/text/_XTextCursor.class b/qadevOOo/bin/ifc/text/_XTextCursor.class
new file mode 100644
index 000000000000..5c80e9697768
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XTextCursor.class differ
diff --git a/qadevOOo/bin/ifc/text/_XTextDocument.class b/qadevOOo/bin/ifc/text/_XTextDocument.class
new file mode 100644
index 000000000000..696f27f5fe98
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XTextDocument.class differ
diff --git a/qadevOOo/bin/ifc/text/_XTextEmbeddedObjectsSupplier.class b/qadevOOo/bin/ifc/text/_XTextEmbeddedObjectsSupplier.class
new file mode 100644
index 000000000000..d0afd09894e9
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XTextEmbeddedObjectsSupplier.class differ
diff --git a/qadevOOo/bin/ifc/text/_XTextField.class b/qadevOOo/bin/ifc/text/_XTextField.class
new file mode 100644
index 000000000000..e2865fb2dc0c
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XTextField.class differ
diff --git a/qadevOOo/bin/ifc/text/_XTextFieldsSupplier.class b/qadevOOo/bin/ifc/text/_XTextFieldsSupplier.class
new file mode 100644
index 000000000000..095522eb8588
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XTextFieldsSupplier.class differ
diff --git a/qadevOOo/bin/ifc/text/_XTextFrame.class b/qadevOOo/bin/ifc/text/_XTextFrame.class
new file mode 100644
index 000000000000..707f5bf3db1c
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XTextFrame.class differ
diff --git a/qadevOOo/bin/ifc/text/_XTextFramesSupplier.class b/qadevOOo/bin/ifc/text/_XTextFramesSupplier.class
new file mode 100644
index 000000000000..e2b1577ba58d
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XTextFramesSupplier.class differ
diff --git a/qadevOOo/bin/ifc/text/_XTextGraphicObjectsSupplier.class b/qadevOOo/bin/ifc/text/_XTextGraphicObjectsSupplier.class
new file mode 100644
index 000000000000..f0f00ce0b9d2
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XTextGraphicObjectsSupplier.class differ
diff --git a/qadevOOo/bin/ifc/text/_XTextRange.class b/qadevOOo/bin/ifc/text/_XTextRange.class
new file mode 100644
index 000000000000..abc03bd38ecb
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XTextRange.class differ
diff --git a/qadevOOo/bin/ifc/text/_XTextRangeCompare.class b/qadevOOo/bin/ifc/text/_XTextRangeCompare.class
new file mode 100644
index 000000000000..8c3b98cc49c9
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XTextRangeCompare.class differ
diff --git a/qadevOOo/bin/ifc/text/_XTextRangeMover.class b/qadevOOo/bin/ifc/text/_XTextRangeMover.class
new file mode 100644
index 000000000000..e540fd39a99b
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XTextRangeMover.class differ
diff --git a/qadevOOo/bin/ifc/text/_XTextSection.class b/qadevOOo/bin/ifc/text/_XTextSection.class
new file mode 100644
index 000000000000..2c8f9493aab6
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XTextSection.class differ
diff --git a/qadevOOo/bin/ifc/text/_XTextSectionsSupplier.class b/qadevOOo/bin/ifc/text/_XTextSectionsSupplier.class
new file mode 100644
index 000000000000..e71442e30f09
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XTextSectionsSupplier.class differ
diff --git a/qadevOOo/bin/ifc/text/_XTextTable.class b/qadevOOo/bin/ifc/text/_XTextTable.class
new file mode 100644
index 000000000000..dfa1d5959377
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XTextTable.class differ
diff --git a/qadevOOo/bin/ifc/text/_XTextTableCursor.class b/qadevOOo/bin/ifc/text/_XTextTableCursor.class
new file mode 100644
index 000000000000..9bd121ed19b9
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XTextTableCursor.class differ
diff --git a/qadevOOo/bin/ifc/text/_XTextTablesSupplier.class b/qadevOOo/bin/ifc/text/_XTextTablesSupplier.class
new file mode 100644
index 000000000000..df3421a044aa
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XTextTablesSupplier.class differ
diff --git a/qadevOOo/bin/ifc/text/_XTextViewCursorSupplier.class b/qadevOOo/bin/ifc/text/_XTextViewCursorSupplier.class
new file mode 100644
index 000000000000..d6705012d73b
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XTextViewCursorSupplier.class differ
diff --git a/qadevOOo/bin/ifc/text/_XWordCursor.class b/qadevOOo/bin/ifc/text/_XWordCursor.class
new file mode 100644
index 000000000000..a8729f79b567
Binary files /dev/null and b/qadevOOo/bin/ifc/text/_XWordCursor.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XCachedContentResultSetFactory.class b/qadevOOo/bin/ifc/ucb/_XCachedContentResultSetFactory.class
new file mode 100644
index 000000000000..626e96ab232a
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XCachedContentResultSetFactory.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XCachedContentResultSetStubFactory.class b/qadevOOo/bin/ifc/ucb/_XCachedContentResultSetStubFactory.class
new file mode 100644
index 000000000000..e5e4b1c7b097
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XCachedContentResultSetStubFactory.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XCachedDynamicResultSetFactory.class b/qadevOOo/bin/ifc/ucb/_XCachedDynamicResultSetFactory.class
new file mode 100644
index 000000000000..4ac786e42ab5
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XCachedDynamicResultSetFactory.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XCachedDynamicResultSetStubFactory.class b/qadevOOo/bin/ifc/ucb/_XCachedDynamicResultSetStubFactory.class
new file mode 100644
index 000000000000..d13080369adc
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XCachedDynamicResultSetStubFactory.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XCommandProcessor$1.class b/qadevOOo/bin/ifc/ucb/_XCommandProcessor$1.class
new file mode 100644
index 000000000000..3f2d293d3d61
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XCommandProcessor$1.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XCommandProcessor.class b/qadevOOo/bin/ifc/ucb/_XCommandProcessor.class
new file mode 100644
index 000000000000..d127413e6ff4
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XCommandProcessor.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XCommandProcessor2.class b/qadevOOo/bin/ifc/ucb/_XCommandProcessor2.class
new file mode 100644
index 000000000000..7d2cc87d9699
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XCommandProcessor2.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XContentIdentifierFactory.class b/qadevOOo/bin/ifc/ucb/_XContentIdentifierFactory.class
new file mode 100644
index 000000000000..cad9317ab717
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XContentIdentifierFactory.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XContentProvider.class b/qadevOOo/bin/ifc/ucb/_XContentProvider.class
new file mode 100644
index 000000000000..e44d9da34187
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XContentProvider.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XContentProviderFactory.class b/qadevOOo/bin/ifc/ucb/_XContentProviderFactory.class
new file mode 100644
index 000000000000..e38f34bc569e
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XContentProviderFactory.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XContentProviderManager.class b/qadevOOo/bin/ifc/ucb/_XContentProviderManager.class
new file mode 100644
index 000000000000..30a3771d4389
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XContentProviderManager.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XDataContainer.class b/qadevOOo/bin/ifc/ucb/_XDataContainer.class
new file mode 100644
index 000000000000..651fdb0c93ac
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XDataContainer.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XFileIdentifierConverter.class b/qadevOOo/bin/ifc/ucb/_XFileIdentifierConverter.class
new file mode 100644
index 000000000000..2d127654d279
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XFileIdentifierConverter.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XParameterizedContentProvider.class b/qadevOOo/bin/ifc/ucb/_XParameterizedContentProvider.class
new file mode 100644
index 000000000000..e5b13e2747f2
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XParameterizedContentProvider.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XPropertyMatcherFactory.class b/qadevOOo/bin/ifc/ucb/_XPropertyMatcherFactory.class
new file mode 100644
index 000000000000..ce8728e10781
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XPropertyMatcherFactory.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XPropertySetRegistryFactory.class b/qadevOOo/bin/ifc/ucb/_XPropertySetRegistryFactory.class
new file mode 100644
index 000000000000..c027e50cf8f1
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XPropertySetRegistryFactory.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XRemoteContentProviderAcceptor$DoneListener.class b/qadevOOo/bin/ifc/ucb/_XRemoteContentProviderAcceptor$DoneListener.class
new file mode 100644
index 000000000000..92774912fc83
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XRemoteContentProviderAcceptor$DoneListener.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XRemoteContentProviderAcceptor.class b/qadevOOo/bin/ifc/ucb/_XRemoteContentProviderAcceptor.class
new file mode 100644
index 000000000000..4d6bb3944544
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XRemoteContentProviderAcceptor.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XRemoteContentProviderActivator.class b/qadevOOo/bin/ifc/ucb/_XRemoteContentProviderActivator.class
new file mode 100644
index 000000000000..03107d40c138
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XRemoteContentProviderActivator.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XSimpleFileAccess.class b/qadevOOo/bin/ifc/ucb/_XSimpleFileAccess.class
new file mode 100644
index 000000000000..145cc8f022b4
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XSimpleFileAccess.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XSimpleFileAccess2.class b/qadevOOo/bin/ifc/ucb/_XSimpleFileAccess2.class
new file mode 100644
index 000000000000..ac78dcd071a7
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XSimpleFileAccess2.class differ
diff --git a/qadevOOo/bin/ifc/ucb/_XSortedDynamicResultSetFactory.class b/qadevOOo/bin/ifc/ucb/_XSortedDynamicResultSetFactory.class
new file mode 100644
index 000000000000..66a832a9655d
Binary files /dev/null and b/qadevOOo/bin/ifc/ucb/_XSortedDynamicResultSetFactory.class differ
diff --git a/qadevOOo/bin/ifc/ui/_XContextMenuInterception.class b/qadevOOo/bin/ifc/ui/_XContextMenuInterception.class
new file mode 100644
index 000000000000..c076eb38c619
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/_XContextMenuInterception.class differ
diff --git a/qadevOOo/bin/ifc/ui/_XModuleUIConfigurationManager.class b/qadevOOo/bin/ifc/ui/_XModuleUIConfigurationManager.class
new file mode 100644
index 000000000000..24b65c96c073
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/_XModuleUIConfigurationManager.class differ
diff --git a/qadevOOo/bin/ifc/ui/_XModuleUIConfigurationManagerSupplier.class b/qadevOOo/bin/ifc/ui/_XModuleUIConfigurationManagerSupplier.class
new file mode 100644
index 000000000000..695f99dafe31
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/_XModuleUIConfigurationManagerSupplier.class differ
diff --git a/qadevOOo/bin/ifc/ui/_XUIConfiguration$XUIConfigurationListenerImpl.class b/qadevOOo/bin/ifc/ui/_XUIConfiguration$XUIConfigurationListenerImpl.class
new file mode 100644
index 000000000000..3c81a595a77b
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/_XUIConfiguration$XUIConfigurationListenerImpl.class differ
diff --git a/qadevOOo/bin/ifc/ui/_XUIConfiguration.class b/qadevOOo/bin/ifc/ui/_XUIConfiguration.class
new file mode 100644
index 000000000000..2e9b787417bc
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/_XUIConfiguration.class differ
diff --git a/qadevOOo/bin/ifc/ui/_XUIConfigurationListener.class b/qadevOOo/bin/ifc/ui/_XUIConfigurationListener.class
new file mode 100644
index 000000000000..a70c559d36ea
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/_XUIConfigurationListener.class differ
diff --git a/qadevOOo/bin/ifc/ui/_XUIConfigurationManager.class b/qadevOOo/bin/ifc/ui/_XUIConfigurationManager.class
new file mode 100644
index 000000000000..869f49e81b62
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/_XUIConfigurationManager.class differ
diff --git a/qadevOOo/bin/ifc/ui/_XUIConfigurationPersistence.class b/qadevOOo/bin/ifc/ui/_XUIConfigurationPersistence.class
new file mode 100644
index 000000000000..2ab383cf347e
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/_XUIConfigurationPersistence.class differ
diff --git a/qadevOOo/bin/ifc/ui/_XUIConfigurationStorage.class b/qadevOOo/bin/ifc/ui/_XUIConfigurationStorage.class
new file mode 100644
index 000000000000..9c37aa05136a
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/_XUIConfigurationStorage.class differ
diff --git a/qadevOOo/bin/ifc/ui/_XUIElementFactory.class b/qadevOOo/bin/ifc/ui/_XUIElementFactory.class
new file mode 100644
index 000000000000..fb63e59ae284
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/_XUIElementFactory.class differ
diff --git a/qadevOOo/bin/ifc/ui/_XUIElementFactoryRegistration.class b/qadevOOo/bin/ifc/ui/_XUIElementFactoryRegistration.class
new file mode 100644
index 000000000000..9512f62183b8
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/_XUIElementFactoryRegistration.class differ
diff --git a/qadevOOo/bin/ifc/ui/dialogs/_FilePicker.class b/qadevOOo/bin/ifc/ui/dialogs/_FilePicker.class
new file mode 100644
index 000000000000..9089389b91ce
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/dialogs/_FilePicker.class differ
diff --git a/qadevOOo/bin/ifc/ui/dialogs/_XControlAccess.class b/qadevOOo/bin/ifc/ui/dialogs/_XControlAccess.class
new file mode 100644
index 000000000000..d5e3db9220ae
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/dialogs/_XControlAccess.class differ
diff --git a/qadevOOo/bin/ifc/ui/dialogs/_XControlInformation.class b/qadevOOo/bin/ifc/ui/dialogs/_XControlInformation.class
new file mode 100644
index 000000000000..48cbc0fa01a4
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/dialogs/_XControlInformation.class differ
diff --git a/qadevOOo/bin/ifc/ui/dialogs/_XExecutableDialog$ExecThread.class b/qadevOOo/bin/ifc/ui/dialogs/_XExecutableDialog$ExecThread.class
new file mode 100644
index 000000000000..e2c8117febc0
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/dialogs/_XExecutableDialog$ExecThread.class differ
diff --git a/qadevOOo/bin/ifc/ui/dialogs/_XExecutableDialog.class b/qadevOOo/bin/ifc/ui/dialogs/_XExecutableDialog.class
new file mode 100644
index 000000000000..fec3e15bb3b3
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/dialogs/_XExecutableDialog.class differ
diff --git a/qadevOOo/bin/ifc/ui/dialogs/_XFilePicker.class b/qadevOOo/bin/ifc/ui/dialogs/_XFilePicker.class
new file mode 100644
index 000000000000..75e078f57965
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/dialogs/_XFilePicker.class differ
diff --git a/qadevOOo/bin/ifc/ui/dialogs/_XFilePickerControlAccess.class b/qadevOOo/bin/ifc/ui/dialogs/_XFilePickerControlAccess.class
new file mode 100644
index 000000000000..69a994728dc4
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/dialogs/_XFilePickerControlAccess.class differ
diff --git a/qadevOOo/bin/ifc/ui/dialogs/_XFilePickerNotifier$ExecThread.class b/qadevOOo/bin/ifc/ui/dialogs/_XFilePickerNotifier$ExecThread.class
new file mode 100644
index 000000000000..acd5385a903c
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/dialogs/_XFilePickerNotifier$ExecThread.class differ
diff --git a/qadevOOo/bin/ifc/ui/dialogs/_XFilePickerNotifier$TestListener.class b/qadevOOo/bin/ifc/ui/dialogs/_XFilePickerNotifier$TestListener.class
new file mode 100644
index 000000000000..0d0fe6609638
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/dialogs/_XFilePickerNotifier$TestListener.class differ
diff --git a/qadevOOo/bin/ifc/ui/dialogs/_XFilePickerNotifier.class b/qadevOOo/bin/ifc/ui/dialogs/_XFilePickerNotifier.class
new file mode 100644
index 000000000000..4c1cd265d1d9
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/dialogs/_XFilePickerNotifier.class differ
diff --git a/qadevOOo/bin/ifc/ui/dialogs/_XFilePreview.class b/qadevOOo/bin/ifc/ui/dialogs/_XFilePreview.class
new file mode 100644
index 000000000000..c722e3e1f9aa
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/dialogs/_XFilePreview.class differ
diff --git a/qadevOOo/bin/ifc/ui/dialogs/_XFilterGroupManager.class b/qadevOOo/bin/ifc/ui/dialogs/_XFilterGroupManager.class
new file mode 100644
index 000000000000..2668cfaeb5e6
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/dialogs/_XFilterGroupManager.class differ
diff --git a/qadevOOo/bin/ifc/ui/dialogs/_XFilterManager.class b/qadevOOo/bin/ifc/ui/dialogs/_XFilterManager.class
new file mode 100644
index 000000000000..9ea301942317
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/dialogs/_XFilterManager.class differ
diff --git a/qadevOOo/bin/ifc/ui/dialogs/_XFolderPicker.class b/qadevOOo/bin/ifc/ui/dialogs/_XFolderPicker.class
new file mode 100644
index 000000000000..26f73b9e0b72
Binary files /dev/null and b/qadevOOo/bin/ifc/ui/dialogs/_XFolderPicker.class differ
diff --git a/qadevOOo/bin/ifc/uno/_XComponentContext.class b/qadevOOo/bin/ifc/uno/_XComponentContext.class
new file mode 100644
index 000000000000..07b5e5a9ebac
Binary files /dev/null and b/qadevOOo/bin/ifc/uno/_XComponentContext.class differ
diff --git a/qadevOOo/bin/ifc/uno/_XNamingService.class b/qadevOOo/bin/ifc/uno/_XNamingService.class
new file mode 100644
index 000000000000..29aa132852db
Binary files /dev/null and b/qadevOOo/bin/ifc/uno/_XNamingService.class differ
diff --git a/qadevOOo/bin/ifc/util/_PathSettings$1.class b/qadevOOo/bin/ifc/util/_PathSettings$1.class
new file mode 100644
index 000000000000..107892095ba3
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_PathSettings$1.class differ
diff --git a/qadevOOo/bin/ifc/util/_PathSettings.class b/qadevOOo/bin/ifc/util/_PathSettings.class
new file mode 100644
index 000000000000..ec3863abec07
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_PathSettings.class differ
diff --git a/qadevOOo/bin/ifc/util/_SearchDescriptor.class b/qadevOOo/bin/ifc/util/_SearchDescriptor.class
new file mode 100644
index 000000000000..83d9f1a087fe
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_SearchDescriptor.class differ
diff --git a/qadevOOo/bin/ifc/util/_XCancellable.class b/qadevOOo/bin/ifc/util/_XCancellable.class
new file mode 100644
index 000000000000..962e43141eed
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XCancellable.class differ
diff --git a/qadevOOo/bin/ifc/util/_XChangesBatch.class b/qadevOOo/bin/ifc/util/_XChangesBatch.class
new file mode 100644
index 000000000000..0107bb9ae05f
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XChangesBatch.class differ
diff --git a/qadevOOo/bin/ifc/util/_XChangesNotifier$MyChangesListener.class b/qadevOOo/bin/ifc/util/_XChangesNotifier$MyChangesListener.class
new file mode 100644
index 000000000000..d7c0fefc70da
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XChangesNotifier$MyChangesListener.class differ
diff --git a/qadevOOo/bin/ifc/util/_XChangesNotifier.class b/qadevOOo/bin/ifc/util/_XChangesNotifier.class
new file mode 100644
index 000000000000..36614e934015
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XChangesNotifier.class differ
diff --git a/qadevOOo/bin/ifc/util/_XCloneable.class b/qadevOOo/bin/ifc/util/_XCloneable.class
new file mode 100644
index 000000000000..6c4a1ae46596
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XCloneable.class differ
diff --git a/qadevOOo/bin/ifc/util/_XFlushable$MyFlushListener.class b/qadevOOo/bin/ifc/util/_XFlushable$MyFlushListener.class
new file mode 100644
index 000000000000..c865742ed955
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XFlushable$MyFlushListener.class differ
diff --git a/qadevOOo/bin/ifc/util/_XFlushable.class b/qadevOOo/bin/ifc/util/_XFlushable.class
new file mode 100644
index 000000000000..e87c842063e7
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XFlushable.class differ
diff --git a/qadevOOo/bin/ifc/util/_XImportable.class b/qadevOOo/bin/ifc/util/_XImportable.class
new file mode 100644
index 000000000000..3cdf7c60a3b4
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XImportable.class differ
diff --git a/qadevOOo/bin/ifc/util/_XModeSelector.class b/qadevOOo/bin/ifc/util/_XModeSelector.class
new file mode 100644
index 000000000000..90e501cbe3f0
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XModeSelector.class differ
diff --git a/qadevOOo/bin/ifc/util/_XModifiable.class b/qadevOOo/bin/ifc/util/_XModifiable.class
new file mode 100644
index 000000000000..227026196aeb
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XModifiable.class differ
diff --git a/qadevOOo/bin/ifc/util/_XModifyBroadcaster$TestModifyListener.class b/qadevOOo/bin/ifc/util/_XModifyBroadcaster$TestModifyListener.class
new file mode 100644
index 000000000000..336c10cadc84
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XModifyBroadcaster$TestModifyListener.class differ
diff --git a/qadevOOo/bin/ifc/util/_XModifyBroadcaster.class b/qadevOOo/bin/ifc/util/_XModifyBroadcaster.class
new file mode 100644
index 000000000000..41605f57df80
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XModifyBroadcaster.class differ
diff --git a/qadevOOo/bin/ifc/util/_XNumberFormatsSupplier.class b/qadevOOo/bin/ifc/util/_XNumberFormatsSupplier.class
new file mode 100644
index 000000000000..c0ad9d84a47d
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XNumberFormatsSupplier.class differ
diff --git a/qadevOOo/bin/ifc/util/_XNumberFormatter.class b/qadevOOo/bin/ifc/util/_XNumberFormatter.class
new file mode 100644
index 000000000000..2c26580344d6
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XNumberFormatter.class differ
diff --git a/qadevOOo/bin/ifc/util/_XProtectable.class b/qadevOOo/bin/ifc/util/_XProtectable.class
new file mode 100644
index 000000000000..b3da930af584
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XProtectable.class differ
diff --git a/qadevOOo/bin/ifc/util/_XRefreshable$MyRefreshListener.class b/qadevOOo/bin/ifc/util/_XRefreshable$MyRefreshListener.class
new file mode 100644
index 000000000000..c75f26806d91
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XRefreshable$MyRefreshListener.class differ
diff --git a/qadevOOo/bin/ifc/util/_XRefreshable.class b/qadevOOo/bin/ifc/util/_XRefreshable.class
new file mode 100644
index 000000000000..2513ed590414
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XRefreshable.class differ
diff --git a/qadevOOo/bin/ifc/util/_XReplaceDescriptor.class b/qadevOOo/bin/ifc/util/_XReplaceDescriptor.class
new file mode 100644
index 000000000000..960530c72210
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XReplaceDescriptor.class differ
diff --git a/qadevOOo/bin/ifc/util/_XReplaceable.class b/qadevOOo/bin/ifc/util/_XReplaceable.class
new file mode 100644
index 000000000000..1dc1fc425308
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XReplaceable.class differ
diff --git a/qadevOOo/bin/ifc/util/_XSearchDescriptor.class b/qadevOOo/bin/ifc/util/_XSearchDescriptor.class
new file mode 100644
index 000000000000..719a99215e7f
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XSearchDescriptor.class differ
diff --git a/qadevOOo/bin/ifc/util/_XSearchable.class b/qadevOOo/bin/ifc/util/_XSearchable.class
new file mode 100644
index 000000000000..d145318ea9d3
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XSearchable.class differ
diff --git a/qadevOOo/bin/ifc/util/_XSortable$XSortChecker.class b/qadevOOo/bin/ifc/util/_XSortable$XSortChecker.class
new file mode 100644
index 000000000000..b0568d4a9853
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XSortable$XSortChecker.class differ
diff --git a/qadevOOo/bin/ifc/util/_XSortable.class b/qadevOOo/bin/ifc/util/_XSortable.class
new file mode 100644
index 000000000000..81c4befd1b69
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XSortable.class differ
diff --git a/qadevOOo/bin/ifc/util/_XStringEscape.class b/qadevOOo/bin/ifc/util/_XStringEscape.class
new file mode 100644
index 000000000000..ff1515982150
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XStringEscape.class differ
diff --git a/qadevOOo/bin/ifc/util/_XStringSubstitution.class b/qadevOOo/bin/ifc/util/_XStringSubstitution.class
new file mode 100644
index 000000000000..fcfb37a1fe2c
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XStringSubstitution.class differ
diff --git a/qadevOOo/bin/ifc/util/_XURLTransformer.class b/qadevOOo/bin/ifc/util/_XURLTransformer.class
new file mode 100644
index 000000000000..c7f9243225d7
Binary files /dev/null and b/qadevOOo/bin/ifc/util/_XURLTransformer.class differ
diff --git a/qadevOOo/bin/ifc/view/_XControlAccess.class b/qadevOOo/bin/ifc/view/_XControlAccess.class
new file mode 100644
index 000000000000..a4ca8014024c
Binary files /dev/null and b/qadevOOo/bin/ifc/view/_XControlAccess.class differ
diff --git a/qadevOOo/bin/ifc/view/_XFormLayerAccess.class b/qadevOOo/bin/ifc/view/_XFormLayerAccess.class
new file mode 100644
index 000000000000..be5c27121f8a
Binary files /dev/null and b/qadevOOo/bin/ifc/view/_XFormLayerAccess.class differ
diff --git a/qadevOOo/bin/ifc/view/_XMultiSelectionSupplier.class b/qadevOOo/bin/ifc/view/_XMultiSelectionSupplier.class
new file mode 100644
index 000000000000..fc33793e5ff7
Binary files /dev/null and b/qadevOOo/bin/ifc/view/_XMultiSelectionSupplier.class differ
diff --git a/qadevOOo/bin/ifc/view/_XPrintJobBroadcaster$MyPrintJobListener.class b/qadevOOo/bin/ifc/view/_XPrintJobBroadcaster$MyPrintJobListener.class
new file mode 100644
index 000000000000..a3788b70d666
Binary files /dev/null and b/qadevOOo/bin/ifc/view/_XPrintJobBroadcaster$MyPrintJobListener.class differ
diff --git a/qadevOOo/bin/ifc/view/_XPrintJobBroadcaster.class b/qadevOOo/bin/ifc/view/_XPrintJobBroadcaster.class
new file mode 100644
index 000000000000..b909816db5fd
Binary files /dev/null and b/qadevOOo/bin/ifc/view/_XPrintJobBroadcaster.class differ
diff --git a/qadevOOo/bin/ifc/view/_XPrintSettingsSupplier.class b/qadevOOo/bin/ifc/view/_XPrintSettingsSupplier.class
new file mode 100644
index 000000000000..38a31d9d4fec
Binary files /dev/null and b/qadevOOo/bin/ifc/view/_XPrintSettingsSupplier.class differ
diff --git a/qadevOOo/bin/ifc/view/_XPrintable.class b/qadevOOo/bin/ifc/view/_XPrintable.class
new file mode 100644
index 000000000000..9ba0147d1d06
Binary files /dev/null and b/qadevOOo/bin/ifc/view/_XPrintable.class differ
diff --git a/qadevOOo/bin/ifc/view/_XScreenCursor.class b/qadevOOo/bin/ifc/view/_XScreenCursor.class
new file mode 100644
index 000000000000..4a591f514b41
Binary files /dev/null and b/qadevOOo/bin/ifc/view/_XScreenCursor.class differ
diff --git a/qadevOOo/bin/ifc/view/_XSelectionSupplier$MyChangeListener.class b/qadevOOo/bin/ifc/view/_XSelectionSupplier$MyChangeListener.class
new file mode 100644
index 000000000000..3432a651f2c1
Binary files /dev/null and b/qadevOOo/bin/ifc/view/_XSelectionSupplier$MyChangeListener.class differ
diff --git a/qadevOOo/bin/ifc/view/_XSelectionSupplier.class b/qadevOOo/bin/ifc/view/_XSelectionSupplier.class
new file mode 100644
index 000000000000..3bcd6dfe8737
Binary files /dev/null and b/qadevOOo/bin/ifc/view/_XSelectionSupplier.class differ
diff --git a/qadevOOo/bin/ifc/view/_XViewSettingsSupplier.class b/qadevOOo/bin/ifc/view/_XViewSettingsSupplier.class
new file mode 100644
index 000000000000..ddda7f3482a9
Binary files /dev/null and b/qadevOOo/bin/ifc/view/_XViewSettingsSupplier.class differ
diff --git a/qadevOOo/bin/ifc/xml/_UserDefinedAttributesSupplier.class b/qadevOOo/bin/ifc/xml/_UserDefinedAttributesSupplier.class
new file mode 100644
index 000000000000..acb6e1b1661e
Binary files /dev/null and b/qadevOOo/bin/ifc/xml/_UserDefinedAttributesSupplier.class differ
diff --git a/qadevOOo/bin/ifc/xml/sax/_XDocumentHandler$DocumentLocator.class b/qadevOOo/bin/ifc/xml/sax/_XDocumentHandler$DocumentLocator.class
new file mode 100644
index 000000000000..e5628cd51696
Binary files /dev/null and b/qadevOOo/bin/ifc/xml/sax/_XDocumentHandler$DocumentLocator.class differ
diff --git a/qadevOOo/bin/ifc/xml/sax/_XDocumentHandler$ImportChecker.class b/qadevOOo/bin/ifc/xml/sax/_XDocumentHandler$ImportChecker.class
new file mode 100644
index 000000000000..df58a126be55
Binary files /dev/null and b/qadevOOo/bin/ifc/xml/sax/_XDocumentHandler$ImportChecker.class differ
diff --git a/qadevOOo/bin/ifc/xml/sax/_XDocumentHandler$TargetDocumentSetter.class b/qadevOOo/bin/ifc/xml/sax/_XDocumentHandler$TargetDocumentSetter.class
new file mode 100644
index 000000000000..0ac84cc797ef
Binary files /dev/null and b/qadevOOo/bin/ifc/xml/sax/_XDocumentHandler$TargetDocumentSetter.class differ
diff --git a/qadevOOo/bin/ifc/xml/sax/_XDocumentHandler.class b/qadevOOo/bin/ifc/xml/sax/_XDocumentHandler.class
new file mode 100644
index 000000000000..16155d03b2b9
Binary files /dev/null and b/qadevOOo/bin/ifc/xml/sax/_XDocumentHandler.class differ
diff --git a/qadevOOo/bin/lib/DynamicClassLoader.class b/qadevOOo/bin/lib/DynamicClassLoader.class
new file mode 100644
index 000000000000..b28da8449b9b
Binary files /dev/null and b/qadevOOo/bin/lib/DynamicClassLoader.class differ
diff --git a/qadevOOo/bin/lib/ExceptionStatus.class b/qadevOOo/bin/lib/ExceptionStatus.class
new file mode 100644
index 000000000000..5a60869ce1ff
Binary files /dev/null and b/qadevOOo/bin/lib/ExceptionStatus.class differ
diff --git a/qadevOOo/bin/lib/MultiMethodTest.class b/qadevOOo/bin/lib/MultiMethodTest.class
new file mode 100644
index 000000000000..0850ad2ad804
Binary files /dev/null and b/qadevOOo/bin/lib/MultiMethodTest.class differ
diff --git a/qadevOOo/bin/lib/MultiPropertyTest$PropertyTester.class b/qadevOOo/bin/lib/MultiPropertyTest$PropertyTester.class
new file mode 100644
index 000000000000..2ddebcccb270
Binary files /dev/null and b/qadevOOo/bin/lib/MultiPropertyTest$PropertyTester.class differ
diff --git a/qadevOOo/bin/lib/MultiPropertyTest$PropertyValueSwitcher.class b/qadevOOo/bin/lib/MultiPropertyTest$PropertyValueSwitcher.class
new file mode 100644
index 000000000000..4d0ab1aad524
Binary files /dev/null and b/qadevOOo/bin/lib/MultiPropertyTest$PropertyValueSwitcher.class differ
diff --git a/qadevOOo/bin/lib/MultiPropertyTest.class b/qadevOOo/bin/lib/MultiPropertyTest.class
new file mode 100644
index 000000000000..93eb953e3c8a
Binary files /dev/null and b/qadevOOo/bin/lib/MultiPropertyTest.class differ
diff --git a/qadevOOo/bin/lib/RunState.class b/qadevOOo/bin/lib/RunState.class
new file mode 100644
index 000000000000..2d7405422b36
Binary files /dev/null and b/qadevOOo/bin/lib/RunState.class differ
diff --git a/qadevOOo/bin/lib/SimpleStatus.class b/qadevOOo/bin/lib/SimpleStatus.class
new file mode 100644
index 000000000000..0cacc3740ad4
Binary files /dev/null and b/qadevOOo/bin/lib/SimpleStatus.class differ
diff --git a/qadevOOo/bin/lib/Status.class b/qadevOOo/bin/lib/Status.class
new file mode 100644
index 000000000000..8455786ef226
Binary files /dev/null and b/qadevOOo/bin/lib/Status.class differ
diff --git a/qadevOOo/bin/lib/StatusException.class b/qadevOOo/bin/lib/StatusException.class
new file mode 100644
index 000000000000..5e903d2d8565
Binary files /dev/null and b/qadevOOo/bin/lib/StatusException.class differ
diff --git a/qadevOOo/bin/lib/TestCase.class b/qadevOOo/bin/lib/TestCase.class
new file mode 100644
index 000000000000..5ba835c2808e
Binary files /dev/null and b/qadevOOo/bin/lib/TestCase.class differ
diff --git a/qadevOOo/bin/lib/TestEnvironment.class b/qadevOOo/bin/lib/TestEnvironment.class
new file mode 100644
index 000000000000..28454855ece6
Binary files /dev/null and b/qadevOOo/bin/lib/TestEnvironment.class differ
diff --git a/qadevOOo/bin/lib/TestParameters.class b/qadevOOo/bin/lib/TestParameters.class
new file mode 100644
index 000000000000..5790a31601db
Binary files /dev/null and b/qadevOOo/bin/lib/TestParameters.class differ
diff --git a/qadevOOo/bin/lib/TestResult.class b/qadevOOo/bin/lib/TestResult.class
new file mode 100644
index 000000000000..6a79e6746e31
Binary files /dev/null and b/qadevOOo/bin/lib/TestResult.class differ
diff --git a/qadevOOo/bin/manifest b/qadevOOo/bin/manifest
new file mode 100644
index 000000000000..9bebd71a2b97
--- /dev/null
+++ b/qadevOOo/bin/manifest
@@ -0,0 +1,2 @@
+RegistrationClassName: org.openoffice.RunnerService
+
diff --git a/qadevOOo/bin/mod/_acceptor/Acceptor.class b/qadevOOo/bin/mod/_acceptor/Acceptor.class
new file mode 100644
index 000000000000..7426b8d39bf4
Binary files /dev/null and b/qadevOOo/bin/mod/_acceptor/Acceptor.class differ
diff --git a/qadevOOo/bin/mod/_acceptor/package.html b/qadevOOo/bin/mod/_acceptor/package.html
new file mode 100644
index 000000000000..2f8205d1ca14
--- /dev/null
+++ b/qadevOOo/bin/mod/_acceptor/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'acceptor'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_acceptor/uno/Acceptor.class b/qadevOOo/bin/mod/_acceptor/uno/Acceptor.class
new file mode 100644
index 000000000000..0cea8a5ae2fc
Binary files /dev/null and b/qadevOOo/bin/mod/_acceptor/uno/Acceptor.class differ
diff --git a/qadevOOo/bin/mod/_ado/ODriver.class b/qadevOOo/bin/mod/_ado/ODriver.class
new file mode 100644
index 000000000000..4be951ff9d8a
Binary files /dev/null and b/qadevOOo/bin/mod/_ado/ODriver.class differ
diff --git a/qadevOOo/bin/mod/_basctl/AccessibleShape$1.class b/qadevOOo/bin/mod/_basctl/AccessibleShape$1.class
new file mode 100644
index 000000000000..04b278872ed0
Binary files /dev/null and b/qadevOOo/bin/mod/_basctl/AccessibleShape$1.class differ
diff --git a/qadevOOo/bin/mod/_basctl/AccessibleShape.class b/qadevOOo/bin/mod/_basctl/AccessibleShape.class
new file mode 100644
index 000000000000..07ea7337cec2
Binary files /dev/null and b/qadevOOo/bin/mod/_basctl/AccessibleShape.class differ
diff --git a/qadevOOo/bin/mod/_brdgfctr/BridgeFactory.class b/qadevOOo/bin/mod/_brdgfctr/BridgeFactory.class
new file mode 100644
index 000000000000..d15ac41cd3ae
Binary files /dev/null and b/qadevOOo/bin/mod/_brdgfctr/BridgeFactory.class differ
diff --git a/qadevOOo/bin/mod/_brdgfctr/package.html b/qadevOOo/bin/mod/_brdgfctr/package.html
new file mode 100644
index 000000000000..40dbd15bd870
--- /dev/null
+++ b/qadevOOo/bin/mod/_brdgfctr/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'brdgfctr'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_bridgefac/uno/BridgeFactory.class b/qadevOOo/bin/mod/_bridgefac/uno/BridgeFactory.class
new file mode 100644
index 000000000000..e3c298b0041d
Binary files /dev/null and b/qadevOOo/bin/mod/_bridgefac/uno/BridgeFactory.class differ
diff --git a/qadevOOo/bin/mod/_bridgefac/uno/package.html b/qadevOOo/bin/mod/_bridgefac/uno/package.html
new file mode 100644
index 000000000000..40dbd15bd870
--- /dev/null
+++ b/qadevOOo/bin/mod/_bridgefac/uno/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'brdgfctr'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_cached/CachedContentResultSetFactory.class b/qadevOOo/bin/mod/_cached/CachedContentResultSetFactory.class
new file mode 100644
index 000000000000..2d72dbdc311e
Binary files /dev/null and b/qadevOOo/bin/mod/_cached/CachedContentResultSetFactory.class differ
diff --git a/qadevOOo/bin/mod/_cached/CachedContentResultSetStubFactory.class b/qadevOOo/bin/mod/_cached/CachedContentResultSetStubFactory.class
new file mode 100644
index 000000000000..5972c2e21c00
Binary files /dev/null and b/qadevOOo/bin/mod/_cached/CachedContentResultSetStubFactory.class differ
diff --git a/qadevOOo/bin/mod/_cached/CachedDynamicResultSetFactory.class b/qadevOOo/bin/mod/_cached/CachedDynamicResultSetFactory.class
new file mode 100644
index 000000000000..6f5d6efe3bf0
Binary files /dev/null and b/qadevOOo/bin/mod/_cached/CachedDynamicResultSetFactory.class differ
diff --git a/qadevOOo/bin/mod/_cached/CachedDynamicResultSetStubFactory.class b/qadevOOo/bin/mod/_cached/CachedDynamicResultSetStubFactory.class
new file mode 100644
index 000000000000..fccc7c225850
Binary files /dev/null and b/qadevOOo/bin/mod/_cached/CachedDynamicResultSetStubFactory.class differ
diff --git a/qadevOOo/bin/mod/_cmdmail/SimpleCommandMail.class b/qadevOOo/bin/mod/_cmdmail/SimpleCommandMail.class
new file mode 100644
index 000000000000..4b144fbfe1fa
Binary files /dev/null and b/qadevOOo/bin/mod/_cmdmail/SimpleCommandMail.class differ
diff --git a/qadevOOo/bin/mod/_cnt/ChaosContentProvider.class b/qadevOOo/bin/mod/_cnt/ChaosContentProvider.class
new file mode 100644
index 000000000000..50f780383f3d
Binary files /dev/null and b/qadevOOo/bin/mod/_cnt/ChaosContentProvider.class differ
diff --git a/qadevOOo/bin/mod/_cnt/CntUnoDataContainer.class b/qadevOOo/bin/mod/_cnt/CntUnoDataContainer.class
new file mode 100644
index 000000000000..b224932df2f2
Binary files /dev/null and b/qadevOOo/bin/mod/_cnt/CntUnoDataContainer.class differ
diff --git a/qadevOOo/bin/mod/_cnt/PropertyMatcherFactory.class b/qadevOOo/bin/mod/_cnt/PropertyMatcherFactory.class
new file mode 100644
index 000000000000..7557f4984b22
Binary files /dev/null and b/qadevOOo/bin/mod/_cnt/PropertyMatcherFactory.class differ
diff --git a/qadevOOo/bin/mod/_configmgr/ConfigurationProvider.class b/qadevOOo/bin/mod/_configmgr/ConfigurationProvider.class
new file mode 100644
index 000000000000..c946a9558efb
Binary files /dev/null and b/qadevOOo/bin/mod/_configmgr/ConfigurationProvider.class differ
diff --git a/qadevOOo/bin/mod/_configmgr/DefaultProvider.class b/qadevOOo/bin/mod/_configmgr/DefaultProvider.class
new file mode 100644
index 000000000000..edabee8b2203
Binary files /dev/null and b/qadevOOo/bin/mod/_configmgr/DefaultProvider.class differ
diff --git a/qadevOOo/bin/mod/_configmgr/ProviderTestEnvironment.class b/qadevOOo/bin/mod/_configmgr/ProviderTestEnvironment.class
new file mode 100644
index 000000000000..32fd7681c9f8
Binary files /dev/null and b/qadevOOo/bin/mod/_configmgr/ProviderTestEnvironment.class differ
diff --git a/qadevOOo/bin/mod/_connector/uno/Connector.class b/qadevOOo/bin/mod/_connector/uno/Connector.class
new file mode 100644
index 000000000000..f64ecdfe8cff
Binary files /dev/null and b/qadevOOo/bin/mod/_connector/uno/Connector.class differ
diff --git a/qadevOOo/bin/mod/_connector/uno/package.html b/qadevOOo/bin/mod/_connector/uno/package.html
new file mode 100644
index 000000000000..c9ff7b2b5596
--- /dev/null
+++ b/qadevOOo/bin/mod/_connector/uno/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'connector'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_connectr/Connector.class b/qadevOOo/bin/mod/_connectr/Connector.class
new file mode 100644
index 000000000000..a2e3264d969f
Binary files /dev/null and b/qadevOOo/bin/mod/_connectr/Connector.class differ
diff --git a/qadevOOo/bin/mod/_connectr/package.html b/qadevOOo/bin/mod/_connectr/package.html
new file mode 100644
index 000000000000..c9ff7b2b5596
--- /dev/null
+++ b/qadevOOo/bin/mod/_connectr/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'connector'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_corefl/CoreReflection.class b/qadevOOo/bin/mod/_corefl/CoreReflection.class
new file mode 100644
index 000000000000..80147375088e
Binary files /dev/null and b/qadevOOo/bin/mod/_corefl/CoreReflection.class differ
diff --git a/qadevOOo/bin/mod/_corefl/package.html b/qadevOOo/bin/mod/_corefl/package.html
new file mode 100644
index 000000000000..9d604ba75d23
--- /dev/null
+++ b/qadevOOo/bin/mod/_corefl/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'corefl'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_corereflection/uno/CoreReflection.class b/qadevOOo/bin/mod/_corereflection/uno/CoreReflection.class
new file mode 100644
index 000000000000..02083031c010
Binary files /dev/null and b/qadevOOo/bin/mod/_corereflection/uno/CoreReflection.class differ
diff --git a/qadevOOo/bin/mod/_corereflection/uno/package.html b/qadevOOo/bin/mod/_corereflection/uno/package.html
new file mode 100644
index 000000000000..9d604ba75d23
--- /dev/null
+++ b/qadevOOo/bin/mod/_corereflection/uno/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'corefl'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_cpld/DLLComponentLoader.class b/qadevOOo/bin/mod/_cpld/DLLComponentLoader.class
new file mode 100644
index 000000000000..6e809f8407de
Binary files /dev/null and b/qadevOOo/bin/mod/_cpld/DLLComponentLoader.class differ
diff --git a/qadevOOo/bin/mod/_cpld/package.html b/qadevOOo/bin/mod/_cpld/package.html
new file mode 100644
index 000000000000..1bc7bf11768a
--- /dev/null
+++ b/qadevOOo/bin/mod/_cpld/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'cpld'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_dbaccess/ConnectionLineAccessibility$1.class b/qadevOOo/bin/mod/_dbaccess/ConnectionLineAccessibility$1.class
new file mode 100644
index 000000000000..e3987d347e82
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/ConnectionLineAccessibility$1.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/ConnectionLineAccessibility.class b/qadevOOo/bin/mod/_dbaccess/ConnectionLineAccessibility.class
new file mode 100644
index 000000000000..a78349ea4e41
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/ConnectionLineAccessibility.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/DBContentLoader.class b/qadevOOo/bin/mod/_dbaccess/DBContentLoader.class
new file mode 100644
index 000000000000..147189831930
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/DBContentLoader.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/JoinViewAccessibility$1.class b/qadevOOo/bin/mod/_dbaccess/JoinViewAccessibility$1.class
new file mode 100644
index 000000000000..f3c400df74da
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/JoinViewAccessibility$1.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/JoinViewAccessibility.class b/qadevOOo/bin/mod/_dbaccess/JoinViewAccessibility.class
new file mode 100644
index 000000000000..49911d249fac
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/JoinViewAccessibility.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/OCommandDefinition.class b/qadevOOo/bin/mod/_dbaccess/OCommandDefinition.class
new file mode 100644
index 000000000000..1efbe48fa262
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/OCommandDefinition.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/ODatabaseContext.class b/qadevOOo/bin/mod/_dbaccess/ODatabaseContext.class
new file mode 100644
index 000000000000..df6c4bf78013
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/ODatabaseContext.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/ODatabaseSource.class b/qadevOOo/bin/mod/_dbaccess/ODatabaseSource.class
new file mode 100644
index 000000000000..185307b93d18
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/ODatabaseSource.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/ODatasourceAdministrationDialog.class b/qadevOOo/bin/mod/_dbaccess/ODatasourceAdministrationDialog.class
new file mode 100644
index 000000000000..11f58c89df09
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/ODatasourceAdministrationDialog.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/ODatasourceBrowser.class b/qadevOOo/bin/mod/_dbaccess/ODatasourceBrowser.class
new file mode 100644
index 000000000000..c2dc84153bdc
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/ODatasourceBrowser.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/OInteractionHandler$TestRequest.class b/qadevOOo/bin/mod/_dbaccess/OInteractionHandler$TestRequest.class
new file mode 100644
index 000000000000..df766e6f4533
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/OInteractionHandler$TestRequest.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/OInteractionHandler.class b/qadevOOo/bin/mod/_dbaccess/OInteractionHandler.class
new file mode 100644
index 000000000000..4491a4393f01
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/OInteractionHandler.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/OQueryDesign.class b/qadevOOo/bin/mod/_dbaccess/OQueryDesign.class
new file mode 100644
index 000000000000..7d7b7020ff3a
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/OQueryDesign.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/ORowSet$1.class b/qadevOOo/bin/mod/_dbaccess/ORowSet$1.class
new file mode 100644
index 000000000000..5ddab9e2a77f
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/ORowSet$1.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/ORowSet$2.class b/qadevOOo/bin/mod/_dbaccess/ORowSet$2.class
new file mode 100644
index 000000000000..0942dda2c7f2
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/ORowSet$2.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/ORowSet$InteractionHandlerImpl.class b/qadevOOo/bin/mod/_dbaccess/ORowSet$InteractionHandlerImpl.class
new file mode 100644
index 000000000000..0573cce1044b
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/ORowSet$InteractionHandlerImpl.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/ORowSet.class b/qadevOOo/bin/mod/_dbaccess/ORowSet.class
new file mode 100644
index 000000000000..46690581a3d9
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/ORowSet.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/OSQLMessageDialog.class b/qadevOOo/bin/mod/_dbaccess/OSQLMessageDialog.class
new file mode 100644
index 000000000000..815bcacae66e
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/OSQLMessageDialog.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/OSingleSelectQueryComposer.class b/qadevOOo/bin/mod/_dbaccess/OSingleSelectQueryComposer.class
new file mode 100644
index 000000000000..77c7cdc7e1f3
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/OSingleSelectQueryComposer.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/SbaXGridControl$1.class b/qadevOOo/bin/mod/_dbaccess/SbaXGridControl$1.class
new file mode 100644
index 000000000000..75a629152731
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/SbaXGridControl$1.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/SbaXGridControl$2.class b/qadevOOo/bin/mod/_dbaccess/SbaXGridControl$2.class
new file mode 100644
index 000000000000..6fb3dbb3090d
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/SbaXGridControl$2.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/SbaXGridControl.class b/qadevOOo/bin/mod/_dbaccess/SbaXGridControl.class
new file mode 100644
index 000000000000..7de54627e392
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/SbaXGridControl.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/TableWindowAccessibility$1.class b/qadevOOo/bin/mod/_dbaccess/TableWindowAccessibility$1.class
new file mode 100644
index 000000000000..67115ee964eb
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/TableWindowAccessibility$1.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/TableWindowAccessibility.class b/qadevOOo/bin/mod/_dbaccess/TableWindowAccessibility.class
new file mode 100644
index 000000000000..a36418abc443
Binary files /dev/null and b/qadevOOo/bin/mod/_dbaccess/TableWindowAccessibility.class differ
diff --git a/qadevOOo/bin/mod/_dbaccess/package.html b/qadevOOo/bin/mod/_dbaccess/package.html
new file mode 100644
index 000000000000..d6411c05ed0c
--- /dev/null
+++ b/qadevOOo/bin/mod/_dbaccess/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'dbaccess'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_dbpool/OConnectionPool.class b/qadevOOo/bin/mod/_dbpool/OConnectionPool.class
new file mode 100644
index 000000000000..e8fb16fcdbd4
Binary files /dev/null and b/qadevOOo/bin/mod/_dbpool/OConnectionPool.class differ
diff --git a/qadevOOo/bin/mod/_defreg/NestedRegistry.class b/qadevOOo/bin/mod/_defreg/NestedRegistry.class
new file mode 100644
index 000000000000..5caa0ef9beee
Binary files /dev/null and b/qadevOOo/bin/mod/_defreg/NestedRegistry.class differ
diff --git a/qadevOOo/bin/mod/_defreg/package.html b/qadevOOo/bin/mod/_defreg/package.html
new file mode 100644
index 000000000000..bee4740a1766
--- /dev/null
+++ b/qadevOOo/bin/mod/_defreg/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'defreg'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_dtrans/generic.class b/qadevOOo/bin/mod/_dtrans/generic.class
new file mode 100644
index 000000000000..4ab4e516de11
Binary files /dev/null and b/qadevOOo/bin/mod/_dtrans/generic.class differ
diff --git a/qadevOOo/bin/mod/_dynamicloader/Dynamic.class b/qadevOOo/bin/mod/_dynamicloader/Dynamic.class
new file mode 100644
index 000000000000..c390eed41b96
Binary files /dev/null and b/qadevOOo/bin/mod/_dynamicloader/Dynamic.class differ
diff --git a/qadevOOo/bin/mod/_file/calc/ODriver.class b/qadevOOo/bin/mod/_file/calc/ODriver.class
new file mode 100644
index 000000000000..10694db87323
Binary files /dev/null and b/qadevOOo/bin/mod/_file/calc/ODriver.class differ
diff --git a/qadevOOo/bin/mod/_file/dbase/ODriver.class b/qadevOOo/bin/mod/_file/dbase/ODriver.class
new file mode 100644
index 000000000000..e9dc284db288
Binary files /dev/null and b/qadevOOo/bin/mod/_file/dbase/ODriver.class differ
diff --git a/qadevOOo/bin/mod/_file/flat/ODriver.class b/qadevOOo/bin/mod/_file/flat/ODriver.class
new file mode 100644
index 000000000000..0b794127e283
Binary files /dev/null and b/qadevOOo/bin/mod/_file/flat/ODriver.class differ
diff --git a/qadevOOo/bin/mod/_fileacc/SimpleFileAccess.class b/qadevOOo/bin/mod/_fileacc/SimpleFileAccess.class
new file mode 100644
index 000000000000..f2a758d6fb52
Binary files /dev/null and b/qadevOOo/bin/mod/_fileacc/SimpleFileAccess.class differ
diff --git a/qadevOOo/bin/mod/_fileacc/package.html b/qadevOOo/bin/mod/_fileacc/package.html
new file mode 100644
index 000000000000..d590b8399f7a
--- /dev/null
+++ b/qadevOOo/bin/mod/_fileacc/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'fileacc'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_fop/FolderPicker.class b/qadevOOo/bin/mod/_fop/FolderPicker.class
new file mode 100644
index 000000000000..ef463a474134
Binary files /dev/null and b/qadevOOo/bin/mod/_fop/FolderPicker.class differ
diff --git a/qadevOOo/bin/mod/_forms/GenericModelTest$Checker.class b/qadevOOo/bin/mod/_forms/GenericModelTest$Checker.class
new file mode 100644
index 000000000000..dd26d4531e21
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/GenericModelTest$Checker.class differ
diff --git a/qadevOOo/bin/mod/_forms/GenericModelTest.class b/qadevOOo/bin/mod/_forms/GenericModelTest.class
new file mode 100644
index 000000000000..c94b55862658
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/GenericModelTest.class differ
diff --git a/qadevOOo/bin/mod/_forms/OButtonControl.class b/qadevOOo/bin/mod/_forms/OButtonControl.class
new file mode 100644
index 000000000000..7e95d215e1b3
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OButtonControl.class differ
diff --git a/qadevOOo/bin/mod/_forms/OButtonModel.class b/qadevOOo/bin/mod/_forms/OButtonModel.class
new file mode 100644
index 000000000000..1852bc85bf16
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OButtonModel.class differ
diff --git a/qadevOOo/bin/mod/_forms/OCheckBoxControl.class b/qadevOOo/bin/mod/_forms/OCheckBoxControl.class
new file mode 100644
index 000000000000..ee14e46379b9
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OCheckBoxControl.class differ
diff --git a/qadevOOo/bin/mod/_forms/OCheckBoxModel.class b/qadevOOo/bin/mod/_forms/OCheckBoxModel.class
new file mode 100644
index 000000000000..66a9a9fa5c08
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OCheckBoxModel.class differ
diff --git a/qadevOOo/bin/mod/_forms/OComboBoxControl.class b/qadevOOo/bin/mod/_forms/OComboBoxControl.class
new file mode 100644
index 000000000000..12ae92e017a4
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OComboBoxControl.class differ
diff --git a/qadevOOo/bin/mod/_forms/OComboBoxModel.class b/qadevOOo/bin/mod/_forms/OComboBoxModel.class
new file mode 100644
index 000000000000..217f802ed284
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OComboBoxModel.class differ
diff --git a/qadevOOo/bin/mod/_forms/OCurrencyControl.class b/qadevOOo/bin/mod/_forms/OCurrencyControl.class
new file mode 100644
index 000000000000..b9c13480a8e4
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OCurrencyControl.class differ
diff --git a/qadevOOo/bin/mod/_forms/OCurrencyModel.class b/qadevOOo/bin/mod/_forms/OCurrencyModel.class
new file mode 100644
index 000000000000..2e2b05da5689
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OCurrencyModel.class differ
diff --git a/qadevOOo/bin/mod/_forms/ODatabaseForm$1.class b/qadevOOo/bin/mod/_forms/ODatabaseForm$1.class
new file mode 100644
index 000000000000..3df9402ef6b4
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/ODatabaseForm$1.class differ
diff --git a/qadevOOo/bin/mod/_forms/ODatabaseForm$2.class b/qadevOOo/bin/mod/_forms/ODatabaseForm$2.class
new file mode 100644
index 000000000000..11a7beb879a5
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/ODatabaseForm$2.class differ
diff --git a/qadevOOo/bin/mod/_forms/ODatabaseForm$InteractionHandlerImpl.class b/qadevOOo/bin/mod/_forms/ODatabaseForm$InteractionHandlerImpl.class
new file mode 100644
index 000000000000..aa4fa8df9209
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/ODatabaseForm$InteractionHandlerImpl.class differ
diff --git a/qadevOOo/bin/mod/_forms/ODatabaseForm$ParameterListenerImpl.class b/qadevOOo/bin/mod/_forms/ODatabaseForm$ParameterListenerImpl.class
new file mode 100644
index 000000000000..2735aa4b1532
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/ODatabaseForm$ParameterListenerImpl.class differ
diff --git a/qadevOOo/bin/mod/_forms/ODatabaseForm.class b/qadevOOo/bin/mod/_forms/ODatabaseForm.class
new file mode 100644
index 000000000000..5645a1785a53
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/ODatabaseForm.class differ
diff --git a/qadevOOo/bin/mod/_forms/ODateControl.class b/qadevOOo/bin/mod/_forms/ODateControl.class
new file mode 100644
index 000000000000..8e999e3099cb
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/ODateControl.class differ
diff --git a/qadevOOo/bin/mod/_forms/ODateModel.class b/qadevOOo/bin/mod/_forms/ODateModel.class
new file mode 100644
index 000000000000..eb54ed7cdf7c
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/ODateModel.class differ
diff --git a/qadevOOo/bin/mod/_forms/OEditControl.class b/qadevOOo/bin/mod/_forms/OEditControl.class
new file mode 100644
index 000000000000..238adf873762
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OEditControl.class differ
diff --git a/qadevOOo/bin/mod/_forms/OEditModel.class b/qadevOOo/bin/mod/_forms/OEditModel.class
new file mode 100644
index 000000000000..89bbfc902ab2
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OEditModel.class differ
diff --git a/qadevOOo/bin/mod/_forms/OFileControlModel.class b/qadevOOo/bin/mod/_forms/OFileControlModel.class
new file mode 100644
index 000000000000..00b3c92ef560
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OFileControlModel.class differ
diff --git a/qadevOOo/bin/mod/_forms/OFixedTextModel.class b/qadevOOo/bin/mod/_forms/OFixedTextModel.class
new file mode 100644
index 000000000000..f0104bf2d7df
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OFixedTextModel.class differ
diff --git a/qadevOOo/bin/mod/_forms/OFormattedControl.class b/qadevOOo/bin/mod/_forms/OFormattedControl.class
new file mode 100644
index 000000000000..60dccf3989f3
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OFormattedControl.class differ
diff --git a/qadevOOo/bin/mod/_forms/OFormattedFieldWrapper.class b/qadevOOo/bin/mod/_forms/OFormattedFieldWrapper.class
new file mode 100644
index 000000000000..8341a29215c5
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OFormattedFieldWrapper.class differ
diff --git a/qadevOOo/bin/mod/_forms/OFormsCollection.class b/qadevOOo/bin/mod/_forms/OFormsCollection.class
new file mode 100644
index 000000000000..e0f4a33311ba
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OFormsCollection.class differ
diff --git a/qadevOOo/bin/mod/_forms/OGridControlModel$1.class b/qadevOOo/bin/mod/_forms/OGridControlModel$1.class
new file mode 100644
index 000000000000..ff33c5df470b
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OGridControlModel$1.class differ
diff --git a/qadevOOo/bin/mod/_forms/OGridControlModel.class b/qadevOOo/bin/mod/_forms/OGridControlModel.class
new file mode 100644
index 000000000000..78e142f8e5ea
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OGridControlModel.class differ
diff --git a/qadevOOo/bin/mod/_forms/OGridControlModelold.class b/qadevOOo/bin/mod/_forms/OGridControlModelold.class
new file mode 100644
index 000000000000..ae5be4cae7c3
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OGridControlModelold.class differ
diff --git a/qadevOOo/bin/mod/_forms/OGroupBoxControl.class b/qadevOOo/bin/mod/_forms/OGroupBoxControl.class
new file mode 100644
index 000000000000..3d7f12c80f4a
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OGroupBoxControl.class differ
diff --git a/qadevOOo/bin/mod/_forms/OGroupBoxModel.class b/qadevOOo/bin/mod/_forms/OGroupBoxModel.class
new file mode 100644
index 000000000000..0001d347540e
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OGroupBoxModel.class differ
diff --git a/qadevOOo/bin/mod/_forms/OHiddenModel.class b/qadevOOo/bin/mod/_forms/OHiddenModel.class
new file mode 100644
index 000000000000..f32a1107f046
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OHiddenModel.class differ
diff --git a/qadevOOo/bin/mod/_forms/OImageButtonControl.class b/qadevOOo/bin/mod/_forms/OImageButtonControl.class
new file mode 100644
index 000000000000..8d4f47a5b489
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OImageButtonControl.class differ
diff --git a/qadevOOo/bin/mod/_forms/OImageButtonModel.class b/qadevOOo/bin/mod/_forms/OImageButtonModel.class
new file mode 100644
index 000000000000..819ce7c344ca
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OImageButtonModel.class differ
diff --git a/qadevOOo/bin/mod/_forms/OImageControlControl.class b/qadevOOo/bin/mod/_forms/OImageControlControl.class
new file mode 100644
index 000000000000..d3aeb97a50c4
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OImageControlControl.class differ
diff --git a/qadevOOo/bin/mod/_forms/OImageControlModel.class b/qadevOOo/bin/mod/_forms/OImageControlModel.class
new file mode 100644
index 000000000000..39ffc0da7e44
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OImageControlModel.class differ
diff --git a/qadevOOo/bin/mod/_forms/OListBoxControl$1.class b/qadevOOo/bin/mod/_forms/OListBoxControl$1.class
new file mode 100644
index 000000000000..3db464f068c0
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OListBoxControl$1.class differ
diff --git a/qadevOOo/bin/mod/_forms/OListBoxControl.class b/qadevOOo/bin/mod/_forms/OListBoxControl.class
new file mode 100644
index 000000000000..2b85775e1043
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OListBoxControl.class differ
diff --git a/qadevOOo/bin/mod/_forms/OListBoxModel$Checker.class b/qadevOOo/bin/mod/_forms/OListBoxModel$Checker.class
new file mode 100644
index 000000000000..d86e5b7b0c73
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OListBoxModel$Checker.class differ
diff --git a/qadevOOo/bin/mod/_forms/OListBoxModel.class b/qadevOOo/bin/mod/_forms/OListBoxModel.class
new file mode 100644
index 000000000000..d6916e75476f
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OListBoxModel.class differ
diff --git a/qadevOOo/bin/mod/_forms/ONavigationBarControl.class b/qadevOOo/bin/mod/_forms/ONavigationBarControl.class
new file mode 100644
index 000000000000..c4d731b7eb4b
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/ONavigationBarControl.class differ
diff --git a/qadevOOo/bin/mod/_forms/ONavigationBarModel.class b/qadevOOo/bin/mod/_forms/ONavigationBarModel.class
new file mode 100644
index 000000000000..b2b51ab3c28d
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/ONavigationBarModel.class differ
diff --git a/qadevOOo/bin/mod/_forms/ONumericControl.class b/qadevOOo/bin/mod/_forms/ONumericControl.class
new file mode 100644
index 000000000000..2e31f8fbd5e6
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/ONumericControl.class differ
diff --git a/qadevOOo/bin/mod/_forms/ONumericModel.class b/qadevOOo/bin/mod/_forms/ONumericModel.class
new file mode 100644
index 000000000000..1e6008450d6e
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/ONumericModel.class differ
diff --git a/qadevOOo/bin/mod/_forms/OPatternControl.class b/qadevOOo/bin/mod/_forms/OPatternControl.class
new file mode 100644
index 000000000000..e2e8536b842d
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OPatternControl.class differ
diff --git a/qadevOOo/bin/mod/_forms/OPatternModel.class b/qadevOOo/bin/mod/_forms/OPatternModel.class
new file mode 100644
index 000000000000..cf75a26c3a25
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OPatternModel.class differ
diff --git a/qadevOOo/bin/mod/_forms/ORadioButtonControl.class b/qadevOOo/bin/mod/_forms/ORadioButtonControl.class
new file mode 100644
index 000000000000..50b53bc94a5f
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/ORadioButtonControl.class differ
diff --git a/qadevOOo/bin/mod/_forms/ORadioButtonModel.class b/qadevOOo/bin/mod/_forms/ORadioButtonModel.class
new file mode 100644
index 000000000000..d7155ceb82e1
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/ORadioButtonModel.class differ
diff --git a/qadevOOo/bin/mod/_forms/OScrollBarModel.class b/qadevOOo/bin/mod/_forms/OScrollBarModel.class
new file mode 100644
index 000000000000..a656490d0886
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OScrollBarModel.class differ
diff --git a/qadevOOo/bin/mod/_forms/OSpinButtonModel.class b/qadevOOo/bin/mod/_forms/OSpinButtonModel.class
new file mode 100644
index 000000000000..7ee8d092f1cd
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OSpinButtonModel.class differ
diff --git a/qadevOOo/bin/mod/_forms/OTimeControl.class b/qadevOOo/bin/mod/_forms/OTimeControl.class
new file mode 100644
index 000000000000..a697e6e570c2
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OTimeControl.class differ
diff --git a/qadevOOo/bin/mod/_forms/OTimeModel$Checker.class b/qadevOOo/bin/mod/_forms/OTimeModel$Checker.class
new file mode 100644
index 000000000000..f50a8c0ba884
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OTimeModel$Checker.class differ
diff --git a/qadevOOo/bin/mod/_forms/OTimeModel.class b/qadevOOo/bin/mod/_forms/OTimeModel.class
new file mode 100644
index 000000000000..2366834c21c7
Binary files /dev/null and b/qadevOOo/bin/mod/_forms/OTimeModel.class differ
diff --git a/qadevOOo/bin/mod/_forms/package.html b/qadevOOo/bin/mod/_forms/package.html
new file mode 100644
index 000000000000..895d60e46a41
--- /dev/null
+++ b/qadevOOo/bin/mod/_forms/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'forms'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_fps/FilePicker.class b/qadevOOo/bin/mod/_fps/FilePicker.class
new file mode 100644
index 000000000000..c20ece4765e1
Binary files /dev/null and b/qadevOOo/bin/mod/_fps/FilePicker.class differ
diff --git a/qadevOOo/bin/mod/_ftransl/DataFormatTranslator.class b/qadevOOo/bin/mod/_ftransl/DataFormatTranslator.class
new file mode 100644
index 000000000000..03408f235a6d
Binary files /dev/null and b/qadevOOo/bin/mod/_ftransl/DataFormatTranslator.class differ
diff --git a/qadevOOo/bin/mod/_fwk/ControlMenuController.class b/qadevOOo/bin/mod/_fwk/ControlMenuController.class
new file mode 100644
index 000000000000..fb715d732f82
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/ControlMenuController.class differ
diff --git a/qadevOOo/bin/mod/_fwk/Desktop.class b/qadevOOo/bin/mod/_fwk/Desktop.class
new file mode 100644
index 000000000000..bcdc59d523db
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/Desktop.class differ
diff --git a/qadevOOo/bin/mod/_fwk/DispatchRecorder.class b/qadevOOo/bin/mod/_fwk/DispatchRecorder.class
new file mode 100644
index 000000000000..25f6221b3842
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/DispatchRecorder.class differ
diff --git a/qadevOOo/bin/mod/_fwk/DispatchRecorderSupplier.class b/qadevOOo/bin/mod/_fwk/DispatchRecorderSupplier.class
new file mode 100644
index 000000000000..28483ff4de94
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/DispatchRecorderSupplier.class differ
diff --git a/qadevOOo/bin/mod/_fwk/FontMenuController.class b/qadevOOo/bin/mod/_fwk/FontMenuController.class
new file mode 100644
index 000000000000..d5ad824caa52
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/FontMenuController.class differ
diff --git a/qadevOOo/bin/mod/_fwk/FontSizeMenuController.class b/qadevOOo/bin/mod/_fwk/FontSizeMenuController.class
new file mode 100644
index 000000000000..37454f027b28
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/FontSizeMenuController.class differ
diff --git a/qadevOOo/bin/mod/_fwk/FooterMenuController.class b/qadevOOo/bin/mod/_fwk/FooterMenuController.class
new file mode 100644
index 000000000000..e9daf6988f40
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/FooterMenuController.class differ
diff --git a/qadevOOo/bin/mod/_fwk/FormatMenuController.class b/qadevOOo/bin/mod/_fwk/FormatMenuController.class
new file mode 100644
index 000000000000..a051a07d50dc
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/FormatMenuController.class differ
diff --git a/qadevOOo/bin/mod/_fwk/Frame.class b/qadevOOo/bin/mod/_fwk/Frame.class
new file mode 100644
index 000000000000..3cdca8788e21
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/Frame.class differ
diff --git a/qadevOOo/bin/mod/_fwk/HeaderMenuController.class b/qadevOOo/bin/mod/_fwk/HeaderMenuController.class
new file mode 100644
index 000000000000..222df1f2c1da
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/HeaderMenuController.class differ
diff --git a/qadevOOo/bin/mod/_fwk/Job$Impl.class b/qadevOOo/bin/mod/_fwk/Job$Impl.class
new file mode 100644
index 000000000000..02e12a25ed7c
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/Job$Impl.class differ
diff --git a/qadevOOo/bin/mod/_fwk/Job.class b/qadevOOo/bin/mod/_fwk/Job.class
new file mode 100644
index 000000000000..5a9d1a9e73bb
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/Job.class differ
diff --git a/qadevOOo/bin/mod/_fwk/JobExecutor.class b/qadevOOo/bin/mod/_fwk/JobExecutor.class
new file mode 100644
index 000000000000..1f0b91721e85
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/JobExecutor.class differ
diff --git a/qadevOOo/bin/mod/_fwk/JobHandler.class b/qadevOOo/bin/mod/_fwk/JobHandler.class
new file mode 100644
index 000000000000..4e747021b95b
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/JobHandler.class differ
diff --git a/qadevOOo/bin/mod/_fwk/LayoutManager.class b/qadevOOo/bin/mod/_fwk/LayoutManager.class
new file mode 100644
index 000000000000..874745aefa65
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/LayoutManager.class differ
diff --git a/qadevOOo/bin/mod/_fwk/MacrosMenuController.class b/qadevOOo/bin/mod/_fwk/MacrosMenuController.class
new file mode 100644
index 000000000000..3fa8aa456590
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/MacrosMenuController.class differ
diff --git a/qadevOOo/bin/mod/_fwk/MailToDispatcher.class b/qadevOOo/bin/mod/_fwk/MailToDispatcher.class
new file mode 100644
index 000000000000..a259e104a96a
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/MailToDispatcher.class differ
diff --git a/qadevOOo/bin/mod/_fwk/MenuBarFactory.class b/qadevOOo/bin/mod/_fwk/MenuBarFactory.class
new file mode 100644
index 000000000000..7607f4436001
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/MenuBarFactory.class differ
diff --git a/qadevOOo/bin/mod/_fwk/ModuleManager.class b/qadevOOo/bin/mod/_fwk/ModuleManager.class
new file mode 100644
index 000000000000..cb3952331d94
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/ModuleManager.class differ
diff --git a/qadevOOo/bin/mod/_fwk/ModuleUIConfigurationManager$ConfigurationListener.class b/qadevOOo/bin/mod/_fwk/ModuleUIConfigurationManager$ConfigurationListener.class
new file mode 100644
index 000000000000..0b0f73942485
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/ModuleUIConfigurationManager$ConfigurationListener.class differ
diff --git a/qadevOOo/bin/mod/_fwk/ModuleUIConfigurationManager.class b/qadevOOo/bin/mod/_fwk/ModuleUIConfigurationManager.class
new file mode 100644
index 000000000000..18387bf3c6cf
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/ModuleUIConfigurationManager.class differ
diff --git a/qadevOOo/bin/mod/_fwk/ModuleUIConfigurationManagerSupplier.class b/qadevOOo/bin/mod/_fwk/ModuleUIConfigurationManagerSupplier.class
new file mode 100644
index 000000000000..e120eaf6b270
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/ModuleUIConfigurationManagerSupplier.class differ
diff --git a/qadevOOo/bin/mod/_fwk/PopupMenuControllerFactory.class b/qadevOOo/bin/mod/_fwk/PopupMenuControllerFactory.class
new file mode 100644
index 000000000000..6e7e1cdf8200
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/PopupMenuControllerFactory.class differ
diff --git a/qadevOOo/bin/mod/_fwk/ServiceHandler.class b/qadevOOo/bin/mod/_fwk/ServiceHandler.class
new file mode 100644
index 000000000000..b8cbbb87b6a3
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/ServiceHandler.class differ
diff --git a/qadevOOo/bin/mod/_fwk/SoundHandler.class b/qadevOOo/bin/mod/_fwk/SoundHandler.class
new file mode 100644
index 000000000000..e4cbc95fde15
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/SoundHandler.class differ
diff --git a/qadevOOo/bin/mod/_fwk/StatusBarControllerFactory.class b/qadevOOo/bin/mod/_fwk/StatusBarControllerFactory.class
new file mode 100644
index 000000000000..cb85400ae494
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/StatusBarControllerFactory.class differ
diff --git a/qadevOOo/bin/mod/_fwk/ToolBarsMenuController.class b/qadevOOo/bin/mod/_fwk/ToolBarsMenuController.class
new file mode 100644
index 000000000000..072386bafcb7
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/ToolBarsMenuController.class differ
diff --git a/qadevOOo/bin/mod/_fwk/UICategoryDescription.class b/qadevOOo/bin/mod/_fwk/UICategoryDescription.class
new file mode 100644
index 000000000000..b06da3bdfba4
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/UICategoryDescription.class differ
diff --git a/qadevOOo/bin/mod/_fwk/UICommandDescription.class b/qadevOOo/bin/mod/_fwk/UICommandDescription.class
new file mode 100644
index 000000000000..f8dcbef03120
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/UICommandDescription.class differ
diff --git a/qadevOOo/bin/mod/_fwk/UIConfigurationManager$ConfigurationListener.class b/qadevOOo/bin/mod/_fwk/UIConfigurationManager$ConfigurationListener.class
new file mode 100644
index 000000000000..8475df346ffd
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/UIConfigurationManager$ConfigurationListener.class differ
diff --git a/qadevOOo/bin/mod/_fwk/UIConfigurationManager.class b/qadevOOo/bin/mod/_fwk/UIConfigurationManager.class
new file mode 100644
index 000000000000..b63b379e99d8
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/UIConfigurationManager.class differ
diff --git a/qadevOOo/bin/mod/_fwk/UIElementFactoryManager.class b/qadevOOo/bin/mod/_fwk/UIElementFactoryManager.class
new file mode 100644
index 000000000000..d6265bf2e643
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/UIElementFactoryManager.class differ
diff --git a/qadevOOo/bin/mod/_fwk/URLTransformer.class b/qadevOOo/bin/mod/_fwk/URLTransformer.class
new file mode 100644
index 000000000000..68d90243bd8d
Binary files /dev/null and b/qadevOOo/bin/mod/_fwk/URLTransformer.class differ
diff --git a/qadevOOo/bin/mod/_fwl/ContentHandlerFactory.class b/qadevOOo/bin/mod/_fwl/ContentHandlerFactory.class
new file mode 100644
index 000000000000..f9dd94e3f1ca
Binary files /dev/null and b/qadevOOo/bin/mod/_fwl/ContentHandlerFactory.class differ
diff --git a/qadevOOo/bin/mod/_fwl/FilterFactory.class b/qadevOOo/bin/mod/_fwl/FilterFactory.class
new file mode 100644
index 000000000000..1bb11714f842
Binary files /dev/null and b/qadevOOo/bin/mod/_fwl/FilterFactory.class differ
diff --git a/qadevOOo/bin/mod/_fwl/FrameLoaderFactory.class b/qadevOOo/bin/mod/_fwl/FrameLoaderFactory.class
new file mode 100644
index 000000000000..04491ff45856
Binary files /dev/null and b/qadevOOo/bin/mod/_fwl/FrameLoaderFactory.class differ
diff --git a/qadevOOo/bin/mod/_fwl/PathSettings.class b/qadevOOo/bin/mod/_fwl/PathSettings.class
new file mode 100644
index 000000000000..e2d22097063d
Binary files /dev/null and b/qadevOOo/bin/mod/_fwl/PathSettings.class differ
diff --git a/qadevOOo/bin/mod/_fwl/SubstituteVariables.class b/qadevOOo/bin/mod/_fwl/SubstituteVariables.class
new file mode 100644
index 000000000000..e3438a230529
Binary files /dev/null and b/qadevOOo/bin/mod/_fwl/SubstituteVariables.class differ
diff --git a/qadevOOo/bin/mod/_fwl/TypeDetection.class b/qadevOOo/bin/mod/_fwl/TypeDetection.class
new file mode 100644
index 000000000000..323cd6feeb65
Binary files /dev/null and b/qadevOOo/bin/mod/_fwl/TypeDetection.class differ
diff --git a/qadevOOo/bin/mod/_i18n/BreakIterator.class b/qadevOOo/bin/mod/_i18n/BreakIterator.class
new file mode 100644
index 000000000000..7555b8344448
Binary files /dev/null and b/qadevOOo/bin/mod/_i18n/BreakIterator.class differ
diff --git a/qadevOOo/bin/mod/_i18n/CalendarImpl.class b/qadevOOo/bin/mod/_i18n/CalendarImpl.class
new file mode 100644
index 000000000000..ef978eef98f2
Binary files /dev/null and b/qadevOOo/bin/mod/_i18n/CalendarImpl.class differ
diff --git a/qadevOOo/bin/mod/_i18n/ChapterCollator.class b/qadevOOo/bin/mod/_i18n/ChapterCollator.class
new file mode 100644
index 000000000000..242a83df242f
Binary files /dev/null and b/qadevOOo/bin/mod/_i18n/ChapterCollator.class differ
diff --git a/qadevOOo/bin/mod/_i18n/CharacterClassification.class b/qadevOOo/bin/mod/_i18n/CharacterClassification.class
new file mode 100644
index 000000000000..e048088a4e24
Binary files /dev/null and b/qadevOOo/bin/mod/_i18n/CharacterClassification.class differ
diff --git a/qadevOOo/bin/mod/_i18n/Collator.class b/qadevOOo/bin/mod/_i18n/Collator.class
new file mode 100644
index 000000000000..ad7a27f2cd35
Binary files /dev/null and b/qadevOOo/bin/mod/_i18n/Collator.class differ
diff --git a/qadevOOo/bin/mod/_i18n/IndexEntrySupplier.class b/qadevOOo/bin/mod/_i18n/IndexEntrySupplier.class
new file mode 100644
index 000000000000..47f64030652f
Binary files /dev/null and b/qadevOOo/bin/mod/_i18n/IndexEntrySupplier.class differ
diff --git a/qadevOOo/bin/mod/_i18n/LocaleData.class b/qadevOOo/bin/mod/_i18n/LocaleData.class
new file mode 100644
index 000000000000..09cfbf1f4e75
Binary files /dev/null and b/qadevOOo/bin/mod/_i18n/LocaleData.class differ
diff --git a/qadevOOo/bin/mod/_i18n/NumberFormatCodeMapper.class b/qadevOOo/bin/mod/_i18n/NumberFormatCodeMapper.class
new file mode 100644
index 000000000000..638c8a544339
Binary files /dev/null and b/qadevOOo/bin/mod/_i18n/NumberFormatCodeMapper.class differ
diff --git a/qadevOOo/bin/mod/_i18n/Transliteration.class b/qadevOOo/bin/mod/_i18n/Transliteration.class
new file mode 100644
index 000000000000..6b5953fa5ed2
Binary files /dev/null and b/qadevOOo/bin/mod/_i18n/Transliteration.class differ
diff --git a/qadevOOo/bin/mod/_implreg/uno/ImplementationRegistration.class b/qadevOOo/bin/mod/_implreg/uno/ImplementationRegistration.class
new file mode 100644
index 000000000000..03b918870def
Binary files /dev/null and b/qadevOOo/bin/mod/_implreg/uno/ImplementationRegistration.class differ
diff --git a/qadevOOo/bin/mod/_implreg/uno/package.html b/qadevOOo/bin/mod/_implreg/uno/package.html
new file mode 100644
index 000000000000..a007b5cb1de7
--- /dev/null
+++ b/qadevOOo/bin/mod/_implreg/uno/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'impreg'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_impreg/ImplementationRegistration.class b/qadevOOo/bin/mod/_impreg/ImplementationRegistration.class
new file mode 100644
index 000000000000..007778925d29
Binary files /dev/null and b/qadevOOo/bin/mod/_impreg/ImplementationRegistration.class differ
diff --git a/qadevOOo/bin/mod/_impreg/package.html b/qadevOOo/bin/mod/_impreg/package.html
new file mode 100644
index 000000000000..a007b5cb1de7
--- /dev/null
+++ b/qadevOOo/bin/mod/_impreg/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'impreg'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_insp/Introspection.class b/qadevOOo/bin/mod/_insp/Introspection.class
new file mode 100644
index 000000000000..d12adc8c0bb4
Binary files /dev/null and b/qadevOOo/bin/mod/_insp/Introspection.class differ
diff --git a/qadevOOo/bin/mod/_insp/package.html b/qadevOOo/bin/mod/_insp/package.html
new file mode 100644
index 000000000000..617c082e4629
--- /dev/null
+++ b/qadevOOo/bin/mod/_insp/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'insp'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_introspection/uno/Introspection.class b/qadevOOo/bin/mod/_introspection/uno/Introspection.class
new file mode 100644
index 000000000000..1a3356ae2292
Binary files /dev/null and b/qadevOOo/bin/mod/_introspection/uno/Introspection.class differ
diff --git a/qadevOOo/bin/mod/_introspection/uno/package.html b/qadevOOo/bin/mod/_introspection/uno/package.html
new file mode 100644
index 000000000000..617c082e4629
--- /dev/null
+++ b/qadevOOo/bin/mod/_introspection/uno/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'insp'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_inv/Invocation.class b/qadevOOo/bin/mod/_inv/Invocation.class
new file mode 100644
index 000000000000..da21acd740aa
Binary files /dev/null and b/qadevOOo/bin/mod/_inv/Invocation.class differ
diff --git a/qadevOOo/bin/mod/_inv/package.html b/qadevOOo/bin/mod/_inv/package.html
new file mode 100644
index 000000000000..ee1fd4a0276a
--- /dev/null
+++ b/qadevOOo/bin/mod/_inv/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'inv'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_invadp/InvocationAdapterFactory.class b/qadevOOo/bin/mod/_invadp/InvocationAdapterFactory.class
new file mode 100644
index 000000000000..cdf2e92bdf41
Binary files /dev/null and b/qadevOOo/bin/mod/_invadp/InvocationAdapterFactory.class differ
diff --git a/qadevOOo/bin/mod/_invadp/package.html b/qadevOOo/bin/mod/_invadp/package.html
new file mode 100644
index 000000000000..9d1509fca8bc
--- /dev/null
+++ b/qadevOOo/bin/mod/_invadp/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'invadp'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_invocadapt/uno/InvocationAdapterFactory.class b/qadevOOo/bin/mod/_invocadapt/uno/InvocationAdapterFactory.class
new file mode 100644
index 000000000000..e324599d7007
Binary files /dev/null and b/qadevOOo/bin/mod/_invocadapt/uno/InvocationAdapterFactory.class differ
diff --git a/qadevOOo/bin/mod/_invocadapt/uno/package.html b/qadevOOo/bin/mod/_invocadapt/uno/package.html
new file mode 100644
index 000000000000..9d1509fca8bc
--- /dev/null
+++ b/qadevOOo/bin/mod/_invocadapt/uno/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'invadp'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_invocation/uno/Invocation.class b/qadevOOo/bin/mod/_invocation/uno/Invocation.class
new file mode 100644
index 000000000000..93e90b4e7fc0
Binary files /dev/null and b/qadevOOo/bin/mod/_invocation/uno/Invocation.class differ
diff --git a/qadevOOo/bin/mod/_invocation/uno/package.html b/qadevOOo/bin/mod/_invocation/uno/package.html
new file mode 100644
index 000000000000..ee1fd4a0276a
--- /dev/null
+++ b/qadevOOo/bin/mod/_invocation/uno/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'inv'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_javaloader/JavaComponentLoader.class b/qadevOOo/bin/mod/_javaloader/JavaComponentLoader.class
new file mode 100644
index 000000000000..40040a13754b
Binary files /dev/null and b/qadevOOo/bin/mod/_javaloader/JavaComponentLoader.class differ
diff --git a/qadevOOo/bin/mod/_javaloader/uno/JavaComponentLoader.class b/qadevOOo/bin/mod/_javaloader/uno/JavaComponentLoader.class
new file mode 100644
index 000000000000..c26a5fb7b4db
Binary files /dev/null and b/qadevOOo/bin/mod/_javaloader/uno/JavaComponentLoader.class differ
diff --git a/qadevOOo/bin/mod/_javavm/uno/JavaVirtualMachine.class b/qadevOOo/bin/mod/_javavm/uno/JavaVirtualMachine.class
new file mode 100644
index 000000000000..86161787ea88
Binary files /dev/null and b/qadevOOo/bin/mod/_javavm/uno/JavaVirtualMachine.class differ
diff --git a/qadevOOo/bin/mod/_javavm/uno/package.html b/qadevOOo/bin/mod/_javavm/uno/package.html
new file mode 100644
index 000000000000..a54ca6e098de
--- /dev/null
+++ b/qadevOOo/bin/mod/_javavm/uno/package.html
@@ -0,0 +1,6 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'jen'.</P>
+</BODY>
+</HTML>
\ No newline at end of file
diff --git a/qadevOOo/bin/mod/_jdbc/JDBCDriver.class b/qadevOOo/bin/mod/_jdbc/JDBCDriver.class
new file mode 100644
index 000000000000..3d5fa018452d
Binary files /dev/null and b/qadevOOo/bin/mod/_jdbc/JDBCDriver.class differ
diff --git a/qadevOOo/bin/mod/_jen/JavaVirtualMachine.class b/qadevOOo/bin/mod/_jen/JavaVirtualMachine.class
new file mode 100644
index 000000000000..e1d7adc7fcb6
Binary files /dev/null and b/qadevOOo/bin/mod/_jen/JavaVirtualMachine.class differ
diff --git a/qadevOOo/bin/mod/_jen/package.html b/qadevOOo/bin/mod/_jen/package.html
new file mode 100644
index 000000000000..639ba6ade900
--- /dev/null
+++ b/qadevOOo/bin/mod/_jen/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'jen'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_lng/DicList.class b/qadevOOo/bin/mod/_lng/DicList.class
new file mode 100644
index 000000000000..34ee7e05d5fb
Binary files /dev/null and b/qadevOOo/bin/mod/_lng/DicList.class differ
diff --git a/qadevOOo/bin/mod/_lng/LinguProps.class b/qadevOOo/bin/mod/_lng/LinguProps.class
new file mode 100644
index 000000000000..99a521efeaa6
Binary files /dev/null and b/qadevOOo/bin/mod/_lng/LinguProps.class differ
diff --git a/qadevOOo/bin/mod/_lng/LngSvcMgr.class b/qadevOOo/bin/mod/_lng/LngSvcMgr.class
new file mode 100644
index 000000000000..e33c4badf077
Binary files /dev/null and b/qadevOOo/bin/mod/_lng/LngSvcMgr.class differ
diff --git a/qadevOOo/bin/mod/_lnn/Hyphenator.class b/qadevOOo/bin/mod/_lnn/Hyphenator.class
new file mode 100644
index 000000000000..9da38bde2c9e
Binary files /dev/null and b/qadevOOo/bin/mod/_lnn/Hyphenator.class differ
diff --git a/qadevOOo/bin/mod/_lnn/SpellChecker.class b/qadevOOo/bin/mod/_lnn/SpellChecker.class
new file mode 100644
index 000000000000..77d83e08a90d
Binary files /dev/null and b/qadevOOo/bin/mod/_lnn/SpellChecker.class differ
diff --git a/qadevOOo/bin/mod/_lnn/Thesaurus.class b/qadevOOo/bin/mod/_lnn/Thesaurus.class
new file mode 100644
index 000000000000..349a945492c0
Binary files /dev/null and b/qadevOOo/bin/mod/_lnn/Thesaurus.class differ
diff --git a/qadevOOo/bin/mod/_mcnttype/MimeContentTypeFactory.class b/qadevOOo/bin/mod/_mcnttype/MimeContentTypeFactory.class
new file mode 100644
index 000000000000..524f202ca0f0
Binary files /dev/null and b/qadevOOo/bin/mod/_mcnttype/MimeContentTypeFactory.class differ
diff --git a/qadevOOo/bin/mod/_namingservice/NamingService.class b/qadevOOo/bin/mod/_namingservice/NamingService.class
new file mode 100644
index 000000000000..ebb59c6a05bb
Binary files /dev/null and b/qadevOOo/bin/mod/_namingservice/NamingService.class differ
diff --git a/qadevOOo/bin/mod/_namingservice/package.html b/qadevOOo/bin/mod/_namingservice/package.html
new file mode 100644
index 000000000000..3ac1e50ada45
--- /dev/null
+++ b/qadevOOo/bin/mod/_namingservice/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'namingservice'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_namingservice/uno/NamingService.class b/qadevOOo/bin/mod/_namingservice/uno/NamingService.class
new file mode 100644
index 000000000000..6b1ebb4f25aa
Binary files /dev/null and b/qadevOOo/bin/mod/_namingservice/uno/NamingService.class differ
diff --git a/qadevOOo/bin/mod/_nestedreg/uno/NestedRegistry.class b/qadevOOo/bin/mod/_nestedreg/uno/NestedRegistry.class
new file mode 100644
index 000000000000..c68baac027aa
Binary files /dev/null and b/qadevOOo/bin/mod/_nestedreg/uno/NestedRegistry.class differ
diff --git a/qadevOOo/bin/mod/_nestedreg/uno/package.html b/qadevOOo/bin/mod/_nestedreg/uno/package.html
new file mode 100644
index 000000000000..bee4740a1766
--- /dev/null
+++ b/qadevOOo/bin/mod/_nestedreg/uno/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'defreg'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_odbc/ODBCDriver.class b/qadevOOo/bin/mod/_odbc/ODBCDriver.class
new file mode 100644
index 000000000000..24a940885942
Binary files /dev/null and b/qadevOOo/bin/mod/_odbc/ODBCDriver.class differ
diff --git a/qadevOOo/bin/mod/_pcr/ObjectInspector.class b/qadevOOo/bin/mod/_pcr/ObjectInspector.class
new file mode 100644
index 000000000000..7015a9ed87c5
Binary files /dev/null and b/qadevOOo/bin/mod/_pcr/ObjectInspector.class differ
diff --git a/qadevOOo/bin/mod/_pcr/ObjectInspectorModel.class b/qadevOOo/bin/mod/_pcr/ObjectInspectorModel.class
new file mode 100644
index 000000000000..6a78521c240e
Binary files /dev/null and b/qadevOOo/bin/mod/_pcr/ObjectInspectorModel.class differ
diff --git a/qadevOOo/bin/mod/_proxyfac/ProxyFactory.class b/qadevOOo/bin/mod/_proxyfac/ProxyFactory.class
new file mode 100644
index 000000000000..cee287554ce0
Binary files /dev/null and b/qadevOOo/bin/mod/_proxyfac/ProxyFactory.class differ
diff --git a/qadevOOo/bin/mod/_proxyfac/package.html b/qadevOOo/bin/mod/_proxyfac/package.html
new file mode 100644
index 000000000000..c563073c09a1
--- /dev/null
+++ b/qadevOOo/bin/mod/_proxyfac/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'proxyfac'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_proxyfac/uno/ProxyFactory.class b/qadevOOo/bin/mod/_proxyfac/uno/ProxyFactory.class
new file mode 100644
index 000000000000..e69345df3cc9
Binary files /dev/null and b/qadevOOo/bin/mod/_proxyfac/uno/ProxyFactory.class differ
diff --git a/qadevOOo/bin/mod/_rdbtdp/RegistryTypeDescriptionProvider.class b/qadevOOo/bin/mod/_rdbtdp/RegistryTypeDescriptionProvider.class
new file mode 100644
index 000000000000..c4834172f53c
Binary files /dev/null and b/qadevOOo/bin/mod/_rdbtdp/RegistryTypeDescriptionProvider.class differ
diff --git a/qadevOOo/bin/mod/_rdbtdp/package.html b/qadevOOo/bin/mod/_rdbtdp/package.html
new file mode 100644
index 000000000000..19cdd22c6626
--- /dev/null
+++ b/qadevOOo/bin/mod/_rdbtdp/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'rdbtdp'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_regtypeprov/uno/RegistryTypeDescriptionProvider.class b/qadevOOo/bin/mod/_regtypeprov/uno/RegistryTypeDescriptionProvider.class
new file mode 100644
index 000000000000..004ad501a6d6
Binary files /dev/null and b/qadevOOo/bin/mod/_regtypeprov/uno/RegistryTypeDescriptionProvider.class differ
diff --git a/qadevOOo/bin/mod/_remotebridge/package.html b/qadevOOo/bin/mod/_remotebridge/package.html
new file mode 100644
index 000000000000..0663f0cb22f5
--- /dev/null
+++ b/qadevOOo/bin/mod/_remotebridge/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'remotebridge'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_remotebridge/uno/various$AcceptorThread.class b/qadevOOo/bin/mod/_remotebridge/uno/various$AcceptorThread.class
new file mode 100644
index 000000000000..ecdb3acf1233
Binary files /dev/null and b/qadevOOo/bin/mod/_remotebridge/uno/various$AcceptorThread.class differ
diff --git a/qadevOOo/bin/mod/_remotebridge/uno/various$MyInstanceProvider.class b/qadevOOo/bin/mod/_remotebridge/uno/various$MyInstanceProvider.class
new file mode 100644
index 000000000000..45e17212b850
Binary files /dev/null and b/qadevOOo/bin/mod/_remotebridge/uno/various$MyInstanceProvider.class differ
diff --git a/qadevOOo/bin/mod/_remotebridge/uno/various.class b/qadevOOo/bin/mod/_remotebridge/uno/various.class
new file mode 100644
index 000000000000..5b717fb9e6e9
Binary files /dev/null and b/qadevOOo/bin/mod/_remotebridge/uno/various.class differ
diff --git a/qadevOOo/bin/mod/_remotebridge/various$AcceptorThread.class b/qadevOOo/bin/mod/_remotebridge/various$AcceptorThread.class
new file mode 100644
index 000000000000..fea84112dc8f
Binary files /dev/null and b/qadevOOo/bin/mod/_remotebridge/various$AcceptorThread.class differ
diff --git a/qadevOOo/bin/mod/_remotebridge/various.class b/qadevOOo/bin/mod/_remotebridge/various.class
new file mode 100644
index 000000000000..2765ac2e1755
Binary files /dev/null and b/qadevOOo/bin/mod/_remotebridge/various.class differ
diff --git a/qadevOOo/bin/mod/_sc/AccessibleEditableTextPara_HeaderFooter$1.class b/qadevOOo/bin/mod/_sc/AccessibleEditableTextPara_HeaderFooter$1.class
new file mode 100644
index 000000000000..e3a4c02f1f89
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/AccessibleEditableTextPara_HeaderFooter$1.class differ
diff --git a/qadevOOo/bin/mod/_sc/AccessibleEditableTextPara_HeaderFooter$DiagThread.class b/qadevOOo/bin/mod/_sc/AccessibleEditableTextPara_HeaderFooter$DiagThread.class
new file mode 100644
index 000000000000..a4323f98869b
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/AccessibleEditableTextPara_HeaderFooter$DiagThread.class differ
diff --git a/qadevOOo/bin/mod/_sc/AccessibleEditableTextPara_HeaderFooter.class b/qadevOOo/bin/mod/_sc/AccessibleEditableTextPara_HeaderFooter.class
new file mode 100644
index 000000000000..55076e00db7a
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/AccessibleEditableTextPara_HeaderFooter.class differ
diff --git a/qadevOOo/bin/mod/_sc/AccessibleEditableTextPara_PreviewCell$1.class b/qadevOOo/bin/mod/_sc/AccessibleEditableTextPara_PreviewCell$1.class
new file mode 100644
index 000000000000..f2326d680612
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/AccessibleEditableTextPara_PreviewCell$1.class differ
diff --git a/qadevOOo/bin/mod/_sc/AccessibleEditableTextPara_PreviewCell.class b/qadevOOo/bin/mod/_sc/AccessibleEditableTextPara_PreviewCell.class
new file mode 100644
index 000000000000..b44a896eab52
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/AccessibleEditableTextPara_PreviewCell.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAccessibleCell$1.class b/qadevOOo/bin/mod/_sc/ScAccessibleCell$1.class
new file mode 100644
index 000000000000..81c54e857bec
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAccessibleCell$1.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAccessibleCell.class b/qadevOOo/bin/mod/_sc/ScAccessibleCell.class
new file mode 100644
index 000000000000..bb25a3d854e8
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAccessibleCell.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAccessibleCsvCell.class b/qadevOOo/bin/mod/_sc/ScAccessibleCsvCell.class
new file mode 100644
index 000000000000..39e9f318b74f
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAccessibleCsvCell.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAccessibleCsvGrid.class b/qadevOOo/bin/mod/_sc/ScAccessibleCsvGrid.class
new file mode 100644
index 000000000000..fc8638517182
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAccessibleCsvGrid.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAccessibleCsvRuler.class b/qadevOOo/bin/mod/_sc/ScAccessibleCsvRuler.class
new file mode 100644
index 000000000000..84dbeb6415b1
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAccessibleCsvRuler.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAccessibleDocument$1.class b/qadevOOo/bin/mod/_sc/ScAccessibleDocument$1.class
new file mode 100644
index 000000000000..16457d7102ba
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAccessibleDocument$1.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAccessibleDocument.class b/qadevOOo/bin/mod/_sc/ScAccessibleDocument.class
new file mode 100644
index 000000000000..1dc3978750df
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAccessibleDocument.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAccessibleDocumentPagePreview$1.class b/qadevOOo/bin/mod/_sc/ScAccessibleDocumentPagePreview$1.class
new file mode 100644
index 000000000000..061060acaf12
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAccessibleDocumentPagePreview$1.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAccessibleDocumentPagePreview.class b/qadevOOo/bin/mod/_sc/ScAccessibleDocumentPagePreview.class
new file mode 100644
index 000000000000..7dbdc7b4f561
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAccessibleDocumentPagePreview.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAccessiblePageHeader$1.class b/qadevOOo/bin/mod/_sc/ScAccessiblePageHeader$1.class
new file mode 100644
index 000000000000..3d62add81a9d
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAccessiblePageHeader$1.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAccessiblePageHeader.class b/qadevOOo/bin/mod/_sc/ScAccessiblePageHeader.class
new file mode 100644
index 000000000000..63fd280d56ab
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAccessiblePageHeader.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAccessiblePageHeaderArea$1.class b/qadevOOo/bin/mod/_sc/ScAccessiblePageHeaderArea$1.class
new file mode 100644
index 000000000000..807534504856
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAccessiblePageHeaderArea$1.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAccessiblePageHeaderArea.class b/qadevOOo/bin/mod/_sc/ScAccessiblePageHeaderArea.class
new file mode 100644
index 000000000000..aa5af8e72140
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAccessiblePageHeaderArea.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAccessiblePreviewCell$1.class b/qadevOOo/bin/mod/_sc/ScAccessiblePreviewCell$1.class
new file mode 100644
index 000000000000..3db39884186a
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAccessiblePreviewCell$1.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAccessiblePreviewCell.class b/qadevOOo/bin/mod/_sc/ScAccessiblePreviewCell.class
new file mode 100644
index 000000000000..27a5399f970f
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAccessiblePreviewCell.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAccessiblePreviewHeaderCell$1.class b/qadevOOo/bin/mod/_sc/ScAccessiblePreviewHeaderCell$1.class
new file mode 100644
index 000000000000..b883d8538588
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAccessiblePreviewHeaderCell$1.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAccessiblePreviewHeaderCell.class b/qadevOOo/bin/mod/_sc/ScAccessiblePreviewHeaderCell.class
new file mode 100644
index 000000000000..a5fdad89add8
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAccessiblePreviewHeaderCell.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAccessiblePreviewTable$1.class b/qadevOOo/bin/mod/_sc/ScAccessiblePreviewTable$1.class
new file mode 100644
index 000000000000..697aebd1115f
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAccessiblePreviewTable$1.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAccessiblePreviewTable.class b/qadevOOo/bin/mod/_sc/ScAccessiblePreviewTable.class
new file mode 100644
index 000000000000..b1516308f8e5
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAccessiblePreviewTable.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAccessibleSpreadsheet$1.class b/qadevOOo/bin/mod/_sc/ScAccessibleSpreadsheet$1.class
new file mode 100644
index 000000000000..4d7a20d243f9
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAccessibleSpreadsheet$1.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAccessibleSpreadsheet.class b/qadevOOo/bin/mod/_sc/ScAccessibleSpreadsheet.class
new file mode 100644
index 000000000000..c25477d3c733
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAccessibleSpreadsheet.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAnnotationShapeObj.class b/qadevOOo/bin/mod/_sc/ScAnnotationShapeObj.class
new file mode 100644
index 000000000000..2814f6cb0171
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAnnotationShapeObj.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAnnotationTextCursor.class b/qadevOOo/bin/mod/_sc/ScAnnotationTextCursor.class
new file mode 100644
index 000000000000..d136a667db60
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAnnotationTextCursor.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScAutoFormatFieldObj.class b/qadevOOo/bin/mod/_sc/ScAutoFormatFieldObj.class
new file mode 100644
index 000000000000..03e8bdd6cdd7
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScAutoFormatFieldObj.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScCellCursorObj$1.class b/qadevOOo/bin/mod/_sc/ScCellCursorObj$1.class
new file mode 100644
index 000000000000..7b103e89c40b
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScCellCursorObj$1.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScCellCursorObj.class b/qadevOOo/bin/mod/_sc/ScCellCursorObj.class
new file mode 100644
index 000000000000..692512fc1708
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScCellCursorObj.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScCellObj.class b/qadevOOo/bin/mod/_sc/ScCellObj.class
new file mode 100644
index 000000000000..88fdd675b974
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScCellObj.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScCellRangeObj$1.class b/qadevOOo/bin/mod/_sc/ScCellRangeObj$1.class
new file mode 100644
index 000000000000..38491b675427
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScCellRangeObj$1.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScCellRangeObj.class b/qadevOOo/bin/mod/_sc/ScCellRangeObj.class
new file mode 100644
index 000000000000..6fb13d5c738c
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScCellRangeObj.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScCellRangesObj.class b/qadevOOo/bin/mod/_sc/ScCellRangesObj.class
new file mode 100644
index 000000000000..f3326b2c08f7
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScCellRangesObj.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScCellTextCursor.class b/qadevOOo/bin/mod/_sc/ScCellTextCursor.class
new file mode 100644
index 000000000000..9b2e3bbb7d5f
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScCellTextCursor.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScDataPilotItemObj.class b/qadevOOo/bin/mod/_sc/ScDataPilotItemObj.class
new file mode 100644
index 000000000000..9298e112ef7c
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScDataPilotItemObj.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScDatabaseRangeObj.class b/qadevOOo/bin/mod/_sc/ScDatabaseRangeObj.class
new file mode 100644
index 000000000000..f6fa220a967d
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScDatabaseRangeObj.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScDocumentConfiguration.class b/qadevOOo/bin/mod/_sc/ScDocumentConfiguration.class
new file mode 100644
index 000000000000..1d05df7a08f0
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScDocumentConfiguration.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScHeaderFooterTextCursor.class b/qadevOOo/bin/mod/_sc/ScHeaderFooterTextCursor.class
new file mode 100644
index 000000000000..ab67b55ef16a
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScHeaderFooterTextCursor.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScHeaderFooterTextObj.class b/qadevOOo/bin/mod/_sc/ScHeaderFooterTextObj.class
new file mode 100644
index 000000000000..5ae3cf7c894b
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScHeaderFooterTextObj.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScModelObj.class b/qadevOOo/bin/mod/_sc/ScModelObj.class
new file mode 100644
index 000000000000..5e580c08ad2b
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScModelObj.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScShapeObj.class b/qadevOOo/bin/mod/_sc/ScShapeObj.class
new file mode 100644
index 000000000000..c15df220d5f8
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScShapeObj.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScSheetLinkObj.class b/qadevOOo/bin/mod/_sc/ScSheetLinkObj.class
new file mode 100644
index 000000000000..5b96f140f58b
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScSheetLinkObj.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScStyleObj.class b/qadevOOo/bin/mod/_sc/ScStyleObj.class
new file mode 100644
index 000000000000..e9a3bcf38db6
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScStyleObj.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScTabViewObj$1.class b/qadevOOo/bin/mod/_sc/ScTabViewObj$1.class
new file mode 100644
index 000000000000..43134fb54186
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScTabViewObj$1.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScTabViewObj.class b/qadevOOo/bin/mod/_sc/ScTabViewObj.class
new file mode 100644
index 000000000000..f330cacb89e6
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScTabViewObj.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScTableSheetObj$1.class b/qadevOOo/bin/mod/_sc/ScTableSheetObj$1.class
new file mode 100644
index 000000000000..e111e74ea378
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScTableSheetObj$1.class differ
diff --git a/qadevOOo/bin/mod/_sc/ScTableSheetObj.class b/qadevOOo/bin/mod/_sc/ScTableSheetObj.class
new file mode 100644
index 000000000000..d5c92543a147
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/ScTableSheetObj.class differ
diff --git a/qadevOOo/bin/mod/_sc/XMLContentExporter$ContentFilterChecker.class b/qadevOOo/bin/mod/_sc/XMLContentExporter$ContentFilterChecker.class
new file mode 100644
index 000000000000..ae2b66ccb116
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/XMLContentExporter$ContentFilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_sc/XMLContentExporter.class b/qadevOOo/bin/mod/_sc/XMLContentExporter.class
new file mode 100644
index 000000000000..13c2e3e86fc6
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/XMLContentExporter.class differ
diff --git a/qadevOOo/bin/mod/_sc/XMLContentImporter$1.class b/qadevOOo/bin/mod/_sc/XMLContentImporter$1.class
new file mode 100644
index 000000000000..40fc514f2394
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/XMLContentImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_sc/XMLContentImporter.class b/qadevOOo/bin/mod/_sc/XMLContentImporter.class
new file mode 100644
index 000000000000..495f3757d5f7
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/XMLContentImporter.class differ
diff --git a/qadevOOo/bin/mod/_sc/XMLExporter$FilterChecker.class b/qadevOOo/bin/mod/_sc/XMLExporter$FilterChecker.class
new file mode 100644
index 000000000000..5e7c54b80f48
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/XMLExporter$FilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_sc/XMLExporter.class b/qadevOOo/bin/mod/_sc/XMLExporter.class
new file mode 100644
index 000000000000..8a1c6c7f65bf
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/XMLExporter.class differ
diff --git a/qadevOOo/bin/mod/_sc/XMLImporter$1.class b/qadevOOo/bin/mod/_sc/XMLImporter$1.class
new file mode 100644
index 000000000000..0729af65d34d
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/XMLImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_sc/XMLImporter.class b/qadevOOo/bin/mod/_sc/XMLImporter.class
new file mode 100644
index 000000000000..00d5ab6d1054
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/XMLImporter.class differ
diff --git a/qadevOOo/bin/mod/_sc/XMLMetaExporter$FilterChecker.class b/qadevOOo/bin/mod/_sc/XMLMetaExporter$FilterChecker.class
new file mode 100644
index 000000000000..632498997b4e
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/XMLMetaExporter$FilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_sc/XMLMetaExporter.class b/qadevOOo/bin/mod/_sc/XMLMetaExporter.class
new file mode 100644
index 000000000000..8e75c292c53f
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/XMLMetaExporter.class differ
diff --git a/qadevOOo/bin/mod/_sc/XMLMetaImporter$1.class b/qadevOOo/bin/mod/_sc/XMLMetaImporter$1.class
new file mode 100644
index 000000000000..994da6b3514f
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/XMLMetaImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_sc/XMLMetaImporter.class b/qadevOOo/bin/mod/_sc/XMLMetaImporter.class
new file mode 100644
index 000000000000..72b73f141775
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/XMLMetaImporter.class differ
diff --git a/qadevOOo/bin/mod/_sc/XMLSettingsExporter$SettingsFilterChecker.class b/qadevOOo/bin/mod/_sc/XMLSettingsExporter$SettingsFilterChecker.class
new file mode 100644
index 000000000000..53c62ca149e6
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/XMLSettingsExporter$SettingsFilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_sc/XMLSettingsExporter.class b/qadevOOo/bin/mod/_sc/XMLSettingsExporter.class
new file mode 100644
index 000000000000..201ecad686c5
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/XMLSettingsExporter.class differ
diff --git a/qadevOOo/bin/mod/_sc/XMLSettingsImporter$1.class b/qadevOOo/bin/mod/_sc/XMLSettingsImporter$1.class
new file mode 100644
index 000000000000..fcc54d58f610
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/XMLSettingsImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_sc/XMLSettingsImporter.class b/qadevOOo/bin/mod/_sc/XMLSettingsImporter.class
new file mode 100644
index 000000000000..e4f1be9a7df0
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/XMLSettingsImporter.class differ
diff --git a/qadevOOo/bin/mod/_sc/XMLStylesExporter$FilterChecker.class b/qadevOOo/bin/mod/_sc/XMLStylesExporter$FilterChecker.class
new file mode 100644
index 000000000000..354fefa7de64
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/XMLStylesExporter$FilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_sc/XMLStylesExporter.class b/qadevOOo/bin/mod/_sc/XMLStylesExporter.class
new file mode 100644
index 000000000000..969d5cdc3fe1
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/XMLStylesExporter.class differ
diff --git a/qadevOOo/bin/mod/_sc/XMLStylesImporter$1.class b/qadevOOo/bin/mod/_sc/XMLStylesImporter$1.class
new file mode 100644
index 000000000000..e885b039765f
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/XMLStylesImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_sc/XMLStylesImporter.class b/qadevOOo/bin/mod/_sc/XMLStylesImporter.class
new file mode 100644
index 000000000000..d0645f3990f9
Binary files /dev/null and b/qadevOOo/bin/mod/_sc/XMLStylesImporter.class differ
diff --git a/qadevOOo/bin/mod/_sc/package.html b/qadevOOo/bin/mod/_sc/package.html
new file mode 100644
index 000000000000..198d6b17d9b3
--- /dev/null
+++ b/qadevOOo/bin/mod/_sc/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'sc'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_sch/AccArea$1.class b/qadevOOo/bin/mod/_sch/AccArea$1.class
new file mode 100644
index 000000000000..22abbef42598
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccArea$1.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccArea.class b/qadevOOo/bin/mod/_sch/AccArea.class
new file mode 100644
index 000000000000..9be989d461d1
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccArea.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccAxis$1.class b/qadevOOo/bin/mod/_sch/AccAxis$1.class
new file mode 100644
index 000000000000..6cb30fe09792
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccAxis$1.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccAxis.class b/qadevOOo/bin/mod/_sch/AccAxis.class
new file mode 100644
index 000000000000..3f1c861533bf
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccAxis.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccDataPoint$1.class b/qadevOOo/bin/mod/_sch/AccDataPoint$1.class
new file mode 100644
index 000000000000..137ff836f678
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccDataPoint$1.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccDataPoint.class b/qadevOOo/bin/mod/_sch/AccDataPoint.class
new file mode 100644
index 000000000000..f187096003a9
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccDataPoint.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccDataSeries$1.class b/qadevOOo/bin/mod/_sch/AccDataSeries$1.class
new file mode 100644
index 000000000000..12e37330b454
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccDataSeries$1.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccDataSeries.class b/qadevOOo/bin/mod/_sch/AccDataSeries.class
new file mode 100644
index 000000000000..e5c725d71e75
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccDataSeries.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccDiagram$1.class b/qadevOOo/bin/mod/_sch/AccDiagram$1.class
new file mode 100644
index 000000000000..89f0001d9d23
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccDiagram$1.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccDiagram.class b/qadevOOo/bin/mod/_sch/AccDiagram.class
new file mode 100644
index 000000000000..297f90d1ff7d
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccDiagram.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccFloor$1.class b/qadevOOo/bin/mod/_sch/AccFloor$1.class
new file mode 100644
index 000000000000..2210937105b3
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccFloor$1.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccFloor.class b/qadevOOo/bin/mod/_sch/AccFloor.class
new file mode 100644
index 000000000000..a6067e3d732d
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccFloor.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccGrid$1.class b/qadevOOo/bin/mod/_sch/AccGrid$1.class
new file mode 100644
index 000000000000..bdd58dc0b58c
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccGrid$1.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccGrid.class b/qadevOOo/bin/mod/_sch/AccGrid.class
new file mode 100644
index 000000000000..de55544c6f40
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccGrid.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccLegend$1.class b/qadevOOo/bin/mod/_sch/AccLegend$1.class
new file mode 100644
index 000000000000..e2580b4cc361
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccLegend$1.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccLegend.class b/qadevOOo/bin/mod/_sch/AccLegend.class
new file mode 100644
index 000000000000..dfcd3319d794
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccLegend.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccLegendEntry$1.class b/qadevOOo/bin/mod/_sch/AccLegendEntry$1.class
new file mode 100644
index 000000000000..56f347dd81ba
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccLegendEntry$1.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccLegendEntry.class b/qadevOOo/bin/mod/_sch/AccLegendEntry.class
new file mode 100644
index 000000000000..c6fb3477f055
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccLegendEntry.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccTitle$1.class b/qadevOOo/bin/mod/_sch/AccTitle$1.class
new file mode 100644
index 000000000000..a5452da344e4
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccTitle$1.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccTitle.class b/qadevOOo/bin/mod/_sch/AccTitle.class
new file mode 100644
index 000000000000..f1c58ffaa6fa
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccTitle.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccWall$1.class b/qadevOOo/bin/mod/_sch/AccWall$1.class
new file mode 100644
index 000000000000..70e15a55b7b6
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccWall$1.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccWall.class b/qadevOOo/bin/mod/_sch/AccWall.class
new file mode 100644
index 000000000000..6592a1495398
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccWall.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccessibleDocumentView$1.class b/qadevOOo/bin/mod/_sch/AccessibleDocumentView$1.class
new file mode 100644
index 000000000000..bc51256db779
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccessibleDocumentView$1.class differ
diff --git a/qadevOOo/bin/mod/_sch/AccessibleDocumentView.class b/qadevOOo/bin/mod/_sch/AccessibleDocumentView.class
new file mode 100644
index 000000000000..52c334da6cd0
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/AccessibleDocumentView.class differ
diff --git a/qadevOOo/bin/mod/_sch/ChXChartAxis.class b/qadevOOo/bin/mod/_sch/ChXChartAxis.class
new file mode 100644
index 000000000000..3d82c318d824
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/ChXChartAxis.class differ
diff --git a/qadevOOo/bin/mod/_sch/ChXChartData.class b/qadevOOo/bin/mod/_sch/ChXChartData.class
new file mode 100644
index 000000000000..76b050529683
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/ChXChartData.class differ
diff --git a/qadevOOo/bin/mod/_sch/ChXChartDataArray.class b/qadevOOo/bin/mod/_sch/ChXChartDataArray.class
new file mode 100644
index 000000000000..5b314d771c7d
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/ChXChartDataArray.class differ
diff --git a/qadevOOo/bin/mod/_sch/ChXChartDocument.class b/qadevOOo/bin/mod/_sch/ChXChartDocument.class
new file mode 100644
index 000000000000..94bbf44af1ff
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/ChXChartDocument.class differ
diff --git a/qadevOOo/bin/mod/_sch/ChXChartView$1.class b/qadevOOo/bin/mod/_sch/ChXChartView$1.class
new file mode 100644
index 000000000000..37e3c3ff5b69
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/ChXChartView$1.class differ
diff --git a/qadevOOo/bin/mod/_sch/ChXChartView.class b/qadevOOo/bin/mod/_sch/ChXChartView.class
new file mode 100644
index 000000000000..27a8c8cc06c3
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/ChXChartView.class differ
diff --git a/qadevOOo/bin/mod/_sch/ChXDataPoint.class b/qadevOOo/bin/mod/_sch/ChXDataPoint.class
new file mode 100644
index 000000000000..5ec87f5f3b3a
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/ChXDataPoint.class differ
diff --git a/qadevOOo/bin/mod/_sch/ChXDataRow.class b/qadevOOo/bin/mod/_sch/ChXDataRow.class
new file mode 100644
index 000000000000..7278f653c73f
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/ChXDataRow.class differ
diff --git a/qadevOOo/bin/mod/_sch/ChXDiagram.class b/qadevOOo/bin/mod/_sch/ChXDiagram.class
new file mode 100644
index 000000000000..67cdfdccc349
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/ChXDiagram.class differ
diff --git a/qadevOOo/bin/mod/_sch/ChartArea.class b/qadevOOo/bin/mod/_sch/ChartArea.class
new file mode 100644
index 000000000000..5ae61dcd9f21
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/ChartArea.class differ
diff --git a/qadevOOo/bin/mod/_sch/ChartGrid.class b/qadevOOo/bin/mod/_sch/ChartGrid.class
new file mode 100644
index 000000000000..ee648074ba2b
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/ChartGrid.class differ
diff --git a/qadevOOo/bin/mod/_sch/ChartLegend.class b/qadevOOo/bin/mod/_sch/ChartLegend.class
new file mode 100644
index 000000000000..6c4d0ef46e00
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/ChartLegend.class differ
diff --git a/qadevOOo/bin/mod/_sch/ChartLine.class b/qadevOOo/bin/mod/_sch/ChartLine.class
new file mode 100644
index 000000000000..1ae5d5e07037
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/ChartLine.class differ
diff --git a/qadevOOo/bin/mod/_sch/ChartTitle.class b/qadevOOo/bin/mod/_sch/ChartTitle.class
new file mode 100644
index 000000000000..5ecc1637c896
Binary files /dev/null and b/qadevOOo/bin/mod/_sch/ChartTitle.class differ
diff --git a/qadevOOo/bin/mod/_sd/AccessibleDrawDocumentView$1.class b/qadevOOo/bin/mod/_sd/AccessibleDrawDocumentView$1.class
new file mode 100644
index 000000000000..1d1c1ef80b9b
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/AccessibleDrawDocumentView$1.class differ
diff --git a/qadevOOo/bin/mod/_sd/AccessibleDrawDocumentView.class b/qadevOOo/bin/mod/_sd/AccessibleDrawDocumentView.class
new file mode 100644
index 000000000000..8944463d437d
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/AccessibleDrawDocumentView.class differ
diff --git a/qadevOOo/bin/mod/_sd/AccessibleOutlineView$1.class b/qadevOOo/bin/mod/_sd/AccessibleOutlineView$1.class
new file mode 100644
index 000000000000..dfe28817404f
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/AccessibleOutlineView$1.class differ
diff --git a/qadevOOo/bin/mod/_sd/AccessibleOutlineView.class b/qadevOOo/bin/mod/_sd/AccessibleOutlineView.class
new file mode 100644
index 000000000000..91ecd84e8082
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/AccessibleOutlineView.class differ
diff --git a/qadevOOo/bin/mod/_sd/AccessibleSlideView$1.class b/qadevOOo/bin/mod/_sd/AccessibleSlideView$1.class
new file mode 100644
index 000000000000..6f3b5d63d1c6
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/AccessibleSlideView$1.class differ
diff --git a/qadevOOo/bin/mod/_sd/AccessibleSlideView.class b/qadevOOo/bin/mod/_sd/AccessibleSlideView.class
new file mode 100644
index 000000000000..d28b3e59e012
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/AccessibleSlideView.class differ
diff --git a/qadevOOo/bin/mod/_sd/DrawController_DrawView$1.class b/qadevOOo/bin/mod/_sd/DrawController_DrawView$1.class
new file mode 100644
index 000000000000..83357b54bb0d
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/DrawController_DrawView$1.class differ
diff --git a/qadevOOo/bin/mod/_sd/DrawController_DrawView.class b/qadevOOo/bin/mod/_sd/DrawController_DrawView.class
new file mode 100644
index 000000000000..84242c9b7629
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/DrawController_DrawView.class differ
diff --git a/qadevOOo/bin/mod/_sd/DrawController_HandoutView$1.class b/qadevOOo/bin/mod/_sd/DrawController_HandoutView$1.class
new file mode 100644
index 000000000000..27f56721ea1c
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/DrawController_HandoutView$1.class differ
diff --git a/qadevOOo/bin/mod/_sd/DrawController_HandoutView.class b/qadevOOo/bin/mod/_sd/DrawController_HandoutView.class
new file mode 100644
index 000000000000..ffa21095f2ed
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/DrawController_HandoutView.class differ
diff --git a/qadevOOo/bin/mod/_sd/DrawController_NotesView$1.class b/qadevOOo/bin/mod/_sd/DrawController_NotesView$1.class
new file mode 100644
index 000000000000..38799679e56a
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/DrawController_NotesView$1.class differ
diff --git a/qadevOOo/bin/mod/_sd/DrawController_NotesView.class b/qadevOOo/bin/mod/_sd/DrawController_NotesView.class
new file mode 100644
index 000000000000..8c2f5dff5d60
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/DrawController_NotesView.class differ
diff --git a/qadevOOo/bin/mod/_sd/DrawController_OutlineView$1.class b/qadevOOo/bin/mod/_sd/DrawController_OutlineView$1.class
new file mode 100644
index 000000000000..9cdd14c79b4d
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/DrawController_OutlineView$1.class differ
diff --git a/qadevOOo/bin/mod/_sd/DrawController_OutlineView.class b/qadevOOo/bin/mod/_sd/DrawController_OutlineView.class
new file mode 100644
index 000000000000..b86027ad5aa3
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/DrawController_OutlineView.class differ
diff --git a/qadevOOo/bin/mod/_sd/DrawController_PresentationView$1.class b/qadevOOo/bin/mod/_sd/DrawController_PresentationView$1.class
new file mode 100644
index 000000000000..04f2553f5b3b
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/DrawController_PresentationView$1.class differ
diff --git a/qadevOOo/bin/mod/_sd/DrawController_PresentationView.class b/qadevOOo/bin/mod/_sd/DrawController_PresentationView.class
new file mode 100644
index 000000000000..fb3574f0f462
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/DrawController_PresentationView.class differ
diff --git a/qadevOOo/bin/mod/_sd/SdDocLinkTargets.class b/qadevOOo/bin/mod/_sd/SdDocLinkTargets.class
new file mode 100644
index 000000000000..77f09d334eb9
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/SdDocLinkTargets.class differ
diff --git a/qadevOOo/bin/mod/_sd/SdDrawPage.class b/qadevOOo/bin/mod/_sd/SdDrawPage.class
new file mode 100644
index 000000000000..71482db17374
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/SdDrawPage.class differ
diff --git a/qadevOOo/bin/mod/_sd/SdDrawPagesAccess.class b/qadevOOo/bin/mod/_sd/SdDrawPagesAccess.class
new file mode 100644
index 000000000000..2db18549f74d
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/SdDrawPagesAccess.class differ
diff --git a/qadevOOo/bin/mod/_sd/SdGenericDrawPage.class b/qadevOOo/bin/mod/_sd/SdGenericDrawPage.class
new file mode 100644
index 000000000000..65c33848a111
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/SdGenericDrawPage.class differ
diff --git a/qadevOOo/bin/mod/_sd/SdLayer.class b/qadevOOo/bin/mod/_sd/SdLayer.class
new file mode 100644
index 000000000000..f8bb563122e1
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/SdLayer.class differ
diff --git a/qadevOOo/bin/mod/_sd/SdLayerManager.class b/qadevOOo/bin/mod/_sd/SdLayerManager.class
new file mode 100644
index 000000000000..a2517ecddf90
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/SdLayerManager.class differ
diff --git a/qadevOOo/bin/mod/_sd/SdMasterPage.class b/qadevOOo/bin/mod/_sd/SdMasterPage.class
new file mode 100644
index 000000000000..3ce74f468a66
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/SdMasterPage.class differ
diff --git a/qadevOOo/bin/mod/_sd/SdMasterPagesAccess.class b/qadevOOo/bin/mod/_sd/SdMasterPagesAccess.class
new file mode 100644
index 000000000000..d5d629dd9011
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/SdMasterPagesAccess.class differ
diff --git a/qadevOOo/bin/mod/_sd/SdPageLinkTargets.class b/qadevOOo/bin/mod/_sd/SdPageLinkTargets.class
new file mode 100644
index 000000000000..00d67acec5e3
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/SdPageLinkTargets.class differ
diff --git a/qadevOOo/bin/mod/_sd/SdUnoDrawView$1.class b/qadevOOo/bin/mod/_sd/SdUnoDrawView$1.class
new file mode 100644
index 000000000000..8114f0175756
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/SdUnoDrawView$1.class differ
diff --git a/qadevOOo/bin/mod/_sd/SdUnoDrawView.class b/qadevOOo/bin/mod/_sd/SdUnoDrawView.class
new file mode 100644
index 000000000000..92f351fba50a
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/SdUnoDrawView.class differ
diff --git a/qadevOOo/bin/mod/_sd/SdUnoOutlineView.class b/qadevOOo/bin/mod/_sd/SdUnoOutlineView.class
new file mode 100644
index 000000000000..6710333c1964
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/SdUnoOutlineView.class differ
diff --git a/qadevOOo/bin/mod/_sd/SdUnoPresView$1.class b/qadevOOo/bin/mod/_sd/SdUnoPresView$1.class
new file mode 100644
index 000000000000..2c158973669f
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/SdUnoPresView$1.class differ
diff --git a/qadevOOo/bin/mod/_sd/SdUnoPresView.class b/qadevOOo/bin/mod/_sd/SdUnoPresView.class
new file mode 100644
index 000000000000..b43909600a09
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/SdUnoPresView.class differ
diff --git a/qadevOOo/bin/mod/_sd/SdUnoSlideView.class b/qadevOOo/bin/mod/_sd/SdUnoSlideView.class
new file mode 100644
index 000000000000..299f98d5e0c5
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/SdUnoSlideView.class differ
diff --git a/qadevOOo/bin/mod/_sd/SdXCustomPresentation.class b/qadevOOo/bin/mod/_sd/SdXCustomPresentation.class
new file mode 100644
index 000000000000..b85e2ff5d279
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/SdXCustomPresentation.class differ
diff --git a/qadevOOo/bin/mod/_sd/SdXCustomPresentationAccess.class b/qadevOOo/bin/mod/_sd/SdXCustomPresentationAccess.class
new file mode 100644
index 000000000000..9048006b68db
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/SdXCustomPresentationAccess.class differ
diff --git a/qadevOOo/bin/mod/_sd/SdXImpressDocument.class b/qadevOOo/bin/mod/_sd/SdXImpressDocument.class
new file mode 100644
index 000000000000..9889d587126c
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/SdXImpressDocument.class differ
diff --git a/qadevOOo/bin/mod/_sd/SdXPresentation.class b/qadevOOo/bin/mod/_sd/SdXPresentation.class
new file mode 100644
index 000000000000..6ed2e4641d09
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/SdXPresentation.class differ
diff --git a/qadevOOo/bin/mod/_sd/SdXShape.class b/qadevOOo/bin/mod/_sd/SdXShape.class
new file mode 100644
index 000000000000..988319dd9d31
Binary files /dev/null and b/qadevOOo/bin/mod/_sd/SdXShape.class differ
diff --git a/qadevOOo/bin/mod/_sd/package.html b/qadevOOo/bin/mod/_sd/package.html
new file mode 100644
index 000000000000..cd1299cd6d91
--- /dev/null
+++ b/qadevOOo/bin/mod/_sd/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'sd'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_servicemgr/uno/OServiceManager.class b/qadevOOo/bin/mod/_servicemgr/uno/OServiceManager.class
new file mode 100644
index 000000000000..c1ef47fa7353
Binary files /dev/null and b/qadevOOo/bin/mod/_servicemgr/uno/OServiceManager.class differ
diff --git a/qadevOOo/bin/mod/_servicemgr/uno/package.html b/qadevOOo/bin/mod/_servicemgr/uno/package.html
new file mode 100644
index 000000000000..bef49b8c50c7
--- /dev/null
+++ b/qadevOOo/bin/mod/_servicemgr/uno/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'smgr'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_sfx/AppDispatchProvider.class b/qadevOOo/bin/mod/_sfx/AppDispatchProvider.class
new file mode 100644
index 000000000000..13705c0c766f
Binary files /dev/null and b/qadevOOo/bin/mod/_sfx/AppDispatchProvider.class differ
diff --git a/qadevOOo/bin/mod/_sfx/DocumentTemplates.class b/qadevOOo/bin/mod/_sfx/DocumentTemplates.class
new file mode 100644
index 000000000000..f5eef012994a
Binary files /dev/null and b/qadevOOo/bin/mod/_sfx/DocumentTemplates.class differ
diff --git a/qadevOOo/bin/mod/_sfx/FrameLoader.class b/qadevOOo/bin/mod/_sfx/FrameLoader.class
new file mode 100644
index 000000000000..22ea01170f86
Binary files /dev/null and b/qadevOOo/bin/mod/_sfx/FrameLoader.class differ
diff --git a/qadevOOo/bin/mod/_sfx/SfxMacroLoader.class b/qadevOOo/bin/mod/_sfx/SfxMacroLoader.class
new file mode 100644
index 000000000000..a7175f811990
Binary files /dev/null and b/qadevOOo/bin/mod/_sfx/SfxMacroLoader.class differ
diff --git a/qadevOOo/bin/mod/_shlibloader/uno/DLLComponentLoader.class b/qadevOOo/bin/mod/_shlibloader/uno/DLLComponentLoader.class
new file mode 100644
index 000000000000..116554810978
Binary files /dev/null and b/qadevOOo/bin/mod/_shlibloader/uno/DLLComponentLoader.class differ
diff --git a/qadevOOo/bin/mod/_shlibloader/uno/package.html b/qadevOOo/bin/mod/_shlibloader/uno/package.html
new file mode 100644
index 000000000000..1bc7bf11768a
--- /dev/null
+++ b/qadevOOo/bin/mod/_shlibloader/uno/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'cpld'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_simplereg/uno/SimpleRegistry.class b/qadevOOo/bin/mod/_simplereg/uno/SimpleRegistry.class
new file mode 100644
index 000000000000..44a0138bf869
Binary files /dev/null and b/qadevOOo/bin/mod/_simplereg/uno/SimpleRegistry.class differ
diff --git a/qadevOOo/bin/mod/_simplereg/uno/package.html b/qadevOOo/bin/mod/_simplereg/uno/package.html
new file mode 100644
index 000000000000..b70d937939a5
--- /dev/null
+++ b/qadevOOo/bin/mod/_simplereg/uno/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'simreg'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_simreg/SimpleRegistry.class b/qadevOOo/bin/mod/_simreg/SimpleRegistry.class
new file mode 100644
index 000000000000..04e4b998492d
Binary files /dev/null and b/qadevOOo/bin/mod/_simreg/SimpleRegistry.class differ
diff --git a/qadevOOo/bin/mod/_simreg/package.html b/qadevOOo/bin/mod/_simreg/package.html
new file mode 100644
index 000000000000..b70d937939a5
--- /dev/null
+++ b/qadevOOo/bin/mod/_simreg/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'simreg'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_sm/SmEditAccessible$1.class b/qadevOOo/bin/mod/_sm/SmEditAccessible$1.class
new file mode 100644
index 000000000000..b76a0c585b4f
Binary files /dev/null and b/qadevOOo/bin/mod/_sm/SmEditAccessible$1.class differ
diff --git a/qadevOOo/bin/mod/_sm/SmEditAccessible.class b/qadevOOo/bin/mod/_sm/SmEditAccessible.class
new file mode 100644
index 000000000000..d2b6e7dd5e24
Binary files /dev/null and b/qadevOOo/bin/mod/_sm/SmEditAccessible.class differ
diff --git a/qadevOOo/bin/mod/_sm/SmGraphicAccessible$1.class b/qadevOOo/bin/mod/_sm/SmGraphicAccessible$1.class
new file mode 100644
index 000000000000..bf3673daabfb
Binary files /dev/null and b/qadevOOo/bin/mod/_sm/SmGraphicAccessible$1.class differ
diff --git a/qadevOOo/bin/mod/_sm/SmGraphicAccessible.class b/qadevOOo/bin/mod/_sm/SmGraphicAccessible.class
new file mode 100644
index 000000000000..4b918a53add7
Binary files /dev/null and b/qadevOOo/bin/mod/_sm/SmGraphicAccessible.class differ
diff --git a/qadevOOo/bin/mod/_sm/SmModel.class b/qadevOOo/bin/mod/_sm/SmModel.class
new file mode 100644
index 000000000000..b3d56f7975e9
Binary files /dev/null and b/qadevOOo/bin/mod/_sm/SmModel.class differ
diff --git a/qadevOOo/bin/mod/_sm/XMLExporter$FilterChecker.class b/qadevOOo/bin/mod/_sm/XMLExporter$FilterChecker.class
new file mode 100644
index 000000000000..feba8d2b0537
Binary files /dev/null and b/qadevOOo/bin/mod/_sm/XMLExporter$FilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_sm/XMLExporter.class b/qadevOOo/bin/mod/_sm/XMLExporter.class
new file mode 100644
index 000000000000..d752b2272d7c
Binary files /dev/null and b/qadevOOo/bin/mod/_sm/XMLExporter.class differ
diff --git a/qadevOOo/bin/mod/_sm/XMLImporter$1.class b/qadevOOo/bin/mod/_sm/XMLImporter$1.class
new file mode 100644
index 000000000000..587f6f94b70f
Binary files /dev/null and b/qadevOOo/bin/mod/_sm/XMLImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_sm/XMLImporter.class b/qadevOOo/bin/mod/_sm/XMLImporter.class
new file mode 100644
index 000000000000..32b40d9d3e4d
Binary files /dev/null and b/qadevOOo/bin/mod/_sm/XMLImporter.class differ
diff --git a/qadevOOo/bin/mod/_sm/XMLMetaExporter$FilterChecker.class b/qadevOOo/bin/mod/_sm/XMLMetaExporter$FilterChecker.class
new file mode 100644
index 000000000000..1d421192a393
Binary files /dev/null and b/qadevOOo/bin/mod/_sm/XMLMetaExporter$FilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_sm/XMLMetaExporter.class b/qadevOOo/bin/mod/_sm/XMLMetaExporter.class
new file mode 100644
index 000000000000..740738bed691
Binary files /dev/null and b/qadevOOo/bin/mod/_sm/XMLMetaExporter.class differ
diff --git a/qadevOOo/bin/mod/_sm/XMLMetaImporter$1.class b/qadevOOo/bin/mod/_sm/XMLMetaImporter$1.class
new file mode 100644
index 000000000000..ba4923ce84ef
Binary files /dev/null and b/qadevOOo/bin/mod/_sm/XMLMetaImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_sm/XMLMetaImporter.class b/qadevOOo/bin/mod/_sm/XMLMetaImporter.class
new file mode 100644
index 000000000000..438b3fd1da7a
Binary files /dev/null and b/qadevOOo/bin/mod/_sm/XMLMetaImporter.class differ
diff --git a/qadevOOo/bin/mod/_sm/XMLSettingsExporter$FilterChecker.class b/qadevOOo/bin/mod/_sm/XMLSettingsExporter$FilterChecker.class
new file mode 100644
index 000000000000..3060a8031eb7
Binary files /dev/null and b/qadevOOo/bin/mod/_sm/XMLSettingsExporter$FilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_sm/XMLSettingsExporter.class b/qadevOOo/bin/mod/_sm/XMLSettingsExporter.class
new file mode 100644
index 000000000000..8e6e3f0cca01
Binary files /dev/null and b/qadevOOo/bin/mod/_sm/XMLSettingsExporter.class differ
diff --git a/qadevOOo/bin/mod/_sm/XMLSettingsImporter$1.class b/qadevOOo/bin/mod/_sm/XMLSettingsImporter$1.class
new file mode 100644
index 000000000000..72e0c94d3460
Binary files /dev/null and b/qadevOOo/bin/mod/_sm/XMLSettingsImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_sm/XMLSettingsImporter.class b/qadevOOo/bin/mod/_sm/XMLSettingsImporter.class
new file mode 100644
index 000000000000..e1502ff3d414
Binary files /dev/null and b/qadevOOo/bin/mod/_sm/XMLSettingsImporter.class differ
diff --git a/qadevOOo/bin/mod/_smgr/OServiceManager.class b/qadevOOo/bin/mod/_smgr/OServiceManager.class
new file mode 100644
index 000000000000..bcacbb4fe6ad
Binary files /dev/null and b/qadevOOo/bin/mod/_smgr/OServiceManager.class differ
diff --git a/qadevOOo/bin/mod/_smgr/package.html b/qadevOOo/bin/mod/_smgr/package.html
new file mode 100644
index 000000000000..bef49b8c50c7
--- /dev/null
+++ b/qadevOOo/bin/mod/_smgr/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'smgr'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_smplmail/SimpleSystemMail.class b/qadevOOo/bin/mod/_smplmail/SimpleSystemMail.class
new file mode 100644
index 000000000000..40c8402a9943
Binary files /dev/null and b/qadevOOo/bin/mod/_smplmail/SimpleSystemMail.class differ
diff --git a/qadevOOo/bin/mod/_srtrs/SortedDynamicResultSetFactory.class b/qadevOOo/bin/mod/_srtrs/SortedDynamicResultSetFactory.class
new file mode 100644
index 000000000000..3244fdbea5dc
Binary files /dev/null and b/qadevOOo/bin/mod/_srtrs/SortedDynamicResultSetFactory.class differ
diff --git a/qadevOOo/bin/mod/_stm/DataInputStream.class b/qadevOOo/bin/mod/_stm/DataInputStream.class
new file mode 100644
index 000000000000..01b684e49003
Binary files /dev/null and b/qadevOOo/bin/mod/_stm/DataInputStream.class differ
diff --git a/qadevOOo/bin/mod/_stm/DataOutputStream$1.class b/qadevOOo/bin/mod/_stm/DataOutputStream$1.class
new file mode 100644
index 000000000000..7050efd5d6d0
Binary files /dev/null and b/qadevOOo/bin/mod/_stm/DataOutputStream$1.class differ
diff --git a/qadevOOo/bin/mod/_stm/DataOutputStream.class b/qadevOOo/bin/mod/_stm/DataOutputStream.class
new file mode 100644
index 000000000000..2d98960f785f
Binary files /dev/null and b/qadevOOo/bin/mod/_stm/DataOutputStream.class differ
diff --git a/qadevOOo/bin/mod/_stm/MarkableInputStream.class b/qadevOOo/bin/mod/_stm/MarkableInputStream.class
new file mode 100644
index 000000000000..e208e9645267
Binary files /dev/null and b/qadevOOo/bin/mod/_stm/MarkableInputStream.class differ
diff --git a/qadevOOo/bin/mod/_stm/MarkableOutputStream$1.class b/qadevOOo/bin/mod/_stm/MarkableOutputStream$1.class
new file mode 100644
index 000000000000..c6c0b80fdb3e
Binary files /dev/null and b/qadevOOo/bin/mod/_stm/MarkableOutputStream$1.class differ
diff --git a/qadevOOo/bin/mod/_stm/MarkableOutputStream.class b/qadevOOo/bin/mod/_stm/MarkableOutputStream.class
new file mode 100644
index 000000000000..46c0c7beb690
Binary files /dev/null and b/qadevOOo/bin/mod/_stm/MarkableOutputStream.class differ
diff --git a/qadevOOo/bin/mod/_stm/ObjectInputStream.class b/qadevOOo/bin/mod/_stm/ObjectInputStream.class
new file mode 100644
index 000000000000..fc436205ec65
Binary files /dev/null and b/qadevOOo/bin/mod/_stm/ObjectInputStream.class differ
diff --git a/qadevOOo/bin/mod/_stm/ObjectOutputStream$1.class b/qadevOOo/bin/mod/_stm/ObjectOutputStream$1.class
new file mode 100644
index 000000000000..36303c5dd550
Binary files /dev/null and b/qadevOOo/bin/mod/_stm/ObjectOutputStream$1.class differ
diff --git a/qadevOOo/bin/mod/_stm/ObjectOutputStream.class b/qadevOOo/bin/mod/_stm/ObjectOutputStream.class
new file mode 100644
index 000000000000..25092689ffc9
Binary files /dev/null and b/qadevOOo/bin/mod/_stm/ObjectOutputStream.class differ
diff --git a/qadevOOo/bin/mod/_stm/Pipe$1.class b/qadevOOo/bin/mod/_stm/Pipe$1.class
new file mode 100644
index 000000000000..7fa03f780ac5
Binary files /dev/null and b/qadevOOo/bin/mod/_stm/Pipe$1.class differ
diff --git a/qadevOOo/bin/mod/_stm/Pipe.class b/qadevOOo/bin/mod/_stm/Pipe.class
new file mode 100644
index 000000000000..3076630d8607
Binary files /dev/null and b/qadevOOo/bin/mod/_stm/Pipe.class differ
diff --git a/qadevOOo/bin/mod/_stm/Pump$MyInput.class b/qadevOOo/bin/mod/_stm/Pump$MyInput.class
new file mode 100644
index 000000000000..c8526946cda8
Binary files /dev/null and b/qadevOOo/bin/mod/_stm/Pump$MyInput.class differ
diff --git a/qadevOOo/bin/mod/_stm/Pump$MyOutput.class b/qadevOOo/bin/mod/_stm/Pump$MyOutput.class
new file mode 100644
index 000000000000..f65506ef00fd
Binary files /dev/null and b/qadevOOo/bin/mod/_stm/Pump$MyOutput.class differ
diff --git a/qadevOOo/bin/mod/_stm/Pump.class b/qadevOOo/bin/mod/_stm/Pump.class
new file mode 100644
index 000000000000..ce2d9b7b28af
Binary files /dev/null and b/qadevOOo/bin/mod/_stm/Pump.class differ
diff --git a/qadevOOo/bin/mod/_stm/package.html b/qadevOOo/bin/mod/_stm/package.html
new file mode 100644
index 000000000000..aa2793cf291a
--- /dev/null
+++ b/qadevOOo/bin/mod/_stm/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'stm'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_streams/uno/DataInputStream.class b/qadevOOo/bin/mod/_streams/uno/DataInputStream.class
new file mode 100644
index 000000000000..ff3ad5ec74f5
Binary files /dev/null and b/qadevOOo/bin/mod/_streams/uno/DataInputStream.class differ
diff --git a/qadevOOo/bin/mod/_streams/uno/DataOutputStream$1.class b/qadevOOo/bin/mod/_streams/uno/DataOutputStream$1.class
new file mode 100644
index 000000000000..23e935cd4c73
Binary files /dev/null and b/qadevOOo/bin/mod/_streams/uno/DataOutputStream$1.class differ
diff --git a/qadevOOo/bin/mod/_streams/uno/DataOutputStream.class b/qadevOOo/bin/mod/_streams/uno/DataOutputStream.class
new file mode 100644
index 000000000000..14b11d867021
Binary files /dev/null and b/qadevOOo/bin/mod/_streams/uno/DataOutputStream.class differ
diff --git a/qadevOOo/bin/mod/_streams/uno/MarkableInputStream.class b/qadevOOo/bin/mod/_streams/uno/MarkableInputStream.class
new file mode 100644
index 000000000000..ab2ead7f5b30
Binary files /dev/null and b/qadevOOo/bin/mod/_streams/uno/MarkableInputStream.class differ
diff --git a/qadevOOo/bin/mod/_streams/uno/MarkableOutputStream$1.class b/qadevOOo/bin/mod/_streams/uno/MarkableOutputStream$1.class
new file mode 100644
index 000000000000..530937f200ed
Binary files /dev/null and b/qadevOOo/bin/mod/_streams/uno/MarkableOutputStream$1.class differ
diff --git a/qadevOOo/bin/mod/_streams/uno/MarkableOutputStream.class b/qadevOOo/bin/mod/_streams/uno/MarkableOutputStream.class
new file mode 100644
index 000000000000..1650eaac0fcf
Binary files /dev/null and b/qadevOOo/bin/mod/_streams/uno/MarkableOutputStream.class differ
diff --git a/qadevOOo/bin/mod/_streams/uno/ObjectInputStream.class b/qadevOOo/bin/mod/_streams/uno/ObjectInputStream.class
new file mode 100644
index 000000000000..d5599c414669
Binary files /dev/null and b/qadevOOo/bin/mod/_streams/uno/ObjectInputStream.class differ
diff --git a/qadevOOo/bin/mod/_streams/uno/ObjectOutputStream$1.class b/qadevOOo/bin/mod/_streams/uno/ObjectOutputStream$1.class
new file mode 100644
index 000000000000..cb0f2d076416
Binary files /dev/null and b/qadevOOo/bin/mod/_streams/uno/ObjectOutputStream$1.class differ
diff --git a/qadevOOo/bin/mod/_streams/uno/ObjectOutputStream.class b/qadevOOo/bin/mod/_streams/uno/ObjectOutputStream.class
new file mode 100644
index 000000000000..02ff4643cbe6
Binary files /dev/null and b/qadevOOo/bin/mod/_streams/uno/ObjectOutputStream.class differ
diff --git a/qadevOOo/bin/mod/_streams/uno/Pipe$1.class b/qadevOOo/bin/mod/_streams/uno/Pipe$1.class
new file mode 100644
index 000000000000..b3d737e58305
Binary files /dev/null and b/qadevOOo/bin/mod/_streams/uno/Pipe$1.class differ
diff --git a/qadevOOo/bin/mod/_streams/uno/Pipe.class b/qadevOOo/bin/mod/_streams/uno/Pipe.class
new file mode 100644
index 000000000000..165dfbb953f2
Binary files /dev/null and b/qadevOOo/bin/mod/_streams/uno/Pipe.class differ
diff --git a/qadevOOo/bin/mod/_streams/uno/Pump$MyInput.class b/qadevOOo/bin/mod/_streams/uno/Pump$MyInput.class
new file mode 100644
index 000000000000..7c9394182932
Binary files /dev/null and b/qadevOOo/bin/mod/_streams/uno/Pump$MyInput.class differ
diff --git a/qadevOOo/bin/mod/_streams/uno/Pump$MyOutput.class b/qadevOOo/bin/mod/_streams/uno/Pump$MyOutput.class
new file mode 100644
index 000000000000..11cc5f417f6b
Binary files /dev/null and b/qadevOOo/bin/mod/_streams/uno/Pump$MyOutput.class differ
diff --git a/qadevOOo/bin/mod/_streams/uno/Pump.class b/qadevOOo/bin/mod/_streams/uno/Pump.class
new file mode 100644
index 000000000000..d9b2b3bb2a43
Binary files /dev/null and b/qadevOOo/bin/mod/_streams/uno/Pump.class differ
diff --git a/qadevOOo/bin/mod/_streams/uno/package.html b/qadevOOo/bin/mod/_streams/uno/package.html
new file mode 100644
index 000000000000..aa2793cf291a
--- /dev/null
+++ b/qadevOOo/bin/mod/_streams/uno/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'stm'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleBrowseBox$1.class b/qadevOOo/bin/mod/_svtools/AccessibleBrowseBox$1.class
new file mode 100644
index 000000000000..9e06c6f12b48
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleBrowseBox$1.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleBrowseBox.class b/qadevOOo/bin/mod/_svtools/AccessibleBrowseBox.class
new file mode 100644
index 000000000000..4a5b36c137d2
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleBrowseBox.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxHeaderBar$1.class b/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxHeaderBar$1.class
new file mode 100644
index 000000000000..ceda5ce66bd7
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxHeaderBar$1.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxHeaderBar.class b/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxHeaderBar.class
new file mode 100644
index 000000000000..08b9b0ab1dd3
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxHeaderBar.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxHeaderCell$1.class b/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxHeaderCell$1.class
new file mode 100644
index 000000000000..41e731747e08
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxHeaderCell$1.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxHeaderCell.class b/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxHeaderCell.class
new file mode 100644
index 000000000000..5ac5d3b1b55f
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxHeaderCell.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxTable$1.class b/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxTable$1.class
new file mode 100644
index 000000000000..cd2969d597c5
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxTable$1.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxTable.class b/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxTable.class
new file mode 100644
index 000000000000..a5510016f051
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxTable.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxTableCell$1.class b/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxTableCell$1.class
new file mode 100644
index 000000000000..2454bd5c46bb
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxTableCell$1.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxTableCell.class b/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxTableCell.class
new file mode 100644
index 000000000000..0c416ecba60a
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleBrowseBoxTableCell.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleIconChoiceCtrl$1.class b/qadevOOo/bin/mod/_svtools/AccessibleIconChoiceCtrl$1.class
new file mode 100644
index 000000000000..bd77c0cfc363
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleIconChoiceCtrl$1.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleIconChoiceCtrl.class b/qadevOOo/bin/mod/_svtools/AccessibleIconChoiceCtrl.class
new file mode 100644
index 000000000000..200309af3060
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleIconChoiceCtrl.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleIconChoiceCtrlEntry$1.class b/qadevOOo/bin/mod/_svtools/AccessibleIconChoiceCtrlEntry$1.class
new file mode 100644
index 000000000000..e08d8507e355
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleIconChoiceCtrlEntry$1.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleIconChoiceCtrlEntry.class b/qadevOOo/bin/mod/_svtools/AccessibleIconChoiceCtrlEntry.class
new file mode 100644
index 000000000000..e0c18ed4f70d
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleIconChoiceCtrlEntry.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleTabBar$1.class b/qadevOOo/bin/mod/_svtools/AccessibleTabBar$1.class
new file mode 100644
index 000000000000..45d6e30dcd58
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleTabBar$1.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleTabBar.class b/qadevOOo/bin/mod/_svtools/AccessibleTabBar.class
new file mode 100644
index 000000000000..49e9d95df6f9
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleTabBar.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleTabBarPage$1.class b/qadevOOo/bin/mod/_svtools/AccessibleTabBarPage$1.class
new file mode 100644
index 000000000000..5424b13e15e1
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleTabBarPage$1.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleTabBarPage.class b/qadevOOo/bin/mod/_svtools/AccessibleTabBarPage.class
new file mode 100644
index 000000000000..9717cc0131f2
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleTabBarPage.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleTabBarPageList$1.class b/qadevOOo/bin/mod/_svtools/AccessibleTabBarPageList$1.class
new file mode 100644
index 000000000000..4ae9f190e245
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleTabBarPageList$1.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleTabBarPageList.class b/qadevOOo/bin/mod/_svtools/AccessibleTabBarPageList.class
new file mode 100644
index 000000000000..6325081e1810
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleTabBarPageList.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleTreeListBox$1.class b/qadevOOo/bin/mod/_svtools/AccessibleTreeListBox$1.class
new file mode 100644
index 000000000000..9996b5173d2e
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleTreeListBox$1.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleTreeListBox.class b/qadevOOo/bin/mod/_svtools/AccessibleTreeListBox.class
new file mode 100644
index 000000000000..3491552330a6
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleTreeListBox.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleTreeListBoxEntry$1.class b/qadevOOo/bin/mod/_svtools/AccessibleTreeListBoxEntry$1.class
new file mode 100644
index 000000000000..e871f87337de
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleTreeListBoxEntry$1.class differ
diff --git a/qadevOOo/bin/mod/_svtools/AccessibleTreeListBoxEntry.class b/qadevOOo/bin/mod/_svtools/AccessibleTreeListBoxEntry.class
new file mode 100644
index 000000000000..d6a5fd6dd6b1
Binary files /dev/null and b/qadevOOo/bin/mod/_svtools/AccessibleTreeListBoxEntry.class differ
diff --git a/qadevOOo/bin/mod/_svx/AccessibleControlShape$1.class b/qadevOOo/bin/mod/_svx/AccessibleControlShape$1.class
new file mode 100644
index 000000000000..c3f02e9b4eb5
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/AccessibleControlShape$1.class differ
diff --git a/qadevOOo/bin/mod/_svx/AccessibleControlShape.class b/qadevOOo/bin/mod/_svx/AccessibleControlShape.class
new file mode 100644
index 000000000000..1cfb5b3717f9
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/AccessibleControlShape.class differ
diff --git a/qadevOOo/bin/mod/_svx/AccessibleEditableTextPara$1.class b/qadevOOo/bin/mod/_svx/AccessibleEditableTextPara$1.class
new file mode 100644
index 000000000000..6362441a0dc4
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/AccessibleEditableTextPara$1.class differ
diff --git a/qadevOOo/bin/mod/_svx/AccessibleEditableTextPara.class b/qadevOOo/bin/mod/_svx/AccessibleEditableTextPara.class
new file mode 100644
index 000000000000..fd5174dfa89d
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/AccessibleEditableTextPara.class differ
diff --git a/qadevOOo/bin/mod/_svx/AccessibleGraphicShape$1.class b/qadevOOo/bin/mod/_svx/AccessibleGraphicShape$1.class
new file mode 100644
index 000000000000..9bd16aa7ccab
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/AccessibleGraphicShape$1.class differ
diff --git a/qadevOOo/bin/mod/_svx/AccessibleGraphicShape.class b/qadevOOo/bin/mod/_svx/AccessibleGraphicShape.class
new file mode 100644
index 000000000000..b024ab190001
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/AccessibleGraphicShape.class differ
diff --git a/qadevOOo/bin/mod/_svx/AccessibleOLEShape$1.class b/qadevOOo/bin/mod/_svx/AccessibleOLEShape$1.class
new file mode 100644
index 000000000000..cba26279c388
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/AccessibleOLEShape$1.class differ
diff --git a/qadevOOo/bin/mod/_svx/AccessibleOLEShape.class b/qadevOOo/bin/mod/_svx/AccessibleOLEShape.class
new file mode 100644
index 000000000000..acd6651beda9
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/AccessibleOLEShape.class differ
diff --git a/qadevOOo/bin/mod/_svx/AccessiblePageShape$1.class b/qadevOOo/bin/mod/_svx/AccessiblePageShape$1.class
new file mode 100644
index 000000000000..c6da86cc1b5d
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/AccessiblePageShape$1.class differ
diff --git a/qadevOOo/bin/mod/_svx/AccessiblePageShape.class b/qadevOOo/bin/mod/_svx/AccessiblePageShape.class
new file mode 100644
index 000000000000..2a3f19db64cb
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/AccessiblePageShape.class differ
diff --git a/qadevOOo/bin/mod/_svx/AccessiblePresentationGraphicShape$1.class b/qadevOOo/bin/mod/_svx/AccessiblePresentationGraphicShape$1.class
new file mode 100644
index 000000000000..5c5b6f357989
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/AccessiblePresentationGraphicShape$1.class differ
diff --git a/qadevOOo/bin/mod/_svx/AccessiblePresentationGraphicShape.class b/qadevOOo/bin/mod/_svx/AccessiblePresentationGraphicShape.class
new file mode 100644
index 000000000000..9c93d69ae55e
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/AccessiblePresentationGraphicShape.class differ
diff --git a/qadevOOo/bin/mod/_svx/AccessiblePresentationOLEShape$1.class b/qadevOOo/bin/mod/_svx/AccessiblePresentationOLEShape$1.class
new file mode 100644
index 000000000000..91a63e546cb2
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/AccessiblePresentationOLEShape$1.class differ
diff --git a/qadevOOo/bin/mod/_svx/AccessiblePresentationOLEShape.class b/qadevOOo/bin/mod/_svx/AccessiblePresentationOLEShape.class
new file mode 100644
index 000000000000..381be24203db
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/AccessiblePresentationOLEShape.class differ
diff --git a/qadevOOo/bin/mod/_svx/AccessiblePresentationShape$1.class b/qadevOOo/bin/mod/_svx/AccessiblePresentationShape$1.class
new file mode 100644
index 000000000000..a79016e12d86
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/AccessiblePresentationShape$1.class differ
diff --git a/qadevOOo/bin/mod/_svx/AccessiblePresentationShape.class b/qadevOOo/bin/mod/_svx/AccessiblePresentationShape.class
new file mode 100644
index 000000000000..94aeeb712d71
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/AccessiblePresentationShape.class differ
diff --git a/qadevOOo/bin/mod/_svx/AccessibleShape$1.class b/qadevOOo/bin/mod/_svx/AccessibleShape$1.class
new file mode 100644
index 000000000000..fffa025df61f
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/AccessibleShape$1.class differ
diff --git a/qadevOOo/bin/mod/_svx/AccessibleShape.class b/qadevOOo/bin/mod/_svx/AccessibleShape.class
new file mode 100644
index 000000000000..6109eb59130a
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/AccessibleShape.class differ
diff --git a/qadevOOo/bin/mod/_svx/GraphicExporter$1.class b/qadevOOo/bin/mod/_svx/GraphicExporter$1.class
new file mode 100644
index 000000000000..98b78059efb1
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/GraphicExporter$1.class differ
diff --git a/qadevOOo/bin/mod/_svx/GraphicExporter.class b/qadevOOo/bin/mod/_svx/GraphicExporter.class
new file mode 100644
index 000000000000..418d2b87ea8b
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/GraphicExporter.class differ
diff --git a/qadevOOo/bin/mod/_svx/SvxDrawPage.class b/qadevOOo/bin/mod/_svx/SvxDrawPage.class
new file mode 100644
index 000000000000..baf3f7dc9e95
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/SvxDrawPage.class differ
diff --git a/qadevOOo/bin/mod/_svx/SvxGraphCtrlAccessibleContext$1.class b/qadevOOo/bin/mod/_svx/SvxGraphCtrlAccessibleContext$1.class
new file mode 100644
index 000000000000..13794bd3d645
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/SvxGraphCtrlAccessibleContext$1.class differ
diff --git a/qadevOOo/bin/mod/_svx/SvxGraphCtrlAccessibleContext.class b/qadevOOo/bin/mod/_svx/SvxGraphCtrlAccessibleContext.class
new file mode 100644
index 000000000000..ac42bdbd9803
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/SvxGraphCtrlAccessibleContext.class differ
diff --git a/qadevOOo/bin/mod/_svx/SvxGraphicObject.class b/qadevOOo/bin/mod/_svx/SvxGraphicObject.class
new file mode 100644
index 000000000000..1aaec110643f
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/SvxGraphicObject.class differ
diff --git a/qadevOOo/bin/mod/_svx/SvxShape.class b/qadevOOo/bin/mod/_svx/SvxShape.class
new file mode 100644
index 000000000000..88345c43955f
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/SvxShape.class differ
diff --git a/qadevOOo/bin/mod/_svx/SvxShapeCircle.class b/qadevOOo/bin/mod/_svx/SvxShapeCircle.class
new file mode 100644
index 000000000000..ac2cba0d0f95
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/SvxShapeCircle.class differ
diff --git a/qadevOOo/bin/mod/_svx/SvxShapeCollection.class b/qadevOOo/bin/mod/_svx/SvxShapeCollection.class
new file mode 100644
index 000000000000..2c931685722e
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/SvxShapeCollection.class differ
diff --git a/qadevOOo/bin/mod/_svx/SvxShapeConnector.class b/qadevOOo/bin/mod/_svx/SvxShapeConnector.class
new file mode 100644
index 000000000000..1d2c5ba04499
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/SvxShapeConnector.class differ
diff --git a/qadevOOo/bin/mod/_svx/SvxShapeControl.class b/qadevOOo/bin/mod/_svx/SvxShapeControl.class
new file mode 100644
index 000000000000..1c54475067fc
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/SvxShapeControl.class differ
diff --git a/qadevOOo/bin/mod/_svx/SvxShapeDimensioning.class b/qadevOOo/bin/mod/_svx/SvxShapeDimensioning.class
new file mode 100644
index 000000000000..c2e4ff1a2eb5
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/SvxShapeDimensioning.class differ
diff --git a/qadevOOo/bin/mod/_svx/SvxShapeGroup.class b/qadevOOo/bin/mod/_svx/SvxShapeGroup.class
new file mode 100644
index 000000000000..6581646d2409
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/SvxShapeGroup.class differ
diff --git a/qadevOOo/bin/mod/_svx/SvxShapePolyPolygon.class b/qadevOOo/bin/mod/_svx/SvxShapePolyPolygon.class
new file mode 100644
index 000000000000..eec4a3d2d2a4
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/SvxShapePolyPolygon.class differ
diff --git a/qadevOOo/bin/mod/_svx/SvxShapePolyPolygonBezier.class b/qadevOOo/bin/mod/_svx/SvxShapePolyPolygonBezier.class
new file mode 100644
index 000000000000..f507b2989a3e
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/SvxShapePolyPolygonBezier.class differ
diff --git a/qadevOOo/bin/mod/_svx/SvxUnoNumberingRules.class b/qadevOOo/bin/mod/_svx/SvxUnoNumberingRules.class
new file mode 100644
index 000000000000..4f76903f434f
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/SvxUnoNumberingRules.class differ
diff --git a/qadevOOo/bin/mod/_svx/SvxUnoText.class b/qadevOOo/bin/mod/_svx/SvxUnoText.class
new file mode 100644
index 000000000000..ba3aa2a394fe
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/SvxUnoText.class differ
diff --git a/qadevOOo/bin/mod/_svx/SvxUnoTextContent.class b/qadevOOo/bin/mod/_svx/SvxUnoTextContent.class
new file mode 100644
index 000000000000..da1fae749d83
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/SvxUnoTextContent.class differ
diff --git a/qadevOOo/bin/mod/_svx/SvxUnoTextContentEnum.class b/qadevOOo/bin/mod/_svx/SvxUnoTextContentEnum.class
new file mode 100644
index 000000000000..2cb2daed589d
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/SvxUnoTextContentEnum.class differ
diff --git a/qadevOOo/bin/mod/_svx/SvxUnoTextCursor.class b/qadevOOo/bin/mod/_svx/SvxUnoTextCursor.class
new file mode 100644
index 000000000000..ccb46b0474b5
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/SvxUnoTextCursor.class differ
diff --git a/qadevOOo/bin/mod/_svx/SvxUnoTextField.class b/qadevOOo/bin/mod/_svx/SvxUnoTextField.class
new file mode 100644
index 000000000000..bfd5eb5e389f
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/SvxUnoTextField.class differ
diff --git a/qadevOOo/bin/mod/_svx/SvxUnoTextRange.class b/qadevOOo/bin/mod/_svx/SvxUnoTextRange.class
new file mode 100644
index 000000000000..47bc6151c8bb
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/SvxUnoTextRange.class differ
diff --git a/qadevOOo/bin/mod/_svx/SvxUnoTextRangeEnumeration.class b/qadevOOo/bin/mod/_svx/SvxUnoTextRangeEnumeration.class
new file mode 100644
index 000000000000..bee69dba16bd
Binary files /dev/null and b/qadevOOo/bin/mod/_svx/SvxUnoTextRangeEnumeration.class differ
diff --git a/qadevOOo/bin/mod/_svx/package.html b/qadevOOo/bin/mod/_svx/package.html
new file mode 100644
index 000000000000..a4961d2bf7b6
--- /dev/null
+++ b/qadevOOo/bin/mod/_svx/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'svx'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_sw/CharacterStyle.class b/qadevOOo/bin/mod/_sw/CharacterStyle.class
new file mode 100644
index 000000000000..a0981ff97fd2
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/CharacterStyle.class differ
diff --git a/qadevOOo/bin/mod/_sw/ConditionalParagraphStyle.class b/qadevOOo/bin/mod/_sw/ConditionalParagraphStyle.class
new file mode 100644
index 000000000000..fedae66d5360
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/ConditionalParagraphStyle.class differ
diff --git a/qadevOOo/bin/mod/_sw/DocumentSettings.class b/qadevOOo/bin/mod/_sw/DocumentSettings.class
new file mode 100644
index 000000000000..3e5ebd398c57
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/DocumentSettings.class differ
diff --git a/qadevOOo/bin/mod/_sw/PageStyle.class b/qadevOOo/bin/mod/_sw/PageStyle.class
new file mode 100644
index 000000000000..488a9deb508f
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/PageStyle.class differ
diff --git a/qadevOOo/bin/mod/_sw/ParagraphStyle.class b/qadevOOo/bin/mod/_sw/ParagraphStyle.class
new file mode 100644
index 000000000000..648585fd4c1c
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/ParagraphStyle.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleDocumentPageView$1.class b/qadevOOo/bin/mod/_sw/SwAccessibleDocumentPageView$1.class
new file mode 100644
index 000000000000..bafa59c6a1ca
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleDocumentPageView$1.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleDocumentPageView.class b/qadevOOo/bin/mod/_sw/SwAccessibleDocumentPageView.class
new file mode 100644
index 000000000000..e995b6b48cd4
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleDocumentPageView.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleDocumentView$1.class b/qadevOOo/bin/mod/_sw/SwAccessibleDocumentView$1.class
new file mode 100644
index 000000000000..d9757d9fc0c3
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleDocumentView$1.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleDocumentView.class b/qadevOOo/bin/mod/_sw/SwAccessibleDocumentView.class
new file mode 100644
index 000000000000..c98159124d5f
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleDocumentView.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleEndnoteView$1.class b/qadevOOo/bin/mod/_sw/SwAccessibleEndnoteView$1.class
new file mode 100644
index 000000000000..b1ac9edb6cde
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleEndnoteView$1.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleEndnoteView.class b/qadevOOo/bin/mod/_sw/SwAccessibleEndnoteView.class
new file mode 100644
index 000000000000..f8377f7f4e3c
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleEndnoteView.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleFooterView$1.class b/qadevOOo/bin/mod/_sw/SwAccessibleFooterView$1.class
new file mode 100644
index 000000000000..f1e2a61c2b8b
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleFooterView$1.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleFooterView.class b/qadevOOo/bin/mod/_sw/SwAccessibleFooterView.class
new file mode 100644
index 000000000000..bfe3205ea0bb
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleFooterView.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleFootnoteView$1.class b/qadevOOo/bin/mod/_sw/SwAccessibleFootnoteView$1.class
new file mode 100644
index 000000000000..db57ca380dda
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleFootnoteView$1.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleFootnoteView.class b/qadevOOo/bin/mod/_sw/SwAccessibleFootnoteView.class
new file mode 100644
index 000000000000..335325fc1184
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleFootnoteView.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleHeaderView$1.class b/qadevOOo/bin/mod/_sw/SwAccessibleHeaderView$1.class
new file mode 100644
index 000000000000..a37992322771
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleHeaderView$1.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleHeaderView.class b/qadevOOo/bin/mod/_sw/SwAccessibleHeaderView.class
new file mode 100644
index 000000000000..8fe364d658ea
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleHeaderView.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessiblePageView$1.class b/qadevOOo/bin/mod/_sw/SwAccessiblePageView$1.class
new file mode 100644
index 000000000000..0925915e545f
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessiblePageView$1.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessiblePageView.class b/qadevOOo/bin/mod/_sw/SwAccessiblePageView.class
new file mode 100644
index 000000000000..3f71a9e1bc31
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessiblePageView.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleParagraphView$1.class b/qadevOOo/bin/mod/_sw/SwAccessibleParagraphView$1.class
new file mode 100644
index 000000000000..6fd63c6c31e3
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleParagraphView$1.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleParagraphView.class b/qadevOOo/bin/mod/_sw/SwAccessibleParagraphView.class
new file mode 100644
index 000000000000..5dd2941e8207
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleParagraphView.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleTableCellView$1.class b/qadevOOo/bin/mod/_sw/SwAccessibleTableCellView$1.class
new file mode 100644
index 000000000000..6ec90ec53dbe
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleTableCellView$1.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleTableCellView.class b/qadevOOo/bin/mod/_sw/SwAccessibleTableCellView.class
new file mode 100644
index 000000000000..a348c119efc1
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleTableCellView.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleTableView$1.class b/qadevOOo/bin/mod/_sw/SwAccessibleTableView$1.class
new file mode 100644
index 000000000000..6ff335d448b9
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleTableView$1.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleTableView.class b/qadevOOo/bin/mod/_sw/SwAccessibleTableView.class
new file mode 100644
index 000000000000..30fa7d1c5f11
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleTableView.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleTextEmbeddedObject$1.class b/qadevOOo/bin/mod/_sw/SwAccessibleTextEmbeddedObject$1.class
new file mode 100644
index 000000000000..a6d8fafa5a20
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleTextEmbeddedObject$1.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleTextEmbeddedObject.class b/qadevOOo/bin/mod/_sw/SwAccessibleTextEmbeddedObject.class
new file mode 100644
index 000000000000..78298cbcb2e4
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleTextEmbeddedObject.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleTextFrameView$1.class b/qadevOOo/bin/mod/_sw/SwAccessibleTextFrameView$1.class
new file mode 100644
index 000000000000..9caa9b1c42c5
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleTextFrameView$1.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleTextFrameView.class b/qadevOOo/bin/mod/_sw/SwAccessibleTextFrameView.class
new file mode 100644
index 000000000000..dde831461700
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleTextFrameView.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleTextGraphicObject$1.class b/qadevOOo/bin/mod/_sw/SwAccessibleTextGraphicObject$1.class
new file mode 100644
index 000000000000..6219d68de322
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleTextGraphicObject$1.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwAccessibleTextGraphicObject.class b/qadevOOo/bin/mod/_sw/SwAccessibleTextGraphicObject.class
new file mode 100644
index 000000000000..711c86a914d8
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwAccessibleTextGraphicObject.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXAutoTextContainer.class b/qadevOOo/bin/mod/_sw/SwXAutoTextContainer.class
new file mode 100644
index 000000000000..e16437d3aaf3
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXAutoTextContainer.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXAutoTextEntry.class b/qadevOOo/bin/mod/_sw/SwXAutoTextEntry.class
new file mode 100644
index 000000000000..9750c01afe26
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXAutoTextEntry.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXAutoTextGroup.class b/qadevOOo/bin/mod/_sw/SwXAutoTextGroup.class
new file mode 100644
index 000000000000..a45b3fea5ce9
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXAutoTextGroup.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXBodyText.class b/qadevOOo/bin/mod/_sw/SwXBodyText.class
new file mode 100644
index 000000000000..5e89148bc38b
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXBodyText.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXBookmark.class b/qadevOOo/bin/mod/_sw/SwXBookmark.class
new file mode 100644
index 000000000000..938fed0e0071
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXBookmark.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXBookmarks.class b/qadevOOo/bin/mod/_sw/SwXBookmarks.class
new file mode 100644
index 000000000000..8a2b9170de57
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXBookmarks.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXCell.class b/qadevOOo/bin/mod/_sw/SwXCell.class
new file mode 100644
index 000000000000..f9ab25ea2a28
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXCell.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXCellRange.class b/qadevOOo/bin/mod/_sw/SwXCellRange.class
new file mode 100644
index 000000000000..9b18dc325fe6
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXCellRange.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXChapterNumbering.class b/qadevOOo/bin/mod/_sw/SwXChapterNumbering.class
new file mode 100644
index 000000000000..74dc286248d9
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXChapterNumbering.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXDocumentIndex.class b/qadevOOo/bin/mod/_sw/SwXDocumentIndex.class
new file mode 100644
index 000000000000..02b0c282f6dc
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXDocumentIndex.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXDocumentIndexMark.class b/qadevOOo/bin/mod/_sw/SwXDocumentIndexMark.class
new file mode 100644
index 000000000000..35aaa5fc21e9
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXDocumentIndexMark.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXDocumentIndexes.class b/qadevOOo/bin/mod/_sw/SwXDocumentIndexes.class
new file mode 100644
index 000000000000..1b96906012a0
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXDocumentIndexes.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXDrawPage.class b/qadevOOo/bin/mod/_sw/SwXDrawPage.class
new file mode 100644
index 000000000000..f13dc0fce860
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXDrawPage.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXEndnoteProperties.class b/qadevOOo/bin/mod/_sw/SwXEndnoteProperties.class
new file mode 100644
index 000000000000..3e2b6db847b8
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXEndnoteProperties.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXFieldEnumeration.class b/qadevOOo/bin/mod/_sw/SwXFieldEnumeration.class
new file mode 100644
index 000000000000..a49cea2ccd2f
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXFieldEnumeration.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXFieldMaster.class b/qadevOOo/bin/mod/_sw/SwXFieldMaster.class
new file mode 100644
index 000000000000..9d5442ff24b7
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXFieldMaster.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXFootnote.class b/qadevOOo/bin/mod/_sw/SwXFootnote.class
new file mode 100644
index 000000000000..9c613e40df74
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXFootnote.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXFootnoteProperties.class b/qadevOOo/bin/mod/_sw/SwXFootnoteProperties.class
new file mode 100644
index 000000000000..e2b2fd18ca51
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXFootnoteProperties.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXFootnoteText.class b/qadevOOo/bin/mod/_sw/SwXFootnoteText.class
new file mode 100644
index 000000000000..2fbaf17f393a
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXFootnoteText.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXFootnotes.class b/qadevOOo/bin/mod/_sw/SwXFootnotes.class
new file mode 100644
index 000000000000..47026c4e7865
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXFootnotes.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXFrames.class b/qadevOOo/bin/mod/_sw/SwXFrames.class
new file mode 100644
index 000000000000..dcd5a9a77089
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXFrames.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXHeadFootText.class b/qadevOOo/bin/mod/_sw/SwXHeadFootText.class
new file mode 100644
index 000000000000..41852fd4f130
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXHeadFootText.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXLineNumberingProperties.class b/qadevOOo/bin/mod/_sw/SwXLineNumberingProperties.class
new file mode 100644
index 000000000000..0bb6d1cad3dd
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXLineNumberingProperties.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXMailMerge.class b/qadevOOo/bin/mod/_sw/SwXMailMerge.class
new file mode 100644
index 000000000000..e217394f5ae2
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXMailMerge.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXModule.class b/qadevOOo/bin/mod/_sw/SwXModule.class
new file mode 100644
index 000000000000..ed9bc165dd5a
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXModule.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXNumberingRules.class b/qadevOOo/bin/mod/_sw/SwXNumberingRules.class
new file mode 100644
index 000000000000..c92526a40c3d
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXNumberingRules.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXParagraph.class b/qadevOOo/bin/mod/_sw/SwXParagraph.class
new file mode 100644
index 000000000000..c9e25de22b11
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXParagraph.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXParagraphEnumeration.class b/qadevOOo/bin/mod/_sw/SwXParagraphEnumeration.class
new file mode 100644
index 000000000000..09fd14c8fe9f
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXParagraphEnumeration.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXPrintSettings.class b/qadevOOo/bin/mod/_sw/SwXPrintSettings.class
new file mode 100644
index 000000000000..f4fea0ccbd13
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXPrintSettings.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXPropertySet.class b/qadevOOo/bin/mod/_sw/SwXPropertySet.class
new file mode 100644
index 000000000000..8fb80ccddedd
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXPropertySet.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXPropertySetInfo.class b/qadevOOo/bin/mod/_sw/SwXPropertySetInfo.class
new file mode 100644
index 000000000000..2e80c4bd9910
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXPropertySetInfo.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXReferenceMark.class b/qadevOOo/bin/mod/_sw/SwXReferenceMark.class
new file mode 100644
index 000000000000..f1e852dbff35
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXReferenceMark.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXReferenceMarks.class b/qadevOOo/bin/mod/_sw/SwXReferenceMarks.class
new file mode 100644
index 000000000000..70bcc9ff7f5b
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXReferenceMarks.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXShape.class b/qadevOOo/bin/mod/_sw/SwXShape.class
new file mode 100644
index 000000000000..fc5568f09b86
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXShape.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXStyle.class b/qadevOOo/bin/mod/_sw/SwXStyle.class
new file mode 100644
index 000000000000..a95331fcd8ca
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXStyle.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXStyleFamilies.class b/qadevOOo/bin/mod/_sw/SwXStyleFamilies.class
new file mode 100644
index 000000000000..cac43242e2e8
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXStyleFamilies.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXStyleFamily.class b/qadevOOo/bin/mod/_sw/SwXStyleFamily.class
new file mode 100644
index 000000000000..c9450cab77e2
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXStyleFamily.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTableCellText.class b/qadevOOo/bin/mod/_sw/SwXTableCellText.class
new file mode 100644
index 000000000000..18a2eaddafe3
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTableCellText.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTableColumns.class b/qadevOOo/bin/mod/_sw/SwXTableColumns.class
new file mode 100644
index 000000000000..117056d42cdd
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTableColumns.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTableRows.class b/qadevOOo/bin/mod/_sw/SwXTableRows.class
new file mode 100644
index 000000000000..7d319623da7c
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTableRows.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextColumns.class b/qadevOOo/bin/mod/_sw/SwXTextColumns.class
new file mode 100644
index 000000000000..f204ff0f9419
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextColumns.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextCursor$1.class b/qadevOOo/bin/mod/_sw/SwXTextCursor$1.class
new file mode 100644
index 000000000000..aec76f60bdc6
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextCursor$1.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextCursor.class b/qadevOOo/bin/mod/_sw/SwXTextCursor.class
new file mode 100644
index 000000000000..d078e617d7aa
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextCursor.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextDefaults.class b/qadevOOo/bin/mod/_sw/SwXTextDefaults.class
new file mode 100644
index 000000000000..42e8ea342cf2
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextDefaults.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextDocument.class b/qadevOOo/bin/mod/_sw/SwXTextDocument.class
new file mode 100644
index 000000000000..878df7c74ce2
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextDocument.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextEmbeddedObject.class b/qadevOOo/bin/mod/_sw/SwXTextEmbeddedObject.class
new file mode 100644
index 000000000000..5061d1350522
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextEmbeddedObject.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextEmbeddedObjects.class b/qadevOOo/bin/mod/_sw/SwXTextEmbeddedObjects.class
new file mode 100644
index 000000000000..f0c91701e4d5
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextEmbeddedObjects.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextField.class b/qadevOOo/bin/mod/_sw/SwXTextField.class
new file mode 100644
index 000000000000..15d7aa59ae09
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextField.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextFieldMasters.class b/qadevOOo/bin/mod/_sw/SwXTextFieldMasters.class
new file mode 100644
index 000000000000..88c0427742c8
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextFieldMasters.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextFieldTypes.class b/qadevOOo/bin/mod/_sw/SwXTextFieldTypes.class
new file mode 100644
index 000000000000..5777552e9b1a
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextFieldTypes.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextFrame.class b/qadevOOo/bin/mod/_sw/SwXTextFrame.class
new file mode 100644
index 000000000000..de5fb28e5609
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextFrame.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextFrameText.class b/qadevOOo/bin/mod/_sw/SwXTextFrameText.class
new file mode 100644
index 000000000000..ec42d4546507
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextFrameText.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextGraphicObject.class b/qadevOOo/bin/mod/_sw/SwXTextGraphicObject.class
new file mode 100644
index 000000000000..1738ddac8287
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextGraphicObject.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextGraphicObjects.class b/qadevOOo/bin/mod/_sw/SwXTextGraphicObjects.class
new file mode 100644
index 000000000000..4c7189309e2f
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextGraphicObjects.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextPortion.class b/qadevOOo/bin/mod/_sw/SwXTextPortion.class
new file mode 100644
index 000000000000..2d49e2b2456b
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextPortion.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextPortionEnumeration.class b/qadevOOo/bin/mod/_sw/SwXTextPortionEnumeration.class
new file mode 100644
index 000000000000..01a900a85087
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextPortionEnumeration.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextRange.class b/qadevOOo/bin/mod/_sw/SwXTextRange.class
new file mode 100644
index 000000000000..2fedac140408
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextRange.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextRanges.class b/qadevOOo/bin/mod/_sw/SwXTextRanges.class
new file mode 100644
index 000000000000..e02ef661def5
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextRanges.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextSearch.class b/qadevOOo/bin/mod/_sw/SwXTextSearch.class
new file mode 100644
index 000000000000..51e51eff2df1
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextSearch.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextSection.class b/qadevOOo/bin/mod/_sw/SwXTextSection.class
new file mode 100644
index 000000000000..7199639395f4
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextSection.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextSections.class b/qadevOOo/bin/mod/_sw/SwXTextSections.class
new file mode 100644
index 000000000000..a1d9003316dd
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextSections.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextTable$1.class b/qadevOOo/bin/mod/_sw/SwXTextTable$1.class
new file mode 100644
index 000000000000..ee1894902566
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextTable$1.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextTable.class b/qadevOOo/bin/mod/_sw/SwXTextTable.class
new file mode 100644
index 000000000000..6bd20bdf9530
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextTable.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextTableCursor.class b/qadevOOo/bin/mod/_sw/SwXTextTableCursor.class
new file mode 100644
index 000000000000..8463f0d33de3
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextTableCursor.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextTableRow.class b/qadevOOo/bin/mod/_sw/SwXTextTableRow.class
new file mode 100644
index 000000000000..d240f6e2c9f0
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextTableRow.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextTables.class b/qadevOOo/bin/mod/_sw/SwXTextTables.class
new file mode 100644
index 000000000000..81c49eaaf6c4
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextTables.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextView$1.class b/qadevOOo/bin/mod/_sw/SwXTextView$1.class
new file mode 100644
index 000000000000..e364f63e3145
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextView$1.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextView.class b/qadevOOo/bin/mod/_sw/SwXTextView.class
new file mode 100644
index 000000000000..78aeb8ff8bc4
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextView.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXTextViewCursor.class b/qadevOOo/bin/mod/_sw/SwXTextViewCursor.class
new file mode 100644
index 000000000000..353c3d183903
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXTextViewCursor.class differ
diff --git a/qadevOOo/bin/mod/_sw/SwXViewSettings.class b/qadevOOo/bin/mod/_sw/SwXViewSettings.class
new file mode 100644
index 000000000000..c5d78aadf975
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/SwXViewSettings.class differ
diff --git a/qadevOOo/bin/mod/_sw/XMLContentExporter$ContentFilterChecker.class b/qadevOOo/bin/mod/_sw/XMLContentExporter$ContentFilterChecker.class
new file mode 100644
index 000000000000..39218dfc9305
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/XMLContentExporter$ContentFilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_sw/XMLContentExporter.class b/qadevOOo/bin/mod/_sw/XMLContentExporter.class
new file mode 100644
index 000000000000..e466eda8f126
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/XMLContentExporter.class differ
diff --git a/qadevOOo/bin/mod/_sw/XMLContentImporter$1.class b/qadevOOo/bin/mod/_sw/XMLContentImporter$1.class
new file mode 100644
index 000000000000..1d36e22f8229
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/XMLContentImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_sw/XMLContentImporter.class b/qadevOOo/bin/mod/_sw/XMLContentImporter.class
new file mode 100644
index 000000000000..8838a67872ab
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/XMLContentImporter.class differ
diff --git a/qadevOOo/bin/mod/_sw/XMLExporter$FilterChecker.class b/qadevOOo/bin/mod/_sw/XMLExporter$FilterChecker.class
new file mode 100644
index 000000000000..ef0d173e46fe
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/XMLExporter$FilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_sw/XMLExporter.class b/qadevOOo/bin/mod/_sw/XMLExporter.class
new file mode 100644
index 000000000000..b7edea2dedf1
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/XMLExporter.class differ
diff --git a/qadevOOo/bin/mod/_sw/XMLImporter$1.class b/qadevOOo/bin/mod/_sw/XMLImporter$1.class
new file mode 100644
index 000000000000..12aed026b2af
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/XMLImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_sw/XMLImporter.class b/qadevOOo/bin/mod/_sw/XMLImporter.class
new file mode 100644
index 000000000000..92518ae07c78
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/XMLImporter.class differ
diff --git a/qadevOOo/bin/mod/_sw/XMLMetaExporter$MetaFilterChecker.class b/qadevOOo/bin/mod/_sw/XMLMetaExporter$MetaFilterChecker.class
new file mode 100644
index 000000000000..fee2e050961a
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/XMLMetaExporter$MetaFilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_sw/XMLMetaExporter.class b/qadevOOo/bin/mod/_sw/XMLMetaExporter.class
new file mode 100644
index 000000000000..8619bb1292f6
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/XMLMetaExporter.class differ
diff --git a/qadevOOo/bin/mod/_sw/XMLMetaImporter$1.class b/qadevOOo/bin/mod/_sw/XMLMetaImporter$1.class
new file mode 100644
index 000000000000..0dd5fb518140
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/XMLMetaImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_sw/XMLMetaImporter.class b/qadevOOo/bin/mod/_sw/XMLMetaImporter.class
new file mode 100644
index 000000000000..1d849a98fd4a
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/XMLMetaImporter.class differ
diff --git a/qadevOOo/bin/mod/_sw/XMLSettingsExporter$SettingsFilterChecker.class b/qadevOOo/bin/mod/_sw/XMLSettingsExporter$SettingsFilterChecker.class
new file mode 100644
index 000000000000..d102c14ee676
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/XMLSettingsExporter$SettingsFilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_sw/XMLSettingsExporter.class b/qadevOOo/bin/mod/_sw/XMLSettingsExporter.class
new file mode 100644
index 000000000000..5c9db24a705d
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/XMLSettingsExporter.class differ
diff --git a/qadevOOo/bin/mod/_sw/XMLSettingsImporter$1.class b/qadevOOo/bin/mod/_sw/XMLSettingsImporter$1.class
new file mode 100644
index 000000000000..2145adc83e68
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/XMLSettingsImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_sw/XMLSettingsImporter.class b/qadevOOo/bin/mod/_sw/XMLSettingsImporter.class
new file mode 100644
index 000000000000..72f31ec11674
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/XMLSettingsImporter.class differ
diff --git a/qadevOOo/bin/mod/_sw/XMLStylesExporter$FilterChecker.class b/qadevOOo/bin/mod/_sw/XMLStylesExporter$FilterChecker.class
new file mode 100644
index 000000000000..5ae3dd5577c1
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/XMLStylesExporter$FilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_sw/XMLStylesExporter.class b/qadevOOo/bin/mod/_sw/XMLStylesExporter.class
new file mode 100644
index 000000000000..b2b30b86d30e
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/XMLStylesExporter.class differ
diff --git a/qadevOOo/bin/mod/_sw/XMLStylesImporter$1.class b/qadevOOo/bin/mod/_sw/XMLStylesImporter$1.class
new file mode 100644
index 000000000000..d65a6c09d503
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/XMLStylesImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_sw/XMLStylesImporter.class b/qadevOOo/bin/mod/_sw/XMLStylesImporter.class
new file mode 100644
index 000000000000..4a177ef5ec17
Binary files /dev/null and b/qadevOOo/bin/mod/_sw/XMLStylesImporter.class differ
diff --git a/qadevOOo/bin/mod/_sw/package.html b/qadevOOo/bin/mod/_sw/package.html
new file mode 100644
index 000000000000..3be3b188f740
--- /dev/null
+++ b/qadevOOo/bin/mod/_sw/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'sw'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_sysdtrans/SystemClipboard.class b/qadevOOo/bin/mod/_sysdtrans/SystemClipboard.class
new file mode 100644
index 000000000000..0e37a772b4df
Binary files /dev/null and b/qadevOOo/bin/mod/_sysdtrans/SystemClipboard.class differ
diff --git a/qadevOOo/bin/mod/_sysdtrans/package.html b/qadevOOo/bin/mod/_sysdtrans/package.html
new file mode 100644
index 000000000000..a530c6b124f5
--- /dev/null
+++ b/qadevOOo/bin/mod/_sysdtrans/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'sysdtrans'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_syssh/SystemShellExecute.class b/qadevOOo/bin/mod/_syssh/SystemShellExecute.class
new file mode 100644
index 000000000000..a986d40780e8
Binary files /dev/null and b/qadevOOo/bin/mod/_syssh/SystemShellExecute.class differ
diff --git a/qadevOOo/bin/mod/_tcv/TypeConverter.class b/qadevOOo/bin/mod/_tcv/TypeConverter.class
new file mode 100644
index 000000000000..8981c2c33d6f
Binary files /dev/null and b/qadevOOo/bin/mod/_tcv/TypeConverter.class differ
diff --git a/qadevOOo/bin/mod/_tcv/package.html b/qadevOOo/bin/mod/_tcv/package.html
new file mode 100644
index 000000000000..45007682b510
--- /dev/null
+++ b/qadevOOo/bin/mod/_tcv/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'tcv'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_tdmgr/TypeDescriptionManager.class b/qadevOOo/bin/mod/_tdmgr/TypeDescriptionManager.class
new file mode 100644
index 000000000000..ce8a596ad1cc
Binary files /dev/null and b/qadevOOo/bin/mod/_tdmgr/TypeDescriptionManager.class differ
diff --git a/qadevOOo/bin/mod/_tdmgr/package.html b/qadevOOo/bin/mod/_tdmgr/package.html
new file mode 100644
index 000000000000..277a2804590d
--- /dev/null
+++ b/qadevOOo/bin/mod/_tdmgr/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'tdmgr'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_text/DefaultNumberingProvider.class b/qadevOOo/bin/mod/_text/DefaultNumberingProvider.class
new file mode 100644
index 000000000000..3abad74c9f4e
Binary files /dev/null and b/qadevOOo/bin/mod/_text/DefaultNumberingProvider.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleButton$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleButton$1.class
new file mode 100644
index 000000000000..048c044aebc6
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleButton$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleButton.class b/qadevOOo/bin/mod/_toolkit/AccessibleButton.class
new file mode 100644
index 000000000000..444376fd08e5
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleButton.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleCheckBox$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleCheckBox$1.class
new file mode 100644
index 000000000000..d083c7f26b58
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleCheckBox$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleCheckBox.class b/qadevOOo/bin/mod/_toolkit/AccessibleCheckBox.class
new file mode 100644
index 000000000000..994f8caa5359
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleCheckBox.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleComboBox$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleComboBox$1.class
new file mode 100644
index 000000000000..efd3dd95d44f
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleComboBox$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleComboBox.class b/qadevOOo/bin/mod/_toolkit/AccessibleComboBox.class
new file mode 100644
index 000000000000..60418164ce3a
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleComboBox.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleDropDownComboBox$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleDropDownComboBox$1.class
new file mode 100644
index 000000000000..e2d240413b80
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleDropDownComboBox$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleDropDownComboBox.class b/qadevOOo/bin/mod/_toolkit/AccessibleDropDownComboBox.class
new file mode 100644
index 000000000000..eeea1d3cb2c6
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleDropDownComboBox.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleDropDownListBox$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleDropDownListBox$1.class
new file mode 100644
index 000000000000..f897266afc95
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleDropDownListBox$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleDropDownListBox.class b/qadevOOo/bin/mod/_toolkit/AccessibleDropDownListBox.class
new file mode 100644
index 000000000000..6ffeddf49a22
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleDropDownListBox.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleEdit$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleEdit$1.class
new file mode 100644
index 000000000000..341838d60e8d
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleEdit$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleEdit.class b/qadevOOo/bin/mod/_toolkit/AccessibleEdit.class
new file mode 100644
index 000000000000..06f5f1f9478c
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleEdit.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleFixedText$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleFixedText$1.class
new file mode 100644
index 000000000000..1b9ad8cc07fc
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleFixedText$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleFixedText.class b/qadevOOo/bin/mod/_toolkit/AccessibleFixedText.class
new file mode 100644
index 000000000000..a20f010d93de
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleFixedText.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleList$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleList$1.class
new file mode 100644
index 000000000000..b77be1151208
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleList$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleList.class b/qadevOOo/bin/mod/_toolkit/AccessibleList.class
new file mode 100644
index 000000000000..9072181a9f1d
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleList.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleListBox$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleListBox$1.class
new file mode 100644
index 000000000000..a5a96645486f
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleListBox$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleListBox.class b/qadevOOo/bin/mod/_toolkit/AccessibleListBox.class
new file mode 100644
index 000000000000..41dc1a150545
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleListBox.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleListItem$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleListItem$1.class
new file mode 100644
index 000000000000..712cc35af112
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleListItem$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleListItem.class b/qadevOOo/bin/mod/_toolkit/AccessibleListItem.class
new file mode 100644
index 000000000000..dc6ece14ba80
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleListItem.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleMenu$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleMenu$1.class
new file mode 100644
index 000000000000..3ffaa7cd1425
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleMenu$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleMenu.class b/qadevOOo/bin/mod/_toolkit/AccessibleMenu.class
new file mode 100644
index 000000000000..09d67729b61a
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleMenu.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleMenuBar$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleMenuBar$1.class
new file mode 100644
index 000000000000..3b5bde20b156
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleMenuBar$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleMenuBar.class b/qadevOOo/bin/mod/_toolkit/AccessibleMenuBar.class
new file mode 100644
index 000000000000..48be07c4f31f
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleMenuBar.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleMenuItem$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleMenuItem$1.class
new file mode 100644
index 000000000000..badd570f1d88
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleMenuItem$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleMenuItem.class b/qadevOOo/bin/mod/_toolkit/AccessibleMenuItem.class
new file mode 100644
index 000000000000..ddd319e7a8cb
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleMenuItem.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleMenuSeparator$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleMenuSeparator$1.class
new file mode 100644
index 000000000000..1a0bdc83ed3d
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleMenuSeparator$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleMenuSeparator.class b/qadevOOo/bin/mod/_toolkit/AccessibleMenuSeparator.class
new file mode 100644
index 000000000000..e48f7a5296a8
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleMenuSeparator.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessiblePopupMenu$1.class b/qadevOOo/bin/mod/_toolkit/AccessiblePopupMenu$1.class
new file mode 100644
index 000000000000..2ab428e88824
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessiblePopupMenu$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessiblePopupMenu.class b/qadevOOo/bin/mod/_toolkit/AccessiblePopupMenu.class
new file mode 100644
index 000000000000..2ac381254374
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessiblePopupMenu.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleRadioButton$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleRadioButton$1.class
new file mode 100644
index 000000000000..1bcc6bcab616
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleRadioButton$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleRadioButton.class b/qadevOOo/bin/mod/_toolkit/AccessibleRadioButton.class
new file mode 100644
index 000000000000..409d4da7aace
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleRadioButton.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleScrollBar$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleScrollBar$1.class
new file mode 100644
index 000000000000..1766661e78a6
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleScrollBar$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleScrollBar.class b/qadevOOo/bin/mod/_toolkit/AccessibleScrollBar.class
new file mode 100644
index 000000000000..85f792bfc35f
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleScrollBar.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleStatusBar$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleStatusBar$1.class
new file mode 100644
index 000000000000..084d77e5b0d0
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleStatusBar$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleStatusBar.class b/qadevOOo/bin/mod/_toolkit/AccessibleStatusBar.class
new file mode 100644
index 000000000000..617d14b081d4
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleStatusBar.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleStatusBarItem$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleStatusBarItem$1.class
new file mode 100644
index 000000000000..ba330c34d4c4
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleStatusBarItem$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleStatusBarItem.class b/qadevOOo/bin/mod/_toolkit/AccessibleStatusBarItem.class
new file mode 100644
index 000000000000..ff41b2cd8e93
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleStatusBarItem.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleTabControl$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleTabControl$1.class
new file mode 100644
index 000000000000..21d436d52937
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleTabControl$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleTabControl.class b/qadevOOo/bin/mod/_toolkit/AccessibleTabControl.class
new file mode 100644
index 000000000000..45ee85b88d53
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleTabControl.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleTabPage$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleTabPage$1.class
new file mode 100644
index 000000000000..746f8f229e14
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleTabPage$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleTabPage.class b/qadevOOo/bin/mod/_toolkit/AccessibleTabPage.class
new file mode 100644
index 000000000000..2e0fb17fe01b
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleTabPage.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleToolBox$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleToolBox$1.class
new file mode 100644
index 000000000000..b70fa51c7393
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleToolBox$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleToolBox.class b/qadevOOo/bin/mod/_toolkit/AccessibleToolBox.class
new file mode 100644
index 000000000000..5f2012d4b34a
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleToolBox.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleToolBoxItem$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleToolBoxItem$1.class
new file mode 100644
index 000000000000..595910cdb17b
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleToolBoxItem$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleToolBoxItem.class b/qadevOOo/bin/mod/_toolkit/AccessibleToolBoxItem.class
new file mode 100644
index 000000000000..cc649e9f05f8
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleToolBoxItem.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleWindow$1.class b/qadevOOo/bin/mod/_toolkit/AccessibleWindow$1.class
new file mode 100644
index 000000000000..b136e99507d6
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleWindow$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/AccessibleWindow.class b/qadevOOo/bin/mod/_toolkit/AccessibleWindow.class
new file mode 100644
index 000000000000..03d95bd7661b
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/AccessibleWindow.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/MutableTreeDataModel$XTreeDataModelListenerEvent.class b/qadevOOo/bin/mod/_toolkit/MutableTreeDataModel$XTreeDataModelListenerEvent.class
new file mode 100644
index 000000000000..acae040387ce
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/MutableTreeDataModel$XTreeDataModelListenerEvent.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/MutableTreeDataModel.class b/qadevOOo/bin/mod/_toolkit/MutableTreeDataModel.class
new file mode 100644
index 000000000000..002f6bbc0400
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/MutableTreeDataModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/MutableTreeNode$1.class b/qadevOOo/bin/mod/_toolkit/MutableTreeNode$1.class
new file mode 100644
index 000000000000..007f01cc3764
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/MutableTreeNode$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/MutableTreeNode.class b/qadevOOo/bin/mod/_toolkit/MutableTreeNode.class
new file mode 100644
index 000000000000..9fe235b07b5c
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/MutableTreeNode.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/TabController.class b/qadevOOo/bin/mod/_toolkit/TabController.class
new file mode 100644
index 000000000000..10972bee247c
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/TabController.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/TabControllerModel.class b/qadevOOo/bin/mod/_toolkit/TabControllerModel.class
new file mode 100644
index 000000000000..55d0999ebb85
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/TabControllerModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/Toolkit.class b/qadevOOo/bin/mod/_toolkit/Toolkit.class
new file mode 100644
index 000000000000..c21bf63a0377
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/Toolkit.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlButton.class b/qadevOOo/bin/mod/_toolkit/UnoControlButton.class
new file mode 100644
index 000000000000..5ffb41c051ba
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlButton.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlButtonModel.class b/qadevOOo/bin/mod/_toolkit/UnoControlButtonModel.class
new file mode 100644
index 000000000000..adf709dc8e27
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlButtonModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlCheckBox.class b/qadevOOo/bin/mod/_toolkit/UnoControlCheckBox.class
new file mode 100644
index 000000000000..fad533492033
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlCheckBox.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlCheckBoxModel.class b/qadevOOo/bin/mod/_toolkit/UnoControlCheckBoxModel.class
new file mode 100644
index 000000000000..d7c3c1928046
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlCheckBoxModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlComboBox.class b/qadevOOo/bin/mod/_toolkit/UnoControlComboBox.class
new file mode 100644
index 000000000000..58c5e04d4752
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlComboBox.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlComboBoxModel.class b/qadevOOo/bin/mod/_toolkit/UnoControlComboBoxModel.class
new file mode 100644
index 000000000000..7386e8875819
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlComboBoxModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlContainer.class b/qadevOOo/bin/mod/_toolkit/UnoControlContainer.class
new file mode 100644
index 000000000000..58c6486b18d6
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlContainer.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlContainerModel.class b/qadevOOo/bin/mod/_toolkit/UnoControlContainerModel.class
new file mode 100644
index 000000000000..efc707e321eb
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlContainerModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlCurrencyField.class b/qadevOOo/bin/mod/_toolkit/UnoControlCurrencyField.class
new file mode 100644
index 000000000000..8a3f5e6c14b5
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlCurrencyField.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlCurrencyFieldModel.class b/qadevOOo/bin/mod/_toolkit/UnoControlCurrencyFieldModel.class
new file mode 100644
index 000000000000..582225ff0f87
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlCurrencyFieldModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlDateField.class b/qadevOOo/bin/mod/_toolkit/UnoControlDateField.class
new file mode 100644
index 000000000000..bc840c98903e
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlDateField.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlDateFieldModel.class b/qadevOOo/bin/mod/_toolkit/UnoControlDateFieldModel.class
new file mode 100644
index 000000000000..4c2b4c76077f
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlDateFieldModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlDialog.class b/qadevOOo/bin/mod/_toolkit/UnoControlDialog.class
new file mode 100644
index 000000000000..b5c6fe0117ba
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlDialog.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlDialogModel.class b/qadevOOo/bin/mod/_toolkit/UnoControlDialogModel.class
new file mode 100644
index 000000000000..3e8e3a2bcd96
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlDialogModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlEdit.class b/qadevOOo/bin/mod/_toolkit/UnoControlEdit.class
new file mode 100644
index 000000000000..7cbac895859c
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlEdit.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlEditModel.class b/qadevOOo/bin/mod/_toolkit/UnoControlEditModel.class
new file mode 100644
index 000000000000..159d7a557a55
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlEditModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlFileControl.class b/qadevOOo/bin/mod/_toolkit/UnoControlFileControl.class
new file mode 100644
index 000000000000..4af2f285547c
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlFileControl.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlFileControlModel.class b/qadevOOo/bin/mod/_toolkit/UnoControlFileControlModel.class
new file mode 100644
index 000000000000..2dc2801e6db2
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlFileControlModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlFixedLineModel.class b/qadevOOo/bin/mod/_toolkit/UnoControlFixedLineModel.class
new file mode 100644
index 000000000000..218cd886ff38
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlFixedLineModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlFixedText.class b/qadevOOo/bin/mod/_toolkit/UnoControlFixedText.class
new file mode 100644
index 000000000000..d5a8f6a771c8
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlFixedText.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlFixedTextModel.class b/qadevOOo/bin/mod/_toolkit/UnoControlFixedTextModel.class
new file mode 100644
index 000000000000..07636d4103a4
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlFixedTextModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlFormattedField.class b/qadevOOo/bin/mod/_toolkit/UnoControlFormattedField.class
new file mode 100644
index 000000000000..c6307a8305c0
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlFormattedField.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlFormattedFieldModel.class b/qadevOOo/bin/mod/_toolkit/UnoControlFormattedFieldModel.class
new file mode 100644
index 000000000000..55301f288e7a
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlFormattedFieldModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlGroupBox.class b/qadevOOo/bin/mod/_toolkit/UnoControlGroupBox.class
new file mode 100644
index 000000000000..b01fba6090bc
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlGroupBox.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlGroupBoxModel.class b/qadevOOo/bin/mod/_toolkit/UnoControlGroupBoxModel.class
new file mode 100644
index 000000000000..1c9cbed9ad9a
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlGroupBoxModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlImageControl.class b/qadevOOo/bin/mod/_toolkit/UnoControlImageControl.class
new file mode 100644
index 000000000000..d9524f2d9d49
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlImageControl.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlImageControlModel.class b/qadevOOo/bin/mod/_toolkit/UnoControlImageControlModel.class
new file mode 100644
index 000000000000..a32a1cfcb80e
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlImageControlModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlListBox.class b/qadevOOo/bin/mod/_toolkit/UnoControlListBox.class
new file mode 100644
index 000000000000..5f2744c19941
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlListBox.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlListBoxModel.class b/qadevOOo/bin/mod/_toolkit/UnoControlListBoxModel.class
new file mode 100644
index 000000000000..b8bdc758d89d
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlListBoxModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlNumericField.class b/qadevOOo/bin/mod/_toolkit/UnoControlNumericField.class
new file mode 100644
index 000000000000..32ade18a02d0
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlNumericField.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlNumericFieldModel.class b/qadevOOo/bin/mod/_toolkit/UnoControlNumericFieldModel.class
new file mode 100644
index 000000000000..53a482f827c4
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlNumericFieldModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlPatternField.class b/qadevOOo/bin/mod/_toolkit/UnoControlPatternField.class
new file mode 100644
index 000000000000..ee504ec32ee9
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlPatternField.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlPatternFieldModel.class b/qadevOOo/bin/mod/_toolkit/UnoControlPatternFieldModel.class
new file mode 100644
index 000000000000..6eb67fece10a
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlPatternFieldModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlProgressBarModel.class b/qadevOOo/bin/mod/_toolkit/UnoControlProgressBarModel.class
new file mode 100644
index 000000000000..ad4b1bf0d5fb
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlProgressBarModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlRadioButton.class b/qadevOOo/bin/mod/_toolkit/UnoControlRadioButton.class
new file mode 100644
index 000000000000..d0f787a715d6
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlRadioButton.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlRadioButtonModel.class b/qadevOOo/bin/mod/_toolkit/UnoControlRadioButtonModel.class
new file mode 100644
index 000000000000..b0661d7b1e79
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlRadioButtonModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlScrollBarModel.class b/qadevOOo/bin/mod/_toolkit/UnoControlScrollBarModel.class
new file mode 100644
index 000000000000..19e92e3997cd
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlScrollBarModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlTimeField.class b/qadevOOo/bin/mod/_toolkit/UnoControlTimeField.class
new file mode 100644
index 000000000000..ec321e52c1d8
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlTimeField.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoControlTimeFieldModel.class b/qadevOOo/bin/mod/_toolkit/UnoControlTimeFieldModel.class
new file mode 100644
index 000000000000..ca0804839432
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoControlTimeFieldModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoScrollBarControl.class b/qadevOOo/bin/mod/_toolkit/UnoScrollBarControl.class
new file mode 100644
index 000000000000..76504de895cb
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoScrollBarControl.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoSpinButtonControl.class b/qadevOOo/bin/mod/_toolkit/UnoSpinButtonControl.class
new file mode 100644
index 000000000000..1df3f7147530
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoSpinButtonControl.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoSpinButtonControlModel.class b/qadevOOo/bin/mod/_toolkit/UnoSpinButtonControlModel.class
new file mode 100644
index 000000000000..ddbfea43f4db
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoSpinButtonControlModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoTreeControl$1.class b/qadevOOo/bin/mod/_toolkit/UnoTreeControl$1.class
new file mode 100644
index 000000000000..4800be8f59f3
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoTreeControl$1.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoTreeControl$execurteDialog.class b/qadevOOo/bin/mod/_toolkit/UnoTreeControl$execurteDialog.class
new file mode 100644
index 000000000000..c3af9b312875
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoTreeControl$execurteDialog.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoTreeControl.class b/qadevOOo/bin/mod/_toolkit/UnoTreeControl.class
new file mode 100644
index 000000000000..c23bd55f87c6
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoTreeControl.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/UnoTreeModel.class b/qadevOOo/bin/mod/_toolkit/UnoTreeModel.class
new file mode 100644
index 000000000000..165ca63066fc
Binary files /dev/null and b/qadevOOo/bin/mod/_toolkit/UnoTreeModel.class differ
diff --git a/qadevOOo/bin/mod/_toolkit/package.html b/qadevOOo/bin/mod/_toolkit/package.html
new file mode 100644
index 000000000000..1ab78320541b
--- /dev/null
+++ b/qadevOOo/bin/mod/_toolkit/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'toolkit'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_typeconverter/uno/TypeConverter.class b/qadevOOo/bin/mod/_typeconverter/uno/TypeConverter.class
new file mode 100644
index 000000000000..54a18cb63513
Binary files /dev/null and b/qadevOOo/bin/mod/_typeconverter/uno/TypeConverter.class differ
diff --git a/qadevOOo/bin/mod/_typeconverter/uno/package.html b/qadevOOo/bin/mod/_typeconverter/uno/package.html
new file mode 100644
index 000000000000..45007682b510
--- /dev/null
+++ b/qadevOOo/bin/mod/_typeconverter/uno/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'tcv'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_typemgr/uno/TypeDescriptionManager.class b/qadevOOo/bin/mod/_typemgr/uno/TypeDescriptionManager.class
new file mode 100644
index 000000000000..94d5b2ab9890
Binary files /dev/null and b/qadevOOo/bin/mod/_typemgr/uno/TypeDescriptionManager.class differ
diff --git a/qadevOOo/bin/mod/_typemgr/uno/package.html b/qadevOOo/bin/mod/_typemgr/uno/package.html
new file mode 100644
index 000000000000..277a2804590d
--- /dev/null
+++ b/qadevOOo/bin/mod/_typemgr/uno/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'tdmgr'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_ucb/UcbContentProviderProxyFactory.class b/qadevOOo/bin/mod/_ucb/UcbContentProviderProxyFactory.class
new file mode 100644
index 000000000000..2ebb2bab368c
Binary files /dev/null and b/qadevOOo/bin/mod/_ucb/UcbContentProviderProxyFactory.class differ
diff --git a/qadevOOo/bin/mod/_ucb/UcbPropertiesManager.class b/qadevOOo/bin/mod/_ucb/UcbPropertiesManager.class
new file mode 100644
index 000000000000..f59c7941f671
Binary files /dev/null and b/qadevOOo/bin/mod/_ucb/UcbPropertiesManager.class differ
diff --git a/qadevOOo/bin/mod/_ucb/UcbStore.class b/qadevOOo/bin/mod/_ucb/UcbStore.class
new file mode 100644
index 000000000000..c98c62eae089
Binary files /dev/null and b/qadevOOo/bin/mod/_ucb/UcbStore.class differ
diff --git a/qadevOOo/bin/mod/_ucb/UniversalContentBroker.class b/qadevOOo/bin/mod/_ucb/UniversalContentBroker.class
new file mode 100644
index 000000000000..7ee6489db313
Binary files /dev/null and b/qadevOOo/bin/mod/_ucb/UniversalContentBroker.class differ
diff --git a/qadevOOo/bin/mod/_ucpchelp/CHelpContentProvider.class b/qadevOOo/bin/mod/_ucpchelp/CHelpContentProvider.class
new file mode 100644
index 000000000000..a55ed5546825
Binary files /dev/null and b/qadevOOo/bin/mod/_ucpchelp/CHelpContentProvider.class differ
diff --git a/qadevOOo/bin/mod/_ucpdav/WebDAVContentProvider.class b/qadevOOo/bin/mod/_ucpdav/WebDAVContentProvider.class
new file mode 100644
index 000000000000..5d7529da6873
Binary files /dev/null and b/qadevOOo/bin/mod/_ucpdav/WebDAVContentProvider.class differ
diff --git a/qadevOOo/bin/mod/_ucpfile/FileProvider.class b/qadevOOo/bin/mod/_ucpfile/FileProvider.class
new file mode 100644
index 000000000000..98c787825fb4
Binary files /dev/null and b/qadevOOo/bin/mod/_ucpfile/FileProvider.class differ
diff --git a/qadevOOo/bin/mod/_ucpftp/FTPContentProvider.class b/qadevOOo/bin/mod/_ucpftp/FTPContentProvider.class
new file mode 100644
index 000000000000..c1d75e3d7d4d
Binary files /dev/null and b/qadevOOo/bin/mod/_ucpftp/FTPContentProvider.class differ
diff --git a/qadevOOo/bin/mod/_ucphier/HierarchyContentProvider.class b/qadevOOo/bin/mod/_ucphier/HierarchyContentProvider.class
new file mode 100644
index 000000000000..e939f7e1a4ae
Binary files /dev/null and b/qadevOOo/bin/mod/_ucphier/HierarchyContentProvider.class differ
diff --git a/qadevOOo/bin/mod/_ucphier/HierarchyDataSource.class b/qadevOOo/bin/mod/_ucphier/HierarchyDataSource.class
new file mode 100644
index 000000000000..834b0924b9cf
Binary files /dev/null and b/qadevOOo/bin/mod/_ucphier/HierarchyDataSource.class differ
diff --git a/qadevOOo/bin/mod/_ucppkg/PackageContentProvider.class b/qadevOOo/bin/mod/_ucppkg/PackageContentProvider.class
new file mode 100644
index 000000000000..941255378f24
Binary files /dev/null and b/qadevOOo/bin/mod/_ucppkg/PackageContentProvider.class differ
diff --git a/qadevOOo/bin/mod/_ucprmt/ContentProvider.class b/qadevOOo/bin/mod/_ucprmt/ContentProvider.class
new file mode 100644
index 000000000000..640b178886cc
Binary files /dev/null and b/qadevOOo/bin/mod/_ucprmt/ContentProvider.class differ
diff --git a/qadevOOo/bin/mod/_ucprmt/ProviderAcceptor.class b/qadevOOo/bin/mod/_ucprmt/ProviderAcceptor.class
new file mode 100644
index 000000000000..a4c1b713034e
Binary files /dev/null and b/qadevOOo/bin/mod/_ucprmt/ProviderAcceptor.class differ
diff --git a/qadevOOo/bin/mod/_ucprmt/ProxyProvider.class b/qadevOOo/bin/mod/_ucprmt/ProxyProvider.class
new file mode 100644
index 000000000000..61642d665670
Binary files /dev/null and b/qadevOOo/bin/mod/_ucprmt/ProxyProvider.class differ
diff --git a/qadevOOo/bin/mod/_uui/UUIInteractionHandler.class b/qadevOOo/bin/mod/_uui/UUIInteractionHandler.class
new file mode 100644
index 000000000000..dd9ab217154a
Binary files /dev/null and b/qadevOOo/bin/mod/_uui/UUIInteractionHandler.class differ
diff --git a/qadevOOo/bin/mod/_uuresolver/UnoUrlResolver.class b/qadevOOo/bin/mod/_uuresolver/UnoUrlResolver.class
new file mode 100644
index 000000000000..d08f0a677b3c
Binary files /dev/null and b/qadevOOo/bin/mod/_uuresolver/UnoUrlResolver.class differ
diff --git a/qadevOOo/bin/mod/_uuresolver/package.html b/qadevOOo/bin/mod/_uuresolver/package.html
new file mode 100644
index 000000000000..20c38e20ea08
--- /dev/null
+++ b/qadevOOo/bin/mod/_uuresolver/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'uuresolver'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_uuresolver/uno/UnoUrlResolver.class b/qadevOOo/bin/mod/_uuresolver/uno/UnoUrlResolver.class
new file mode 100644
index 000000000000..4a57d6cfb7a4
Binary files /dev/null and b/qadevOOo/bin/mod/_uuresolver/uno/UnoUrlResolver.class differ
diff --git a/qadevOOo/bin/mod/_uuresolver/uno/package.html b/qadevOOo/bin/mod/_uuresolver/uno/package.html
new file mode 100644
index 000000000000..20c38e20ea08
--- /dev/null
+++ b/qadevOOo/bin/mod/_uuresolver/uno/package.html
@@ -0,0 +1,23 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<!--
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the "License"); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+-->
+<HTML>
+<BODY>
+<P>Contains all test cases for the module 'uuresolver'.</P>
+</BODY>
+</HTML>
diff --git a/qadevOOo/bin/mod/_xmloff/Chart/XMLContentExporter$FilterChecker.class b/qadevOOo/bin/mod/_xmloff/Chart/XMLContentExporter$FilterChecker.class
new file mode 100644
index 000000000000..c230d9e95487
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Chart/XMLContentExporter$FilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Chart/XMLContentExporter.class b/qadevOOo/bin/mod/_xmloff/Chart/XMLContentExporter.class
new file mode 100644
index 000000000000..76071cd4a59f
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Chart/XMLContentExporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Chart/XMLContentImporter$1.class b/qadevOOo/bin/mod/_xmloff/Chart/XMLContentImporter$1.class
new file mode 100644
index 000000000000..8e80a130ea14
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Chart/XMLContentImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Chart/XMLContentImporter.class b/qadevOOo/bin/mod/_xmloff/Chart/XMLContentImporter.class
new file mode 100644
index 000000000000..a55ac4bac0e1
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Chart/XMLContentImporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Chart/XMLExporter$FilterChecker.class b/qadevOOo/bin/mod/_xmloff/Chart/XMLExporter$FilterChecker.class
new file mode 100644
index 000000000000..ded3a3002099
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Chart/XMLExporter$FilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Chart/XMLExporter.class b/qadevOOo/bin/mod/_xmloff/Chart/XMLExporter.class
new file mode 100644
index 000000000000..30adbdb62d7c
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Chart/XMLExporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Chart/XMLImporter$1.class b/qadevOOo/bin/mod/_xmloff/Chart/XMLImporter$1.class
new file mode 100644
index 000000000000..0444eb3007b3
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Chart/XMLImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Chart/XMLImporter.class b/qadevOOo/bin/mod/_xmloff/Chart/XMLImporter.class
new file mode 100644
index 000000000000..97304e4d66bd
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Chart/XMLImporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Chart/XMLStylesExporter$FilterChecker.class b/qadevOOo/bin/mod/_xmloff/Chart/XMLStylesExporter$FilterChecker.class
new file mode 100644
index 000000000000..6f9082b3fa5c
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Chart/XMLStylesExporter$FilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Chart/XMLStylesExporter.class b/qadevOOo/bin/mod/_xmloff/Chart/XMLStylesExporter.class
new file mode 100644
index 000000000000..24eb345d645b
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Chart/XMLStylesExporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Chart/XMLStylesImporter$1.class b/qadevOOo/bin/mod/_xmloff/Chart/XMLStylesImporter$1.class
new file mode 100644
index 000000000000..ce3326add996
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Chart/XMLStylesImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Chart/XMLStylesImporter.class b/qadevOOo/bin/mod/_xmloff/Chart/XMLStylesImporter.class
new file mode 100644
index 000000000000..59ceb8153224
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Chart/XMLStylesImporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Draw/XMLContentExporter$FilterChecker.class b/qadevOOo/bin/mod/_xmloff/Draw/XMLContentExporter$FilterChecker.class
new file mode 100644
index 000000000000..366f10f477ad
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Draw/XMLContentExporter$FilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Draw/XMLContentExporter.class b/qadevOOo/bin/mod/_xmloff/Draw/XMLContentExporter.class
new file mode 100644
index 000000000000..ddbf6870ea8e
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Draw/XMLContentExporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Draw/XMLContentImporter$1.class b/qadevOOo/bin/mod/_xmloff/Draw/XMLContentImporter$1.class
new file mode 100644
index 000000000000..173b87ec8095
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Draw/XMLContentImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Draw/XMLContentImporter.class b/qadevOOo/bin/mod/_xmloff/Draw/XMLContentImporter.class
new file mode 100644
index 000000000000..304059dc80e9
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Draw/XMLContentImporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Draw/XMLExporter$FilterChecker.class b/qadevOOo/bin/mod/_xmloff/Draw/XMLExporter$FilterChecker.class
new file mode 100644
index 000000000000..ced4aa369b44
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Draw/XMLExporter$FilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Draw/XMLExporter.class b/qadevOOo/bin/mod/_xmloff/Draw/XMLExporter.class
new file mode 100644
index 000000000000..a808c22ae3d0
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Draw/XMLExporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Draw/XMLImporter$1.class b/qadevOOo/bin/mod/_xmloff/Draw/XMLImporter$1.class
new file mode 100644
index 000000000000..2dd6381dbd6c
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Draw/XMLImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Draw/XMLImporter.class b/qadevOOo/bin/mod/_xmloff/Draw/XMLImporter.class
new file mode 100644
index 000000000000..be3bb3493bb2
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Draw/XMLImporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Draw/XMLMetaExporter$FilterChecker.class b/qadevOOo/bin/mod/_xmloff/Draw/XMLMetaExporter$FilterChecker.class
new file mode 100644
index 000000000000..dfb48091f2d7
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Draw/XMLMetaExporter$FilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Draw/XMLMetaExporter.class b/qadevOOo/bin/mod/_xmloff/Draw/XMLMetaExporter.class
new file mode 100644
index 000000000000..a4be79f16be8
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Draw/XMLMetaExporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Draw/XMLMetaImporter$1.class b/qadevOOo/bin/mod/_xmloff/Draw/XMLMetaImporter$1.class
new file mode 100644
index 000000000000..97565357afc7
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Draw/XMLMetaImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Draw/XMLMetaImporter.class b/qadevOOo/bin/mod/_xmloff/Draw/XMLMetaImporter.class
new file mode 100644
index 000000000000..2f3743cd3adf
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Draw/XMLMetaImporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Draw/XMLSettingsExporter$FilterChecker.class b/qadevOOo/bin/mod/_xmloff/Draw/XMLSettingsExporter$FilterChecker.class
new file mode 100644
index 000000000000..9ec048d2f19e
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Draw/XMLSettingsExporter$FilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Draw/XMLSettingsExporter.class b/qadevOOo/bin/mod/_xmloff/Draw/XMLSettingsExporter.class
new file mode 100644
index 000000000000..628bd4b0db87
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Draw/XMLSettingsExporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Draw/XMLSettingsImporter$1.class b/qadevOOo/bin/mod/_xmloff/Draw/XMLSettingsImporter$1.class
new file mode 100644
index 000000000000..7cec9209af80
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Draw/XMLSettingsImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Draw/XMLSettingsImporter.class b/qadevOOo/bin/mod/_xmloff/Draw/XMLSettingsImporter.class
new file mode 100644
index 000000000000..214834c1e831
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Draw/XMLSettingsImporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Draw/XMLStylesExporter$FilterChecker.class b/qadevOOo/bin/mod/_xmloff/Draw/XMLStylesExporter$FilterChecker.class
new file mode 100644
index 000000000000..e18541fb3876
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Draw/XMLStylesExporter$FilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Draw/XMLStylesExporter.class b/qadevOOo/bin/mod/_xmloff/Draw/XMLStylesExporter.class
new file mode 100644
index 000000000000..61d193b40431
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Draw/XMLStylesExporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Draw/XMLStylesImporter$1.class b/qadevOOo/bin/mod/_xmloff/Draw/XMLStylesImporter$1.class
new file mode 100644
index 000000000000..d704d04432cf
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Draw/XMLStylesImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Draw/XMLStylesImporter.class b/qadevOOo/bin/mod/_xmloff/Draw/XMLStylesImporter.class
new file mode 100644
index 000000000000..1d15ac8a393f
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Draw/XMLStylesImporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Impress/XMLContentExporter$FilterChecker.class b/qadevOOo/bin/mod/_xmloff/Impress/XMLContentExporter$FilterChecker.class
new file mode 100644
index 000000000000..610e23ef63a7
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Impress/XMLContentExporter$FilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Impress/XMLContentExporter.class b/qadevOOo/bin/mod/_xmloff/Impress/XMLContentExporter.class
new file mode 100644
index 000000000000..dbde46f7b098
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Impress/XMLContentExporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Impress/XMLContentImporter$1.class b/qadevOOo/bin/mod/_xmloff/Impress/XMLContentImporter$1.class
new file mode 100644
index 000000000000..c1bec33c0931
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Impress/XMLContentImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Impress/XMLContentImporter.class b/qadevOOo/bin/mod/_xmloff/Impress/XMLContentImporter.class
new file mode 100644
index 000000000000..d65c0ca039b8
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Impress/XMLContentImporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Impress/XMLExporter$FilterChecker.class b/qadevOOo/bin/mod/_xmloff/Impress/XMLExporter$FilterChecker.class
new file mode 100644
index 000000000000..76ede167bbed
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Impress/XMLExporter$FilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Impress/XMLExporter.class b/qadevOOo/bin/mod/_xmloff/Impress/XMLExporter.class
new file mode 100644
index 000000000000..d69c63ff49cf
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Impress/XMLExporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Impress/XMLImporter$1.class b/qadevOOo/bin/mod/_xmloff/Impress/XMLImporter$1.class
new file mode 100644
index 000000000000..0bb78ca409d0
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Impress/XMLImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Impress/XMLImporter.class b/qadevOOo/bin/mod/_xmloff/Impress/XMLImporter.class
new file mode 100644
index 000000000000..4986a6fe10b1
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Impress/XMLImporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Impress/XMLMetaExporter$FilterChecker.class b/qadevOOo/bin/mod/_xmloff/Impress/XMLMetaExporter$FilterChecker.class
new file mode 100644
index 000000000000..aca51d671b98
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Impress/XMLMetaExporter$FilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Impress/XMLMetaExporter.class b/qadevOOo/bin/mod/_xmloff/Impress/XMLMetaExporter.class
new file mode 100644
index 000000000000..2ff9078a12d0
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Impress/XMLMetaExporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Impress/XMLMetaImporter$1.class b/qadevOOo/bin/mod/_xmloff/Impress/XMLMetaImporter$1.class
new file mode 100644
index 000000000000..d9fbd98a1458
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Impress/XMLMetaImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Impress/XMLMetaImporter.class b/qadevOOo/bin/mod/_xmloff/Impress/XMLMetaImporter.class
new file mode 100644
index 000000000000..531b8fa8152c
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Impress/XMLMetaImporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Impress/XMLSettingsExporter$FilterChecker.class b/qadevOOo/bin/mod/_xmloff/Impress/XMLSettingsExporter$FilterChecker.class
new file mode 100644
index 000000000000..929261c23789
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Impress/XMLSettingsExporter$FilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Impress/XMLSettingsExporter.class b/qadevOOo/bin/mod/_xmloff/Impress/XMLSettingsExporter.class
new file mode 100644
index 000000000000..cef0c053d208
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Impress/XMLSettingsExporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Impress/XMLSettingsImporter$1.class b/qadevOOo/bin/mod/_xmloff/Impress/XMLSettingsImporter$1.class
new file mode 100644
index 000000000000..b2fe024c9f89
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Impress/XMLSettingsImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Impress/XMLSettingsImporter.class b/qadevOOo/bin/mod/_xmloff/Impress/XMLSettingsImporter.class
new file mode 100644
index 000000000000..f4d2266b1170
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Impress/XMLSettingsImporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Impress/XMLStylesExporter$FilterChecker.class b/qadevOOo/bin/mod/_xmloff/Impress/XMLStylesExporter$FilterChecker.class
new file mode 100644
index 000000000000..11b4e8bff97d
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Impress/XMLStylesExporter$FilterChecker.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Impress/XMLStylesExporter.class b/qadevOOo/bin/mod/_xmloff/Impress/XMLStylesExporter.class
new file mode 100644
index 000000000000..7bc8667c3996
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Impress/XMLStylesExporter.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Impress/XMLStylesImporter$1.class b/qadevOOo/bin/mod/_xmloff/Impress/XMLStylesImporter$1.class
new file mode 100644
index 000000000000..b7ab3b8e2f22
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Impress/XMLStylesImporter$1.class differ
diff --git a/qadevOOo/bin/mod/_xmloff/Impress/XMLStylesImporter.class b/qadevOOo/bin/mod/_xmloff/Impress/XMLStylesImporter.class
new file mode 100644
index 000000000000..b1a8e2a5caba
Binary files /dev/null and b/qadevOOo/bin/mod/_xmloff/Impress/XMLStylesImporter.class differ
diff --git a/qadevOOo/bin/org/openoffice/JavaSystemBackend$CommonLayer.class b/qadevOOo/bin/org/openoffice/JavaSystemBackend$CommonLayer.class
new file mode 100644
index 000000000000..8075aa9777ec
Binary files /dev/null and b/qadevOOo/bin/org/openoffice/JavaSystemBackend$CommonLayer.class differ
diff --git a/qadevOOo/bin/org/openoffice/JavaSystemBackend.class b/qadevOOo/bin/org/openoffice/JavaSystemBackend.class
new file mode 100644
index 000000000000..d4ba5c7c730b
Binary files /dev/null and b/qadevOOo/bin/org/openoffice/JavaSystemBackend.class differ
diff --git a/qadevOOo/bin/org/openoffice/Runner.class b/qadevOOo/bin/org/openoffice/Runner.class
new file mode 100644
index 000000000000..b851f3a9c23d
Binary files /dev/null and b/qadevOOo/bin/org/openoffice/Runner.class differ
diff --git a/qadevOOo/bin/org/openoffice/RunnerService.class b/qadevOOo/bin/org/openoffice/RunnerService.class
new file mode 100644
index 000000000000..d07dcb287750
Binary files /dev/null and b/qadevOOo/bin/org/openoffice/RunnerService.class differ
diff --git a/qadevOOo/bin/org/openoffice/makefile.mk b/qadevOOo/bin/org/openoffice/makefile.mk
new file mode 100644
index 000000000000..bf65be4b5905
--- /dev/null
+++ b/qadevOOo/bin/org/openoffice/makefile.mk
@@ -0,0 +1,55 @@
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+# This file incorporates work covered by the following license notice:
+#
+#   Licensed to the Apache Software Foundation (ASF) under one or more
+#   contributor license agreements. See the NOTICE file distributed
+#   with this work for additional information regarding copyright
+#   ownership. The ASF licenses this file to you under the Apache
+#   License, Version 2.0 (the "License"); you may not use this file
+#   except in compliance with the License. You may obtain a copy of
+#   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+#
+
+PRJ = ..$/..$/..$/..
+PRJNAME = JavaSystemBackend
+TARGET  = $(PRJNAME)
+PACKAGE = test
+
+# --- Settings -----------------------------------------------------
+.INCLUDE: settings.mk
+
+#----- compile .java files -----------------------------------------
+
+JARFILES        = ridl.jar unoil.jar jurt.jar juh.jar java_uno.jar OOoRunner.jar
+JAVAFILES       = JavaSystemBackend.java
+JAVACLASSFILES  = $(CLASSDIR)$/$(PACKAGE)$/JavaSystemBackend.class
+
+#----- make a jar from compiled files ------------------------------
+
+MAXLINELENGTH = 100000
+
+JARCLASSDIRS    = org/openoffice/JavaSystemBackend.class
+JARTARGET       = $(TARGET).jar
+JARCOMPRESS 	= TRUE
+CUSTOMMANIFESTFILE = manifest
+
+
+# --- Files --------------------------------------------------------
+
+# --- Targets ------------------------------------------------------
+
+.IF "$(depend)" == ""
+ALL : \
+    ALLTAR
+.ELSE
+ALL: 	ALLDEP
+.ENDIF
+
+.INCLUDE :  target.mk
+
diff --git a/qadevOOo/bin/org/openoffice/manifest b/qadevOOo/bin/org/openoffice/manifest
new file mode 100644
index 000000000000..e085984b2cf2
--- /dev/null
+++ b/qadevOOo/bin/org/openoffice/manifest
@@ -0,0 +1 @@
+RegistrationClassName: org.openoffice.JavaSystemBackend
diff --git a/qadevOOo/bin/registrymodifications.xcu b/qadevOOo/bin/registrymodifications.xcu
new file mode 100644
index 000000000000..3ac099ff7f1e
--- /dev/null
+++ b/qadevOOo/bin/registrymodifications.xcu
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Force EN Calc function names and UI so "Filter" match also
+     when building with non-en system locales -->
+<oor:items xmlns:oor="http://openoffice.org/2001/registry"; xmlns:xs="http://www.w3.org/2001/XMLSchema"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>
+<item oor:path="/org.openoffice.Office.Calc/Formula/Syntax"><prop oor:name="EnglishFunctionName" oor:op="fuse"><value>true</value></prop></item>
+<item oor:path="/org.openoffice.Office.Common/Misc"><prop oor:name="UseSystemFileDialog" oor:op="fuse"><value>false</value></prop></item>
+<item oor:path="/org.openoffice.Office.Common/View/NewDocumentHandling"><prop oor:name="ForceFocusAndToFront" oor:op="fuse"><value>false</value></prop></item>
+<item oor:path="/org.openoffice.Setup/L10N"><prop oor:name="ooSetupSystemLocale" oor:op="fuse"><value>en-US</value></prop></item>
+<item oor:path="/org.openoffice.Setup/L10N"><prop oor:name="ooLocale" oor:op="fuse"><value>en</value></prop></item>
+<item oor:path="/org.openoffice.Office.Linguistic/General"><prop oor:name="UILocale" oor:op="fuse"><value>en-US</value></prop></item>
+</oor:items>
diff --git a/qadevOOo/bin/share/ComplexTest.class b/qadevOOo/bin/share/ComplexTest.class
new file mode 100644
index 000000000000..ccf05c134850
Binary files /dev/null and b/qadevOOo/bin/share/ComplexTest.class differ
diff --git a/qadevOOo/bin/share/DescEntry.class b/qadevOOo/bin/share/DescEntry.class
new file mode 100644
index 000000000000..50b72133ac2b
Binary files /dev/null and b/qadevOOo/bin/share/DescEntry.class differ
diff --git a/qadevOOo/bin/share/DescGetter.class b/qadevOOo/bin/share/DescGetter.class
new file mode 100644
index 000000000000..465b5b144702
Binary files /dev/null and b/qadevOOo/bin/share/DescGetter.class differ
diff --git a/qadevOOo/bin/share/LogWriter.class b/qadevOOo/bin/share/LogWriter.class
new file mode 100644
index 000000000000..74cf25e32f08
Binary files /dev/null and b/qadevOOo/bin/share/LogWriter.class differ
diff --git a/qadevOOo/bin/share/Watcher.class b/qadevOOo/bin/share/Watcher.class
new file mode 100644
index 000000000000..8af2fac761cf
Binary files /dev/null and b/qadevOOo/bin/share/Watcher.class differ
diff --git a/qadevOOo/bin/stats/InternalLogWriter.class b/qadevOOo/bin/stats/InternalLogWriter.class
new file mode 100644
index 000000000000..4d77ba222f70
Binary files /dev/null and b/qadevOOo/bin/stats/InternalLogWriter.class differ
diff --git a/qadevOOo/bin/stats/OutProducerFactory.class b/qadevOOo/bin/stats/OutProducerFactory.class
new file mode 100644
index 000000000000..aa39cf97e559
Binary files /dev/null and b/qadevOOo/bin/stats/OutProducerFactory.class differ
diff --git a/qadevOOo/bin/stats/SimpleLogWriter.class b/qadevOOo/bin/stats/SimpleLogWriter.class
new file mode 100644
index 000000000000..58494627ad8e
Binary files /dev/null and b/qadevOOo/bin/stats/SimpleLogWriter.class differ
diff --git a/qadevOOo/bin/stats/SimpleOutProducer.class b/qadevOOo/bin/stats/SimpleOutProducer.class
new file mode 100644
index 000000000000..882047be0029
Binary files /dev/null and b/qadevOOo/bin/stats/SimpleOutProducer.class differ
diff --git a/qadevOOo/bin/stats/Summarizer.class b/qadevOOo/bin/stats/Summarizer.class
new file mode 100644
index 000000000000..8487bc4b9530
Binary files /dev/null and b/qadevOOo/bin/stats/Summarizer.class differ
diff --git a/qadevOOo/bin/test/Job$_Implementation.class b/qadevOOo/bin/test/Job$_Implementation.class
new file mode 100644
index 000000000000..ba9ea5711243
Binary files /dev/null and b/qadevOOo/bin/test/Job$_Implementation.class differ
diff --git a/qadevOOo/bin/test/Job.class b/qadevOOo/bin/test/Job.class
new file mode 100644
index 000000000000..f947bf832193
Binary files /dev/null and b/qadevOOo/bin/test/Job.class differ
diff --git a/qadevOOo/bin/test/makefile.mk b/qadevOOo/bin/test/makefile.mk
new file mode 100644
index 000000000000..27115c251a08
--- /dev/null
+++ b/qadevOOo/bin/test/makefile.mk
@@ -0,0 +1,55 @@
+#
+# This file is part of the LibreOffice project.
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at http://mozilla.org/MPL/2.0/.
+#
+# This file incorporates work covered by the following license notice:
+#
+#   Licensed to the Apache Software Foundation (ASF) under one or more
+#   contributor license agreements. See the NOTICE file distributed
+#   with this work for additional information regarding copyright
+#   ownership. The ASF licenses this file to you under the Apache
+#   License, Version 2.0 (the "License"); you may not use this file
+#   except in compliance with the License. You may obtain a copy of
+#   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+#
+
+PRJ = ..$/..$/..$/..
+PRJNAME = JobExecutor
+TARGET  = $(PRJNAME)
+PACKAGE = test
+
+# --- Settings -----------------------------------------------------
+.INCLUDE: settings.mk
+
+#----- compile .java files -----------------------------------------
+
+JARFILES        = ridl.jar unoil.jar jurt.jar juh.jar java_uno.jar OOoRunner.jar
+JAVAFILES       = Job.java
+JAVACLASSFILES  = $(CLASSDIR)$/$(PACKAGE)$/Job.class
+
+#----- make a jar from compiled files ------------------------------
+
+MAXLINELENGTH = 100000
+
+JARCLASSDIRS    = test
+JARTARGET       = $(TARGET).jar
+JARCOMPRESS 	= TRUE
+CUSTOMMANIFESTFILE = manifest
+
+
+# --- Files --------------------------------------------------------
+
+# --- Targets ------------------------------------------------------
+
+.IF "$(depend)" == ""
+ALL : \
+    ALLTAR
+.ELSE
+ALL: 	ALLDEP
+.ENDIF
+
+.INCLUDE :  target.mk
+
diff --git a/qadevOOo/bin/test/manifest b/qadevOOo/bin/test/manifest
new file mode 100644
index 000000000000..02f702337844
--- /dev/null
+++ b/qadevOOo/bin/test/manifest
@@ -0,0 +1,2 @@
+RegistrationClassName: test.Job
+
\ No newline at end of file
diff --git a/qadevOOo/bin/util/AccessibilityTools.class b/qadevOOo/bin/util/AccessibilityTools.class
new file mode 100644
index 000000000000..8079dbdca8dc
Binary files /dev/null and b/qadevOOo/bin/util/AccessibilityTools.class differ
diff --git a/qadevOOo/bin/util/BookmarkDsc.class b/qadevOOo/bin/util/BookmarkDsc.class
new file mode 100644
index 000000000000..0690e9a72267
Binary files /dev/null and b/qadevOOo/bin/util/BookmarkDsc.class differ
diff --git a/qadevOOo/bin/util/CalcTools.class b/qadevOOo/bin/util/CalcTools.class
new file mode 100644
index 000000000000..f7a0e9b6b52d
Binary files /dev/null and b/qadevOOo/bin/util/CalcTools.class differ
diff --git a/qadevOOo/bin/util/DBTools$DataSourceInfo.class b/qadevOOo/bin/util/DBTools$DataSourceInfo.class
new file mode 100644
index 000000000000..67483b7eefe8
Binary files /dev/null and b/qadevOOo/bin/util/DBTools$DataSourceInfo.class differ
diff --git a/qadevOOo/bin/util/DBTools.class b/qadevOOo/bin/util/DBTools.class
new file mode 100644
index 000000000000..e96003c7715a
Binary files /dev/null and b/qadevOOo/bin/util/DBTools.class differ
diff --git a/qadevOOo/bin/util/DefaultDsc.class b/qadevOOo/bin/util/DefaultDsc.class
new file mode 100644
index 000000000000..864140d4335d
Binary files /dev/null and b/qadevOOo/bin/util/DefaultDsc.class differ
diff --git a/qadevOOo/bin/util/DesktopTools.class b/qadevOOo/bin/util/DesktopTools.class
new file mode 100644
index 000000000000..79571b97e4f1
Binary files /dev/null and b/qadevOOo/bin/util/DesktopTools.class differ
diff --git a/qadevOOo/bin/util/DrawTools.class b/qadevOOo/bin/util/DrawTools.class
new file mode 100644
index 000000000000..8598d50b2220
Binary files /dev/null and b/qadevOOo/bin/util/DrawTools.class differ
diff --git a/qadevOOo/bin/util/DynamicClassLoader.class b/qadevOOo/bin/util/DynamicClassLoader.class
new file mode 100644
index 000000000000..91a1640b617a
Binary files /dev/null and b/qadevOOo/bin/util/DynamicClassLoader.class differ
diff --git a/qadevOOo/bin/util/FootnoteDsc.class b/qadevOOo/bin/util/FootnoteDsc.class
new file mode 100644
index 000000000000..f42c9c2674d2
Binary files /dev/null and b/qadevOOo/bin/util/FootnoteDsc.class differ
diff --git a/qadevOOo/bin/util/FormTools.class b/qadevOOo/bin/util/FormTools.class
new file mode 100644
index 000000000000..4eb836d34c17
Binary files /dev/null and b/qadevOOo/bin/util/FormTools.class differ
diff --git a/qadevOOo/bin/util/FrameDsc.class b/qadevOOo/bin/util/FrameDsc.class
new file mode 100644
index 000000000000..ce3e9c9d189a
Binary files /dev/null and b/qadevOOo/bin/util/FrameDsc.class differ
diff --git a/qadevOOo/bin/util/InstCreator.class b/qadevOOo/bin/util/InstCreator.class
new file mode 100644
index 000000000000..0772139e5760
Binary files /dev/null and b/qadevOOo/bin/util/InstCreator.class differ
diff --git a/qadevOOo/bin/util/InstDescr.class b/qadevOOo/bin/util/InstDescr.class
new file mode 100644
index 000000000000..bdb86ace7931
Binary files /dev/null and b/qadevOOo/bin/util/InstDescr.class differ
diff --git a/qadevOOo/bin/util/ParagraphDsc.class b/qadevOOo/bin/util/ParagraphDsc.class
new file mode 100644
index 000000000000..007b60654961
Binary files /dev/null and b/qadevOOo/bin/util/ParagraphDsc.class differ
diff --git a/qadevOOo/bin/util/PropertyName.class b/qadevOOo/bin/util/PropertyName.class
new file mode 100644
index 000000000000..a3681354b24d
Binary files /dev/null and b/qadevOOo/bin/util/PropertyName.class differ
diff --git a/qadevOOo/bin/util/RegistryTools.class b/qadevOOo/bin/util/RegistryTools.class
new file mode 100644
index 000000000000..ffbd7e5459d7
Binary files /dev/null and b/qadevOOo/bin/util/RegistryTools.class differ
diff --git a/qadevOOo/bin/util/SOfficeFactory.class b/qadevOOo/bin/util/SOfficeFactory.class
new file mode 100644
index 000000000000..6e7d23e52a9a
Binary files /dev/null and b/qadevOOo/bin/util/SOfficeFactory.class differ
diff --git a/qadevOOo/bin/util/ShapeDsc.class b/qadevOOo/bin/util/ShapeDsc.class
new file mode 100644
index 000000000000..79723bef7b72
Binary files /dev/null and b/qadevOOo/bin/util/ShapeDsc.class differ
diff --git a/qadevOOo/bin/util/SysUtils.class b/qadevOOo/bin/util/SysUtils.class
new file mode 100644
index 000000000000..6f832cdd4ae1
Binary files /dev/null and b/qadevOOo/bin/util/SysUtils.class differ
diff --git a/qadevOOo/bin/util/TableDsc.class b/qadevOOo/bin/util/TableDsc.class
new file mode 100644
index 000000000000..b09ed326fa97
Binary files /dev/null and b/qadevOOo/bin/util/TableDsc.class differ
diff --git a/qadevOOo/bin/util/TextSectionDsc.class b/qadevOOo/bin/util/TextSectionDsc.class
new file mode 100644
index 000000000000..509871bfff87
Binary files /dev/null and b/qadevOOo/bin/util/TextSectionDsc.class differ
diff --git a/qadevOOo/bin/util/UITools.class b/qadevOOo/bin/util/UITools.class
new file mode 100644
index 000000000000..7b08b1e831db
Binary files /dev/null and b/qadevOOo/bin/util/UITools.class differ
diff --git a/qadevOOo/bin/util/ValueChanger.class b/qadevOOo/bin/util/ValueChanger.class
new file mode 100644
index 000000000000..3379630277c8
Binary files /dev/null and b/qadevOOo/bin/util/ValueChanger.class differ
diff --git a/qadevOOo/bin/util/ValueComparer.class b/qadevOOo/bin/util/ValueComparer.class
new file mode 100644
index 000000000000..d8aaa32aeb0b
Binary files /dev/null and b/qadevOOo/bin/util/ValueComparer.class differ
diff --git a/qadevOOo/bin/util/WaitUnreachable$1WaitThread.class b/qadevOOo/bin/util/WaitUnreachable$1WaitThread.class
new file mode 100644
index 000000000000..3c7604e79f2b
Binary files /dev/null and b/qadevOOo/bin/util/WaitUnreachable$1WaitThread.class differ
diff --git a/qadevOOo/bin/util/WaitUnreachable.class b/qadevOOo/bin/util/WaitUnreachable.class
new file mode 100644
index 000000000000..c6e6af2745c9
Binary files /dev/null and b/qadevOOo/bin/util/WaitUnreachable.class differ
diff --git a/qadevOOo/bin/util/WriterTools.class b/qadevOOo/bin/util/WriterTools.class
new file mode 100644
index 000000000000..4d7369dae817
Binary files /dev/null and b/qadevOOo/bin/util/WriterTools.class differ
diff --git a/qadevOOo/bin/util/XInstCreator.class b/qadevOOo/bin/util/XInstCreator.class
new file mode 100644
index 000000000000..9109b6651616
Binary files /dev/null and b/qadevOOo/bin/util/XInstCreator.class differ
diff --git a/qadevOOo/bin/util/XLayerHandlerImpl.class b/qadevOOo/bin/util/XLayerHandlerImpl.class
new file mode 100644
index 000000000000..68decfc4bab8
Binary files /dev/null and b/qadevOOo/bin/util/XLayerHandlerImpl.class differ
diff --git a/qadevOOo/bin/util/XLayerImpl.class b/qadevOOo/bin/util/XLayerImpl.class
new file mode 100644
index 000000000000..f8f82048ec19
Binary files /dev/null and b/qadevOOo/bin/util/XLayerImpl.class differ
diff --git a/qadevOOo/bin/util/XMLTools$AttributeList$Attribute.class b/qadevOOo/bin/util/XMLTools$AttributeList$Attribute.class
new file mode 100644
index 000000000000..03f6b9c272a6
Binary files /dev/null and b/qadevOOo/bin/util/XMLTools$AttributeList$Attribute.class differ
diff --git a/qadevOOo/bin/util/XMLTools$AttributeList.class b/qadevOOo/bin/util/XMLTools$AttributeList.class
new file mode 100644
index 000000000000..df4274637eba
Binary files /dev/null and b/qadevOOo/bin/util/XMLTools$AttributeList.class differ
diff --git a/qadevOOo/bin/util/XMLTools$Tag.class b/qadevOOo/bin/util/XMLTools$Tag.class
new file mode 100644
index 000000000000..71216cc361a8
Binary files /dev/null and b/qadevOOo/bin/util/XMLTools$Tag.class differ
diff --git a/qadevOOo/bin/util/XMLTools$XMLChecker.class b/qadevOOo/bin/util/XMLTools$XMLChecker.class
new file mode 100644
index 000000000000..6bfda3240a47
Binary files /dev/null and b/qadevOOo/bin/util/XMLTools$XMLChecker.class differ
diff --git a/qadevOOo/bin/util/XMLTools$XMLTagsChecker.class b/qadevOOo/bin/util/XMLTools$XMLTagsChecker.class
new file mode 100644
index 000000000000..cba3d77b591c
Binary files /dev/null and b/qadevOOo/bin/util/XMLTools$XMLTagsChecker.class differ
diff --git a/qadevOOo/bin/util/XMLTools$XMLWellFormChecker.class b/qadevOOo/bin/util/XMLTools$XMLWellFormChecker.class
new file mode 100644
index 000000000000..8492a1d6452c
Binary files /dev/null and b/qadevOOo/bin/util/XMLTools$XMLWellFormChecker.class differ
diff --git a/qadevOOo/bin/util/XMLTools$XMLWriter.class b/qadevOOo/bin/util/XMLTools$XMLWriter.class
new file mode 100644
index 000000000000..3832218b498e
Binary files /dev/null and b/qadevOOo/bin/util/XMLTools$XMLWriter.class differ
diff --git a/qadevOOo/bin/util/XMLTools.class b/qadevOOo/bin/util/XMLTools.class
new file mode 100644
index 000000000000..bc0eebff62d1
Binary files /dev/null and b/qadevOOo/bin/util/XMLTools.class differ
diff --git a/qadevOOo/bin/util/XSchemaHandlerImpl.class b/qadevOOo/bin/util/XSchemaHandlerImpl.class
new file mode 100644
index 000000000000..dd4e43aead3d
Binary files /dev/null and b/qadevOOo/bin/util/XSchemaHandlerImpl.class differ
diff --git a/qadevOOo/bin/util/db/DataSource.class b/qadevOOo/bin/util/db/DataSource.class
new file mode 100644
index 000000000000..2df2b2586807
Binary files /dev/null and b/qadevOOo/bin/util/db/DataSource.class differ
diff --git a/qadevOOo/bin/util/db/DataSourceDescriptor.class b/qadevOOo/bin/util/db/DataSourceDescriptor.class
new file mode 100644
index 000000000000..32790cfe8906
Binary files /dev/null and b/qadevOOo/bin/util/db/DataSourceDescriptor.class differ
diff --git a/qadevOOo/bin/util/db/DatabaseDocument.class b/qadevOOo/bin/util/db/DatabaseDocument.class
new file mode 100644
index 000000000000..d1673b356f1e
Binary files /dev/null and b/qadevOOo/bin/util/db/DatabaseDocument.class differ
diff --git a/qadevOOo/bin/util/dbg.class b/qadevOOo/bin/util/dbg.class
new file mode 100644
index 000000000000..9ae475927cfc
Binary files /dev/null and b/qadevOOo/bin/util/dbg.class differ
diff --git a/qadevOOo/bin/util/utils$1.class b/qadevOOo/bin/util/utils$1.class
new file mode 100644
index 000000000000..d4226f34909a
Binary files /dev/null and b/qadevOOo/bin/util/utils$1.class differ
diff --git a/qadevOOo/bin/util/utils.class b/qadevOOo/bin/util/utils.class
new file mode 100644
index 000000000000..f4dfcceda527
Binary files /dev/null and b/qadevOOo/bin/util/utils.class differ

[Index of Archives]     [LARTC]     [Bugtraq]     [Yosemite Forum]     [Photo]

  Powered by Linux