merge the formfield patch from ooo-build
[ooovba.git] / qadevOOo / tests / java / ifc / document / _XDocumentInfoSupplier.java
blob2fd7b86c678a778ed5ba94ea616bb78668776e62
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: _XDocumentInfoSupplier.java,v $
10 * $Revision: 1.4 $
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 ifc.document;
32 import com.sun.star.beans.XPropertySet;
33 import com.sun.star.document.XDocumentInfo;
34 import com.sun.star.document.XDocumentInfoSupplier;
35 import com.sun.star.uno.UnoRuntime;
36 import lib.MultiMethodTest;
38 /**
39 * test the XDocumentInfoSupplier interface.
41 public class _XDocumentInfoSupplier extends MultiMethodTest {
42 public XDocumentInfoSupplier oObj = null;
44 public void _getDocumentInfo() {
45 // returns a com.sun.star.document.DocumentInfo
46 XDocumentInfo info = oObj.getDocumentInfo();
47 XPropertySet xPropertySet = (XPropertySet)UnoRuntime.queryInterface(XPropertySet.class, info);
48 String title = null;
49 try {
50 title = (String)xPropertySet.getPropertyValue("Title");
52 catch(Exception e) {
53 e.printStackTrace((java.io.PrintWriter)log);
54 title = null;
56 log.println("Got document title: " + title);
57 tRes.tested("getDocumentInfo()", title != null);