1 /************************************************************************* 2 * 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 * 5 * Copyright 2000, 2010 Oracle and/or its affiliates. 6 * 7 * OpenOffice.org - a multi-platform office productivity suite 8 * 9 * This file is part of OpenOffice.org. 10 * 11 * OpenOffice.org is free software: you can redistribute it and/or modify 12 * it under the terms of the GNU Lesser General Public License version 3 13 * only, as published by the Free Software Foundation. 14 * 15 * OpenOffice.org is distributed in the hope that it will be useful, 16 * but WITHOUT ANY WARRANTY; without even the implied warranty of 17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 * GNU Lesser General Public License version 3 for more details 19 * (a copy is included in the LICENSE file that accompanied this code). 20 * 21 * You should have received a copy of the GNU Lesser General Public License 22 * version 3 along with OpenOffice.org. If not, see 23 * <http://www.openoffice.org/license.html> 24 * for a copy of the LGPLv3 License. 25 * 26 ************************************************************************/ 27 package mod._toolkit; 28 29 import com.sun.star.lang.XMultiServiceFactory; 30 import com.sun.star.uno.XInterface; 31 32 import java.io.PrintWriter; 33 34 import lib.StatusException; 35 import lib.TestCase; 36 import lib.TestEnvironment; 37 import lib.TestParameters; 38 39 import util.utils; 40 41 42 /** 43 * Test for object which is represented by service 44 * <code>com.sun.star.awt.UnoControlScrollBarModel</code>. <p> 45 * Object implements the following interfaces : 46 * <ul> 47 * <li> <code>com::sun::star::awt::UnoControlScrollBarModel</code></li> 48 * <li> <code>com::sun::star::io::XPersistObject</code></li> 49 * <li> <code>com::sun::star::lang::XComponent</code></li> 50 * <li> <code>com::sun::star::beans::XPropertySet</code></li> 51 * <li> <code>com::sun::star::beans::XMultiPropertySet</code></li> 52 * </ul> 53 * This object test <b> is NOT </b> designed to be run in several 54 * threads concurently. 55 * @see com.sun.star.awt.UnoControlScrollBarModel 56 * @see com.sun.star.io.XPersistObject 57 * @see com.sun.star.lang.XComponent 58 * @see com.sun.star.beans.XPropertySet 59 * @see com.sun.star.beans.XMultiPropertySet 60 * @see ifc.awt._UnoControlScrollBarModel 61 * @see ifc.io._XPersistObject 62 * @see ifc.lang._XComponent 63 * @see ifc.beans._XPropertySet 64 * @see ifc.beans._XMultiPropertySet 65 */ 66 public class UnoControlScrollBarModel extends TestCase { 67 /** 68 * Creating a Testenvironment for the interfaces to be tested. 69 * Creates an instance of the service 70 * <code>com.sun.star.awt.UnoControlScrollBarModel</code>. 71 * Object relations created : 72 * <ul> 73 * <li> <code>'OBJNAME'</code> for 74 * {@link ifc.io._XPersistObject} </li> 75 * </ul> 76 */ 77 public synchronized TestEnvironment createTestEnvironment(TestParameters Param, 78 PrintWriter log) 79 throws StatusException { 80 XInterface oObj = null; 81 82 try { 83 oObj = (XInterface) ((XMultiServiceFactory) Param.getMSF()).createInstance( 84 "com.sun.star.awt.UnoControlScrollBarModel"); 85 } catch (Exception e) { 86 } 87 88 log.println("creating a new environment for object"); 89 90 TestEnvironment tEnv = new TestEnvironment(oObj); 91 92 tEnv.addObjRelation("OBJNAME", "stardiv.vcl.controlmodel.ScrollBar"); 93 System.out.println("ImplementationName: " + utils.getImplName(oObj)); 94 95 return tEnv; 96 } // finish method getTestEnvironment 97 }