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 concurrently.
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
) throws Exception
{
63 SOfficeFactory SOF
= SOfficeFactory
.getFactory( tParam
.getMSF() );
64 log
.println( "creating a textdocument" );
65 xTextDoc
= SOF
.createTextDoc( null );
69 * Disposes text document.
72 protected void cleanup( TestParameters tParam
, PrintWriter log
) {
73 log
.println( " disposing xTextDoc " );
74 util
.DesktopTools
.closeDoc(xTextDoc
);
78 * Creating a TestEnvironment for the interfaces to be tested. Chapter
79 * numbering rules are gotten from text document using interface
80 * <code>XChapterNumberingSupplier</code>.
83 public TestEnvironment
createTestEnvironment(
84 TestParameters tParam
, PrintWriter log
) throws StatusException
{
85 XInterface oObj
= null;
87 XChapterNumberingSupplier oCNSupp
= UnoRuntime
.queryInterface(XChapterNumberingSupplier
.class,xTextDoc
);
88 oObj
= oCNSupp
.getChapterNumberingRules();
90 PropertyValue
[] instance1
= null;
92 instance1
= (PropertyValue
[]) oCNSupp
.getChapterNumberingRules().getByIndex(1);
93 } catch (com
.sun
.star
.lang
.IndexOutOfBoundsException e
) {
95 } catch (com
.sun
.star
.lang
.WrappedTargetException e
) {
99 TestEnvironment tEnv
= new TestEnvironment( oObj
);
101 tEnv
.addObjRelation("INSTANCE1", instance1
);
105 } // finish method getTestEnvironment
107 } // finish class SwXChapterNumbering