1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: _XTasksSupplier.java,v $
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 ************************************************************************/
33 import lib
.MultiMethodTest
;
35 import com
.sun
.star
.frame
.XTasksSupplier
;
39 * Testing <code>com.sun.star.frame.XTasksSupplier</code>
42 * <li><code> getActiveTask() </code></li>
43 * <li><code> getTasks() </code></li>
45 * Test is <b> NOT </b> multithread compilant. <p>
46 * @see com.sun.star.frame.XTasksSupplier
48 public class _XTasksSupplier
extends MultiMethodTest
{
49 public static XTasksSupplier oObj
= null;
53 * Has <b> OK </b> status .
55 public void _getActiveTask() {
56 // XTask active = oObj.getActiveTask() ;
57 // if (active == null)
58 // log.println("There is no active task");
60 // log.println("Active task: " + active.getName());
61 log
.println("DEPRECATED");
63 tRes
.tested("getActiveTask()", true) ;
64 } // finished _getTasks()
68 * Has <b> OK </b> status.
70 public void _getTasks() {
72 // boolean result = true ;
73 // XTask task = null ;
75 // XEnumerationAccess enumAcc = oObj.getTasks() ;
76 // XEnumeration enum = enumAcc.createEnumeration() ;
77 // while (enum.hasMoreElements()) {
80 // task = (XTask) enum.nextElement() ;
81 // } catch (com.sun.star.container.NoSuchElementException e) {
82 // e.printStackTrace(log);
83 // } catch (com.sun.star.lang.WrappedTargetException e) {
84 // e.printStackTrace(log);
87 // log.println("" + cnt + " task: null !!!") ;
89 // log.println("" + cnt + " task: " + task.getName()) ;
90 // result &= (task != null) ;
92 // log.println("Totaly tasks: " + cnt) ;
94 // if (cnt > 0 && result) tRes.tested("getTasks()", true) ;
96 log
.println("DEPRECATED");
98 tRes
.tested("getTasks()", true);
100 } // finished _removeResetListener()
102 } // finished class _XTaskSupplier