Update ooo320-m1
[ooovba.git] / qadevOOo / tests / java / ifc / frame / _XTasksSupplier.java
blob27459a9687354f37a80829f97c26af7cdb9f288d
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: _XTasksSupplier.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.frame;
33 import lib.MultiMethodTest;
35 import com.sun.star.frame.XTasksSupplier;
38 /**
39 * Testing <code>com.sun.star.frame.XTasksSupplier</code>
40 * interface methods:
41 * <ul>
42 * <li><code> getActiveTask() </code></li>
43 * <li><code> getTasks() </code></li>
44 * </ul><p>
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;
51 /**
52 * DEPRECATED. <p>
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");
59 // else
60 // log.println("Active task: " + active.getName());
61 log.println("DEPRECATED");
63 tRes.tested("getActiveTask()", true) ;
64 } // finished _getTasks()
66 /**
67 * DEPRECATED. <p>
68 * Has <b> OK </b> status.
70 public void _getTasks() {
71 // int cnt = 0 ;
72 // boolean result = true ;
73 // XTask task = null ;
75 // XEnumerationAccess enumAcc = oObj.getTasks() ;
76 // XEnumeration enum = enumAcc.createEnumeration() ;
77 // while (enum.hasMoreElements()) {
78 // cnt ++ ;
79 // try {
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);
85 // }
86 // if (task == null)
87 // log.println("" + cnt + " task: null !!!") ;
88 // else
89 // log.println("" + cnt + " task: " + task.getName()) ;
90 // result &= (task != null) ;
91 // }
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