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=
"script_XInvocationAdapterFactory" script:
language=
"StarBasic">
6 '*************************************************************************
8 ' DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
10 ' Copyright
2008 by Sun Microsystems, Inc.
12 ' OpenOffice.org - a multi-platform office productivity suite
14 ' $RCSfile: script_XInvocationAdapterFactory.xba,v $
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 '*************************************************************************
40 ' Be sure that all variables are dimensioned:
47 '*************************************************************************
49 ' com.sun.star.script.XInvocationAdapterFactory
50 '*************************************************************************
53 Dim pipe As Object, invFac As Object, inv As Object
57 Out.Log(
"Preparing arguments for method call ...")
58 pipe = createUnoService(
"com.sun.star.io.Pipe")
59 invFac = createUnoService(
"com.sun.star.script.Invocation")
60 inv = invFac.createInstanceWithArguments(Array(pipe))
62 Test.StartMethod(
"createAdapter()")
64 tIS = oCoreRefl.forName(
"com.sun.star.io.XInputStream")
65 Out.Log(
"Creating adapter for '" + tIS.Name +
"' interface")
66 adp = oObj.createAdapter(inv, tIS)
67 if NOT isNull(adp) then
68 if NOT hasUnoInterfaces(adp,
"com.sun.star.io.XInputStream") then
70 Out.Log(
"Returned object doesn't support XInputStream")
74 Out.Log(
"NULL was returned.")
77 Test.MethodTested(
"createAdapter()", bOK)