merge the formfield patch from ooo-build
[ooovba.git] / qadevOOo / tests / basic / mod / sw / SwXStyleFamily / sw_SwXStyleFamily.xba
blobf21381df51f60b09aaa796444ecd3cffbf5a6ce5
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
3 <script:module xmlns:script="http://openoffice.org/2000/script" script:name="sw_SwXStyleFamily" script:language="StarBasic">
6 '*************************************************************************
8 ' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
9 '
10 ' Copyright 2008 by Sun Microsystems, Inc.
12 ' OpenOffice.org - a multi-platform office productivity suite
14 ' $RCSfile: sw_SwXStyleFamily.xba,v $
16 ' $Revision: 1.3 $
18 ' This file is part of OpenOffice.org.
20 ' OpenOffice.org is free software: you can redistribute it and/or modify
21 ' it under the terms of the GNU Lesser General Public License version 3
22 ' only, as published by the Free Software Foundation.
24 ' OpenOffice.org is distributed in the hope that it will be useful,
25 ' but WITHOUT ANY WARRANTY; without even the implied warranty of
26 ' MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 ' GNU Lesser General Public License version 3 for more details
28 ' (a copy is included in the LICENSE file that accompanied this code).
30 ' You should have received a copy of the GNU Lesser General Public License
31 ' version 3 along with OpenOffice.org. If not, see
32 ' <http://www.openoffice.org/license.html>
33 ' for a copy of the LGPLv3 License.
35 '*************************************************************************
36 '*************************************************************************
41 ' REQUIRED VARIABLES for interface/service tests:
43 ' Requiered for com.sun.star.container.XNameContainer
44 Global oInstance As Variant 'instance to insert
47 ' Requiered for com.sun.star.container.XNameReplace
48 Global cNameToReplace As String 'name of instance to be replased
49 Global oReplaceInstance As Variant 'instance, that will be inserted
50 'instead old one
53 Sub CreateObj()
55 '*************************************************************************
56 ' COMPONENT:
57 ' sw.SwXStyleFamily
58 '*************************************************************************
59 On Error Goto ErrHndl
61 Dim bOK As Boolean
62 bOK = true
64 oDoc = utils.createDocument("swriter", cObjectName)
66 oCursor = oDoc.Text.createTextCursor()
68 oInstance = oDoc.createInstance("com.sun.star.style.CharacterStyle")
70 oReplaceInstance = oDoc.createInstance("com.sun.star.style.CharacterStyle")
73 oObj = oDoc.getStyleFamilies.getByIndex(0)
74 oObj.insertByName(cObjectName, oDoc.createInstance("com.sun.star.style.CharacterStyle"))
75 cNameToReplace = cObjectName
78 Exit Sub
79 ErrHndl:
80 Test.Exception()
81 End Sub
82 </script:module>