2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 import com
.sun
.star
.beans
.PropertyValue
;
22 import java
.io
.PrintWriter
;
24 import lib
.StatusException
;
26 import lib
.TestEnvironment
;
27 import lib
.TestParameters
;
28 import util
.SOfficeFactory
;
30 import com
.sun
.star
.text
.XChapterNumberingSupplier
;
31 import com
.sun
.star
.text
.XTextDocument
;
32 import com
.sun
.star
.uno
.UnoRuntime
;
33 import com
.sun
.star
.uno
.XInterface
;
36 * Test for object, which is a collection of chapter numbering rules of document.
37 * Object implements the following interfaces:
39 * <li> <code>com::sun::star::beans::XPropertySet</code></li>
40 * <li> <code>com::sun::star::container::XIndexAccess</code></li>
41 * <li> <code>com::sun::star::container::XElementAccess</code></li>
42 * <li> <code>com::sun::star::text::NumberingRules</code></li>
44 * This object test <b> is NOT </b> designed to be run in several
45 * threads concurently.
46 * @see com.sun.star.beans.XPropertySet
47 * @see com.sun.star.container.XIndexAccess
48 * @see com.sun.star.container.XElementAccess
49 * @see com.sun.star.text.NumberingRules
50 * @see ifc.beans._XPropertySet
51 * @see ifc.container._XIndexAccess
52 * @see ifc.container._XElementAccess
53 * @see ifc.text._NumberingRules
55 public class SwXChapterNumbering
extends TestCase
{
56 XTextDocument xTextDoc
;
59 * Creates text document.
62 protected void initialize( TestParameters tParam
, PrintWriter log
) {
63 SOfficeFactory SOF
= SOfficeFactory
.getFactory( tParam
.getMSF() );
65 log
.println( "creating a textdocument" );
66 xTextDoc
= SOF
.createTextDoc( null );
67 } catch ( com
.sun
.star
.uno
.Exception e
) {
68 e
.printStackTrace( log
);
69 throw new StatusException( "Couldn't create document", e
);
74 * Disposes text document.
77 protected void cleanup( TestParameters tParam
, PrintWriter log
) {
78 log
.println( " disposing xTextDoc " );
79 util
.DesktopTools
.closeDoc(xTextDoc
);
83 * Creating a Testenvironment for the interfaces to be tested. Chapter
84 * numbering rules are gotten from text document using interface
85 * <code>XChapterNumberingSupplier</code>.
88 public TestEnvironment
createTestEnvironment(
89 TestParameters tParam
, PrintWriter log
) throws StatusException
{
90 XInterface oObj
= null;
92 XChapterNumberingSupplier oCNSupp
= UnoRuntime
.queryInterface(XChapterNumberingSupplier
.class,xTextDoc
);
93 oObj
= oCNSupp
.getChapterNumberingRules();
95 PropertyValue
[] instance1
= null;
97 instance1
= (PropertyValue
[]) oCNSupp
.getChapterNumberingRules().getByIndex(1);
98 } catch (com
.sun
.star
.lang
.IndexOutOfBoundsException e
) {
100 } catch (com
.sun
.star
.lang
.WrappedTargetException e
) {
104 TestEnvironment tEnv
= new TestEnvironment( oObj
);
106 tEnv
.addObjRelation("INSTANCE1", instance1
);
110 } // finish method getTestEnvironment
112 } // finish class SwXChapterNumbering