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