1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: _XIdlReflection.java,v $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 package ifc
.reflection
;
33 import com
.sun
.star
.lang
.XMultiServiceFactory
;
34 import com
.sun
.star
.reflection
.XIdlClass
;
35 import com
.sun
.star
.reflection
.XIdlReflection
;
36 import com
.sun
.star
.uno
.TypeClass
;
37 import lib
.MultiMethodTest
;
40 * Testing <code>com.sun.star.reflection.XIdlReflection</code>
43 * <li><code> forName()</code></li>
44 * <li><code> getType()</code></li>
46 * @see com.sun.star.reflection.XIdlReflection
48 public class _XIdlReflection
extends MultiMethodTest
{
49 public XIdlReflection oObj
= null;
50 protected final static String typeName
= "com.sun.star.container.XNameAccess";
53 * Test calls the method and checks returned interface
54 * <code>com.sun.star.container.XNameAccess</code>: gets the name and the
55 * type and checks it. <p>
56 * Has <b> OK </b> status if returned name is equal to the name of the
57 * interface that was passed as parameter in the method call and if returned
58 * type is equal to <code>com.sun.star.uno.TypeClass.INTERFACE</code>. <p>
60 public void _forName() {
61 boolean result
= true;
62 XIdlClass cls
= oObj
.forName(typeName
);
65 log
.println("Class name: " + cls
.getName());
66 result
&= cls
.getTypeClass() == TypeClass
.INTERFACE
;
67 result
&= typeName
.equals(cls
.getName());
69 log
.println("Method returned null");
73 tRes
.tested("forName()", result
);
77 * Test creates the instance of <code>com.sun.star.io.Pipe</code>,
78 * calls the method using this instance as parameter and checks returned
80 * Has <b> OK </b> status if the instance was created successfully, if
81 * returned value isn't null and no exceptions were thrown. <p>
83 public void _getType() {
84 boolean result
= true;
88 obj
= ((XMultiServiceFactory
)tParam
.getMSF()).
89 createInstance("com.sun.star.io.Pipe") ;
90 } catch (com
.sun
.star
.uno
.Exception e
) {
91 log
.println("Can't create object");
92 tRes
.tested("getType()", false);
98 log
.println("Object wasn't created !");
99 tRes
.tested("getType()", false);
102 XIdlClass cls
= oObj
.getType(obj
);
104 log
.println("The name is " + cls
.getName());
106 tRes
.tested("getType()", cls
!= null);