Kaydet (Commit) 82e21bac authored tarafından Vladimir Glazounov's avatar Vladimir Glazounov

INTEGRATION: CWS qadev6 (1.1.8); FILE MERGED

2003/05/21 10:59:50 sg 1.1.8.1: #109819# prepare devide of runner
üst 56a6770e
......@@ -2,9 +2,9 @@
*
* $RCSfile: XMLExporter.java,v $
*
* $Revision: 1.1 $
* $Revision: 1.2 $
*
* last change:$Date: 2003-01-27 18:20:07 $
* last change:$Date: 2003-05-27 14:14:06 $
*
* 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 an impress document" );
......@@ -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);
......
......@@ -2,9 +2,9 @@
*
* $RCSfile: XMLImporter.java,v $
*
* $Revision: 1.1 $
* $Revision: 1.2 $
*
* last change:$Date: 2003-01-27 18:20:07 $
* last change:$Date: 2003-05-27 14:14:16 $
*
* 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 an impress document" );
......@@ -160,7 +160,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
......
......@@ -2,9 +2,9 @@
*
* $RCSfile: XMLMetaExporter.java,v $
*
* $Revision: 1.1 $
* $Revision: 1.2 $
*
* last change:$Date: 2003-01-27 18:20:07 $
* last change:$Date: 2003-05-27 14:14:26 $
*
* 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 an impress document" );
......@@ -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;
FilterChecker filter = new FilterChecker(log);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment