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.awt.tree.XMutableTreeDataModel; 30 import com.sun.star.awt.tree.XMutableTreeNode; 31 import com.sun.star.lang.XMultiServiceFactory; 32 import com.sun.star.text.XTextDocument; 33 import com.sun.star.uno.UnoRuntime; 34 import com.sun.star.uno.XInterface; 35 36 import java.io.PrintWriter; 37 38 import lib.TestCase; 39 import lib.TestEnvironment; 40 import lib.TestParameters; 41 42 import util.WriterTools; 43 import util.utils; 44 45 46 public class MutableTreeDataModel extends TestCase { 47 private static XTextDocument xTextDoc; 48 private static XInterface oObj = null; 49 50 /** 51 * Creates StarOffice Writer document. 52 */ 53 protected void initialize(TestParameters tParam, PrintWriter log) { 54 log.println("creating a textdocument"); 55 xTextDoc = WriterTools.createTextDoc( 56 (XMultiServiceFactory) tParam.getMSF()); 57 } 58 59 /** 60 * Disposes StarOffice Writer document. 61 */ 62 protected void cleanup(TestParameters tParam, PrintWriter log) { 63 log.println(" disposing xTextDoc "); 64 65 util.DesktopTools.closeDoc(xTextDoc); 66 } 67 68 protected synchronized TestEnvironment createTestEnvironment(TestParameters Param, 69 PrintWriter log) { 70 71 try { 72 oObj = (XInterface) ((XMultiServiceFactory) Param.getMSF()).createInstance( 73 "com.sun.star.awt.tree.MutableTreeDataModel"); 74 } catch (Exception e) { 75 } 76 77 log.println( 78 "creating a new environment for MutableTreeDataModel object"); 79 80 TestEnvironment tEnv = new TestEnvironment(oObj); 81 82 tEnv.addObjRelation("OBJNAME", "toolkit.MutableTreeDataModel"); 83 log.println("ImplementationName: " + utils.getImplName(oObj)); 84 85 tEnv.addObjRelation("XTreeDataModelListenerEvent", new XTreeDataModelListenerEvent()); 86 87 return tEnv; 88 } // finish method getTestEnvironment 89 90 public class XTreeDataModelListenerEvent implements ifc.awt.tree._XTreeDataModel.XTreeDataModelListenerEvent{ 91 92 public void fireEvent(){ 93 94 XMutableTreeDataModel xModel = (XMutableTreeDataModel) UnoRuntime.queryInterface(XMutableTreeDataModel.class, oObj); 95 XMutableTreeNode node = xModel.createNode("EventNode", true); 96 try { 97 xModel.setRoot(node); 98 } catch (com.sun.star.lang.IllegalArgumentException ex) { 99 log.println("ERROR: could not preform event: " + ex.toString()); 100 ex.printStackTrace(); 101 } 102 103 } 104 } 105 } // finish class UnoControlListBoxModel 106