xref: /AOO41X/main/qadevOOo/tests/java/ifc/text/_XAutoTextEntry.java (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 
28 package ifc.text;
29 
30 import lib.MultiMethodTest;
31 import lib.Status;
32 import lib.StatusException;
33 
34 import com.sun.star.text.XAutoTextEntry;
35 import com.sun.star.text.XTextDocument;
36 
37 /**
38  * Testing <code>com.sun.star.text.XAutoTextEntry</code>
39  * interface methods :
40  * <ul>
41  *  <li><code> applyTo()</code></li>
42  * </ul> <p>
43  * This test needs the following object relations :
44  * <ul>
45  *  <li> <code>'TEXTDOC'</code> (of type <code>XTextDocument</code>):
46  *   the text document for creating a text range.</li>
47  * <ul> <p>
48  * Test is <b> NOT </b> multithread compilant. <p>
49  * @see com.sun.star.text.XAutoTextEntry
50  */
51 public class _XAutoTextEntry extends MultiMethodTest {
52 
53     public XAutoTextEntry oObj = null;
54 
55     /**
56      * Applies the entry to a range created for the text document obtained from
57      * relation 'TEXTDOC'. <p>
58      * Has <b> OK </b> status if text of the document was changed. <p>
59      */
60     public void _applyTo() {
61         XTextDocument textDoc = (XTextDocument)tEnv.getObjRelation("TEXTDOC");
62         if (textDoc == null) {
63             throw new StatusException
64                 (Status.failed("Couldn't get relation 'TEXTDOC'"));
65         }
66 
67         String oldText = textDoc.getText().getString();
68         oObj.applyTo(textDoc.getText().createTextCursor());
69         String newText = textDoc.getText().getString();
70 
71         log.println("Old text:\n" + oldText + "\nNew text:\n" + newText);
72 
73         tRes.tested("applyTo()", ! newText.equals(oldText));
74     }
75 
76 }  // finish class _XAutoTextEntry
77 
78 
79