Kaydet (Commit) 25d34a34 authored tarafından Vladimir Glazounov's avatar Vladimir Glazounov

INTEGRATION: CWS qadev6 (1.1.8); FILE MERGED

2003/05/21 10:58:40 sg 1.1.8.1: #109819# prepare devide of runner
üst 41b8f203
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* *
* $RCSfile: SwXViewSettings.java,v $ * $RCSfile: SwXViewSettings.java,v $
* *
* $Revision: 1.1 $ * $Revision: 1.2 $
* *
* last change:$Date: 2003-01-27 18:18:21 $ * last change:$Date: 2003-05-27 13:54:32 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
...@@ -62,6 +62,7 @@ ...@@ -62,6 +62,7 @@
package mod._sw; package mod._sw;
import com.sun.star.text.XTextDocument; import com.sun.star.text.XTextDocument;
import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.uno.UnoRuntime; import com.sun.star.uno.UnoRuntime;
import com.sun.star.uno.XInterface; import com.sun.star.uno.XInterface;
import com.sun.star.view.XViewSettingsSupplier; import com.sun.star.view.XViewSettingsSupplier;
...@@ -83,7 +84,7 @@ public class SwXViewSettings extends TestCase { ...@@ -83,7 +84,7 @@ public class SwXViewSettings extends TestCase {
XTextDocument xTextDoc; XTextDocument xTextDoc;
protected void initialize( TestParameters tParam, PrintWriter log ) { protected void initialize( TestParameters tParam, PrintWriter log ) {
SOfficeFactory SOF = SOfficeFactory.getFactory( tParam.getMSF() ); SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)tParam.getMSF() );
try { try {
log.println( "creating a textdocument" ); log.println( "creating a textdocument" );
......
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* *
* $RCSfile: XMLContentExporter.java,v $ * $RCSfile: XMLContentExporter.java,v $
* *
* $Revision: 1.1 $ * $Revision: 1.2 $
* *
* last change:$Date: 2003-01-27 18:18:21 $ * last change:$Date: 2003-05-27 13:54:43 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
...@@ -109,7 +109,7 @@ public class XMLContentExporter extends TestCase { ...@@ -109,7 +109,7 @@ public class XMLContentExporter extends TestCase {
* New text document created. * New text document created.
*/ */
protected void initialize( TestParameters tParam, PrintWriter log ) { protected void initialize( TestParameters tParam, PrintWriter log ) {
SOfficeFactory SOF = SOfficeFactory.getFactory( tParam.getMSF() ); SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)tParam.getMSF() );
try { try {
log.println( "creating a textdocument" ); log.println( "creating a textdocument" );
...@@ -154,7 +154,7 @@ public class XMLContentExporter extends TestCase { ...@@ -154,7 +154,7 @@ public class XMLContentExporter extends TestCase {
( TestParameters tParam, PrintWriter log ) throws StatusException { ( TestParameters tParam, PrintWriter log ) throws StatusException {
final String CONTENT = "XMLContentExporter"; final String CONTENT = "XMLContentExporter";
XMultiServiceFactory xMSF = tParam.getMSF() ; XMultiServiceFactory xMSF = (XMultiServiceFactory)tParam.getMSF() ;
XInterface oObj = null; XInterface oObj = null;
Filter = new ContentFilterChecker(log); Filter = new ContentFilterChecker(log);
......
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* *
* $RCSfile: XMLContentImporter.java,v $ * $RCSfile: XMLContentImporter.java,v $
* *
* $Revision: 1.1 $ * $Revision: 1.2 $
* *
* last change:$Date: 2003-01-27 18:18:21 $ * last change:$Date: 2003-05-27 13:54:54 $
* *
* The Contents of this file are made available subject to the terms of * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
...@@ -106,7 +106,7 @@ public class XMLContentImporter extends TestCase { ...@@ -106,7 +106,7 @@ public class XMLContentImporter extends TestCase {
* New text document created. * New text document created.
*/ */
protected void initialize( TestParameters tParam, PrintWriter log ) { protected void initialize( TestParameters tParam, PrintWriter log ) {
SOfficeFactory SOF = SOfficeFactory.getFactory( tParam.getMSF() ); SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)tParam.getMSF() );
try { try {
log.println( "creating a textdocument" ); log.println( "creating a textdocument" );
...@@ -156,7 +156,7 @@ public class XMLContentImporter extends TestCase { ...@@ -156,7 +156,7 @@ public class XMLContentImporter extends TestCase {
// first we write what we are intend to do to log file // first we write what we are intend to do to log file
log.println( "creating a test environment" ); log.println( "creating a test environment" );
XMultiServiceFactory xMSF = tParam.getMSF() ; XMultiServiceFactory xMSF = (XMultiServiceFactory)tParam.getMSF() ;
try { try {
oInt = xMSF.createInstance oInt = xMSF.createInstance
......
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