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.text.XTextDocument; 31 import com.sun.star.uno.XInterface; 32 33 import java.io.PrintWriter; 34 35 import lib.TestCase; 36 import lib.TestEnvironment; 37 import lib.TestParameters; 38 39 import util.WriterTools; 40 import util.utils; 41 42 43 public class UnoControlGroupBoxModel extends TestCase { 44 private static XTextDocument xTextDoc; 45 46 /** 47 * Creates StarOffice Writer document. 48 */ 49 protected void initialize(TestParameters tParam, PrintWriter log) { 50 log.println("creating a textdocument"); 51 xTextDoc = WriterTools.createTextDoc( 52 (XMultiServiceFactory) tParam.getMSF()); 53 } 54 55 /** 56 * Disposes StarOffice Writer document. 57 */ 58 protected void cleanup(TestParameters tParam, PrintWriter log) { 59 log.println(" disposing xTextDoc "); 60 61 util.DesktopTools.closeDoc(xTextDoc); 62 } 63 64 protected synchronized TestEnvironment createTestEnvironment(TestParameters Param, 65 PrintWriter log) { 66 XInterface oObj = null; 67 68 try { 69 oObj = (XInterface) ((XMultiServiceFactory) Param.getMSF()).createInstance( 70 "com.sun.star.awt.UnoControlGroupBoxModel"); 71 } catch (Exception e) { 72 } 73 74 log.println( 75 "creating a new environment for UnoControlGroupBoxModel object"); 76 77 TestEnvironment tEnv = new TestEnvironment(oObj); 78 79 tEnv.addObjRelation("OBJNAME", "stardiv.vcl.controlmodel.GroupBox"); 80 System.out.println("ImplementationName: " + utils.getImplName(oObj)); 81 82 return tEnv; 83 } // finish method getTestEnvironment 84 } // finish class UnoControlGroupBoxModel 85