forked from amazingfate/loongoffice
98 lines
3.2 KiB
Java
98 lines
3.2 KiB
Java
/*************************************************************************
|
|
*
|
|
* OpenOffice.org - a multi-platform office productivity suite
|
|
*
|
|
* $RCSfile: _StackableDiagram.java,v $
|
|
*
|
|
* $Revision: 1.3 $
|
|
*
|
|
* last change: $Author: rt $ $Date: 2005-09-08 23:12:50 $
|
|
*
|
|
* The Contents of this file are made available subject to
|
|
* the terms of GNU Lesser General Public License Version 2.1.
|
|
*
|
|
*
|
|
* GNU Lesser General Public License Version 2.1
|
|
* =============================================
|
|
* Copyright 2005 by Sun Microsystems, Inc.
|
|
* 901 San Antonio Road, Palo Alto, CA 94303, USA
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License version 2.1, as published by the Free Software Foundation.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
* MA 02111-1307 USA
|
|
*
|
|
************************************************************************/
|
|
|
|
package ifc.chart;
|
|
|
|
import lib.MultiPropertyTest;
|
|
import lib.Status;
|
|
import lib.StatusException;
|
|
|
|
import com.sun.star.beans.XPropertySet;
|
|
import com.sun.star.chart.XChartDocument;
|
|
import com.sun.star.chart.XDiagram;
|
|
import com.sun.star.uno.UnoRuntime;
|
|
|
|
/**
|
|
* Testing <code>com.sun.star.chart.StackableDiagram</code>
|
|
* service properties :
|
|
* <ul>
|
|
* <li><code> Percent</code></li>
|
|
* <li><code> Stacked</code></li>
|
|
* </ul> <p>
|
|
* This test needs the following object relations :
|
|
* <ul>
|
|
* <li> <code>'CHARTDOC'</code> (of type <code>XChartDocument</code>):
|
|
* to have reference to chart document </li>
|
|
* <li> <code>'STACK'</code> (of type <code>XDiagram</code>):
|
|
* relation that use as parameter for method setDiagram of chart document </li>
|
|
* </ul> <p>
|
|
* @see com.sun.star.chart.StackableDiagram
|
|
*/
|
|
public class _StackableDiagram extends MultiPropertyTest {
|
|
|
|
XChartDocument doc = null;
|
|
XDiagram oldDiagram = null;
|
|
|
|
/**
|
|
* Retrieves object relations and prepares a chart document.
|
|
* @throws StatusException if one of relations not found.
|
|
*/
|
|
protected void before() {
|
|
log.println("Setting Diagram type to LineDiagram");
|
|
doc = (XChartDocument) tEnv.getObjRelation("CHARTDOC");
|
|
if (doc == null) throw new StatusException(Status.failed
|
|
("Relation 'CHARTDOC' not found"));
|
|
|
|
XDiagram stack = (XDiagram) tEnv.getObjRelation("STACK");
|
|
if (stack == null) throw new StatusException(Status.failed
|
|
("Relation 'STACK' not found"));
|
|
|
|
oldDiagram = doc.getDiagram();
|
|
|
|
doc.setDiagram(stack);
|
|
oObj = (XPropertySet)
|
|
UnoRuntime.queryInterface( XPropertySet.class, doc.getDiagram() );
|
|
}
|
|
|
|
/**
|
|
* Sets the old diagram for a chart document.
|
|
*/
|
|
protected void after() {
|
|
doc.setDiagram(oldDiagram);
|
|
}
|
|
|
|
} // EOF StackableDiagram
|
|
|