summaryrefslogtreecommitdiff
path: root/qadevOOo/tests/java/mod/_xmloff/Draw
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2003-05-27 13:12:42 +0000
committerVladimir Glazounov <vg@openoffice.org>2003-05-27 13:12:42 +0000
commitfd6bde62eb5b4968440d02147030fd5300ee62ee (patch)
treeeafda6e0b7eee690b0ae1a6f7726e9cd845e7155 /qadevOOo/tests/java/mod/_xmloff/Draw
parent83a2b3ebf5d6f4053975f174fcaa4b752906760e (diff)
INTEGRATION: CWS qadev6 (1.1.8); FILE MERGED
2003/05/21 10:59:45 sg 1.1.8.1: #109819# prepare devide of runner
Diffstat (limited to 'qadevOOo/tests/java/mod/_xmloff/Draw')
-rw-r--r--qadevOOo/tests/java/mod/_xmloff/Draw/XMLExporter.java8
-rw-r--r--qadevOOo/tests/java/mod/_xmloff/Draw/XMLImporter.java8
-rw-r--r--qadevOOo/tests/java/mod/_xmloff/Draw/XMLMetaExporter.java8
3 files changed, 12 insertions, 12 deletions
diff --git a/qadevOOo/tests/java/mod/_xmloff/Draw/XMLExporter.java b/qadevOOo/tests/java/mod/_xmloff/Draw/XMLExporter.java
index c2aa62f54e2e..b8a3d5ca1e35 100644
--- a/qadevOOo/tests/java/mod/_xmloff/Draw/XMLExporter.java
+++ b/qadevOOo/tests/java/mod/_xmloff/Draw/XMLExporter.java
@@ -2,9 +2,9 @@
*
* $RCSfile: XMLExporter.java,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change:$Date: 2003-01-27 18:20:02 $
+ * last change:$Date: 2003-05-27 14:12:21 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -113,7 +113,7 @@ public class XMLExporter extends TestCase {
protected void initialize( TestParameters tParam, PrintWriter log ) {
// get a soffice factory object
- SOfficeFactory SOF = SOfficeFactory.getFactory( tParam.getMSF());
+ SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)tParam.getMSF());
try {
log.println( "creating a drawdocument" );
@@ -157,7 +157,7 @@ public class XMLExporter extends TestCase {
protected synchronized TestEnvironment createTestEnvironment
(TestParameters tParam, PrintWriter log) {
- XMultiServiceFactory xMSF = tParam.getMSF() ;
+ XMultiServiceFactory xMSF = (XMultiServiceFactory)tParam.getMSF() ;
XInterface oObj = null;
FilterChecker filter = new FilterChecker(log);
Any arg = new Any(new Type(XDocumentHandler.class),filter);
diff --git a/qadevOOo/tests/java/mod/_xmloff/Draw/XMLImporter.java b/qadevOOo/tests/java/mod/_xmloff/Draw/XMLImporter.java
index dea96e412ffa..7e89692ff7d4 100644
--- a/qadevOOo/tests/java/mod/_xmloff/Draw/XMLImporter.java
+++ b/qadevOOo/tests/java/mod/_xmloff/Draw/XMLImporter.java
@@ -2,9 +2,9 @@
*
* $RCSfile: XMLImporter.java,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change:$Date: 2003-01-27 18:20:01 $
+ * last change:$Date: 2003-05-27 14:12:30 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -110,7 +110,7 @@ public class XMLImporter extends TestCase {
protected void initialize( TestParameters tParam, PrintWriter log ) {
// get a soffice factory object
- SOfficeFactory SOF = SOfficeFactory.getFactory( tParam.getMSF());
+ SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)tParam.getMSF());
try {
log.println( "creating a drawdocument" );
@@ -159,7 +159,7 @@ public class XMLImporter extends TestCase {
// first we write what we are intend to do to log file
log.println( "creating a test environment" );
- XMultiServiceFactory xMSF = tParam.getMSF() ;
+ XMultiServiceFactory xMSF = (XMultiServiceFactory)tParam.getMSF() ;
try {
oInt = xMSF.createInstance("com.sun.star.comp.Draw.XMLImporter") ;
diff --git a/qadevOOo/tests/java/mod/_xmloff/Draw/XMLMetaExporter.java b/qadevOOo/tests/java/mod/_xmloff/Draw/XMLMetaExporter.java
index 944a10894c82..eafd72481c9f 100644
--- a/qadevOOo/tests/java/mod/_xmloff/Draw/XMLMetaExporter.java
+++ b/qadevOOo/tests/java/mod/_xmloff/Draw/XMLMetaExporter.java
@@ -2,9 +2,9 @@
*
* $RCSfile: XMLMetaExporter.java,v $
*
- * $Revision: 1.1 $
+ * $Revision: 1.2 $
*
- * last change:$Date: 2003-01-27 18:20:01 $
+ * last change:$Date: 2003-05-27 14:12:42 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -111,7 +111,7 @@ public class XMLMetaExporter extends TestCase {
protected void initialize( TestParameters tParam, PrintWriter log ) {
// get a soffice factory object
- SOfficeFactory SOF = SOfficeFactory.getFactory( tParam.getMSF());
+ SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)tParam.getMSF());
try {
log.println( "creating a drawdocument" );
@@ -155,7 +155,7 @@ public class XMLMetaExporter extends TestCase {
public synchronized TestEnvironment createTestEnvironment
(TestParameters tParam, PrintWriter log ) throws StatusException {
- XMultiServiceFactory xMSF = tParam.getMSF() ;
+ XMultiServiceFactory xMSF = (XMultiServiceFactory)tParam.getMSF() ;
XInterface oObj = null;
final String TITLE = "XMLMetaExporter";