merge the formfield patch from ooo-build
[ooovba.git] / qadevOOo / tests / java / ifc / ui / _XModuleUIConfigurationManagerSupplier.java
blob787e7828bfff2b89fbd6de1e905fe058ce804155
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: _XModuleUIConfigurationManagerSupplier.java,v $
10 * $Revision: 1.5 $
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.ui;
33 import com.sun.star.lang.XServiceInfo;
34 import com.sun.star.uno.UnoRuntime;
35 import com.sun.star.ui.XModuleUIConfigurationManagerSupplier;
36 import lib.MultiMethodTest;
38 public class _XModuleUIConfigurationManagerSupplier extends MultiMethodTest {
40 public XModuleUIConfigurationManagerSupplier oObj;
42 public void _getUIConfigurationManager() {
43 String configManagerName = null;
44 String implementationName = null;
45 try {
46 configManagerName = (String)tEnv.getObjRelation("XModuleUIConfigurationManagerSupplier.ConfigurationManager");
47 implementationName = (String)tEnv.getObjRelation("XModuleUIConfigurationManagerSupplier.ConfigManagerImplementationName");
49 // get a config manager for the StartModule
50 Object o = oObj.getUIConfigurationManager(configManagerName);
51 XServiceInfo xServiceInfo = (XServiceInfo)UnoRuntime.queryInterface(XServiceInfo.class, o);
52 String impName = xServiceInfo.getImplementationName();
53 boolean result = impName.equals(implementationName);
54 if (!result) {
55 log.println("Returned implementation was '" + impName +
56 "' but should have been '" + implementationName + "'");
58 tRes.tested("getUIConfigurationManager()", result);
59 return;
61 catch(com.sun.star.container.NoSuchElementException e) {
62 log.println("Could not get a configuration manager called '" + configManagerName + "'");
63 e.printStackTrace(log);
65 tRes.tested("getUIConfigurationManager()", false);