merge the formfield patch from ooo-build
[ooovba.git] / qadevOOo / tests / java / ifc / sheet / _XDataPilotFieldGrouping.java
blobdbc086c309824845717c28ae147fb02c48dff2af
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: _XDataPilotFieldGrouping.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 ************************************************************************/
31 package ifc.sheet;
33 import com.sun.star.container.XNameAccess;
34 import com.sun.star.sheet.DataPilotFieldGroupBy;
35 import com.sun.star.sheet.DataPilotFieldGroupInfo;
36 import com.sun.star.sheet.XDataPilotField;
37 import com.sun.star.sheet.XDataPilotFieldGrouping;
38 import com.sun.star.uno.UnoRuntime;
39 import lib.MultiMethodTest;
41 /**
43 * @author sw93809
45 public class _XDataPilotFieldGrouping extends MultiMethodTest
47 public XDataPilotFieldGrouping oObj = null;
49 public void _createNameGroup() {
50 boolean result = true;
51 try {
52 XDataPilotField xDataPilotField = (XDataPilotField) UnoRuntime.queryInterface(XDataPilotField.class, oObj);
53 XNameAccess xNameAccess = (XNameAccess) UnoRuntime.queryInterface(XNameAccess.class, xDataPilotField.getItems ());
54 String[] elements = xNameAccess.getElementNames ();
55 oObj.createNameGroup(elements);
56 } catch (com.sun.star.lang.IllegalArgumentException e) {
57 log.println("Exception while checking createNameGroup"+e);
58 result = false;
60 tRes.tested ("createNameGroup()",result);
63 public void _createDateGroup() {
64 boolean result = true;
65 try {
66 DataPilotFieldGroupInfo aInfo = new DataPilotFieldGroupInfo();
67 aInfo.GroupBy = DataPilotFieldGroupBy.MONTHS;
68 aInfo.HasDateValues = true;
69 oObj.createDateGroup(aInfo);
70 } catch (com.sun.star.lang.IllegalArgumentException e) {
71 log.println("Exception while checking createDateGroup"+e);
72 result = false;
74 tRes.tested ("createDateGroup()",result);