merge the formfield patch from ooo-build
[ooovba.git] / qadevOOo / tests / java / mod / _sc / ScDocumentConfiguration.java
blob216e6b95a1196163d06d688e164df762c67808ad
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: ScDocumentConfiguration.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 ************************************************************************/
30 package mod._sc;
32 import com.sun.star.lang.XMultiServiceFactory;
33 import com.sun.star.sheet.XSpreadsheetDocument;
34 import com.sun.star.uno.UnoRuntime;
35 import com.sun.star.uno.XInterface;
37 import java.io.PrintWriter;
39 import lib.StatusException;
40 import lib.TestCase;
41 import lib.TestEnvironment;
42 import lib.TestParameters;
44 import util.DesktopTools;
45 import util.SOfficeFactory;
48 public class ScDocumentConfiguration extends TestCase {
49 static XSpreadsheetDocument xSheetDoc = null;
51 protected void initialize(TestParameters tParam, PrintWriter log) {
52 // get a soffice factory object
53 SOfficeFactory SOF = SOfficeFactory.getFactory(
54 (XMultiServiceFactory) tParam.getMSF());
56 try {
57 log.println("creating a sheetdocument");
58 xSheetDoc = SOF.createCalcDoc(null);
59 } catch (com.sun.star.uno.Exception e) {
60 // Some exception occures.FAILED
61 e.printStackTrace(log);
62 throw new StatusException("Couldn't create document", e);
66 /**
67 * Disposes Spreadsheet document.
69 protected void cleanup(TestParameters tParam, PrintWriter log) {
70 log.println(" disposing xSheetDoc ");
71 DesktopTools.closeDoc(xSheetDoc);
74 protected TestEnvironment createTestEnvironment(TestParameters tParam,
75 PrintWriter log) {
76 XMultiServiceFactory docMSF = (XMultiServiceFactory) UnoRuntime.queryInterface(
77 XMultiServiceFactory.class,
78 xSheetDoc);
79 Object oObj = null;
81 try {
82 oObj = docMSF.createInstance("com.sun.star.sheet.DocumentSettings");
83 } catch (com.sun.star.uno.Exception e) {
84 throw new StatusException("Couldn't create document settings", e);
87 log.println("Implementationname: " + util.utils.getImplName(oObj));
89 TestEnvironment tEnv = new TestEnvironment((XInterface) oObj);
91 return tEnv;