merge the formfield patch from ooo-build
[ooovba.git] / qadevOOo / tests / java / ifc / container / _XHierarchicalName.java
blob57b6ba5d0433099b743d788e5d27ed9f121379c8
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: _XHierarchicalName.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.container;
32 import com.sun.star.container.XHierarchicalName;
34 import lib.MultiMethodTest;
35 import lib.Status;
36 import lib.StatusException;
39 public class _XHierarchicalName extends MultiMethodTest {
40 public XHierarchicalName oObj;
42 public void _composeHierarchicalName() {
43 String expName = (String) tEnv.getObjRelation("HierachicalName");
44 String element = (String) tEnv.getObjRelation("ElementName");
45 boolean res = false;
47 try {
48 String hn = oObj.composeHierarchicalName(element);
49 res = hn.startsWith(expName);
51 if (!res) {
52 log.println("Getting : " + hn +
53 " but expected it to start with " + expName);
55 } catch (com.sun.star.lang.IllegalArgumentException e) {
56 log.println("Exception " + e.getMessage());
57 } catch (com.sun.star.lang.NoSupportException e) {
58 log.println("Exception " + e.getMessage());
61 tRes.tested("composeHierarchicalName()", res);
64 public void _getHierarchicalName() {
65 String hName = oObj.getHierarchicalName();
66 String expName = (String) tEnv.getObjRelation("HierachicalName");
67 boolean res = true;
68 System.out.println("### "+hName);
69 if (expName != null) {
70 res = hName.startsWith(expName);
72 if (!res) {
73 log.println("Expected the name to start with " + expName);
74 log.println("got " + hName);
76 } else {
77 throw new StatusException(Status.failed(
78 "ObjectRelation 'HierachicalName' missing"));
81 tRes.tested("getHierarchicalName()", res);