merge the formfield patch from ooo-build
[ooovba.git] / qadevOOo / tests / java / mod / _sw / SwXTextRange.java
blobcc28a23eba61f0d3af14fb1c792ecff375b1f448
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: SwXTextRange.java,v $
10 * $Revision: 1.7 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 package mod._sw;
33 import java.io.PrintWriter;
35 import lib.StatusException;
36 import lib.TestCase;
37 import lib.TestEnvironment;
38 import lib.TestParameters;
39 import util.SOfficeFactory;
40 import util.utils;
42 import com.sun.star.lang.XMultiServiceFactory;
43 import com.sun.star.text.XText;
44 import com.sun.star.text.XTextCursor;
45 import com.sun.star.text.XTextDocument;
46 import com.sun.star.uno.XInterface;
48 public class SwXTextRange extends TestCase {
49 XTextDocument xTextDoc;
51 protected void initialize( TestParameters tParam, PrintWriter log ) {
52 SOfficeFactory SOF = SOfficeFactory.getFactory( (XMultiServiceFactory)tParam.getMSF() );
54 try {
55 log.println( "creating a textdocument" );
56 xTextDoc = SOF.createTextDoc( null );
57 } catch ( com.sun.star.uno.Exception e ) {
58 // Some exception occures.FAILED
59 e.printStackTrace( log );
60 throw new StatusException( "Couldn't create document", e );
64 protected void cleanup( TestParameters tParam, PrintWriter log ) {
65 log.println( " disposing xTextDoc " );
66 util.DesktopTools.closeDoc(xTextDoc);
69 /**
70 * creating a Testenvironment for the interfaces to be tested
72 public synchronized TestEnvironment createTestEnvironment( TestParameters Param,
73 PrintWriter log )
74 throws StatusException {
76 XText aText = null;
78 // creation of testobject here
79 // first we write what we are intend to do to log file
80 log.println( "creating a test environment" );
83 // get the bodytext of textdocument here
84 log.println( "getting the TextRange of the text document" );
85 aText = xTextDoc.getText();
86 XTextCursor oCursor = aText.createTextCursor();
88 XInterface oObj = oCursor.getStart();
90 log.println( "creating a new environment for textrange object" );
91 TestEnvironment tEnv = new TestEnvironment( oObj );
93 log.println( "adding TextDocument as mod relation to environment" );
94 tEnv.addObjRelation("TEXTDOC", xTextDoc);
96 System.out.println("Implementation Name: "+utils.getImplName(oObj));
98 return tEnv;
99 } // finish method getTestEnvironment
101 } // finish class SwXTextRange