Branch libreoffice-5-0-4
[LibreOffice.git] / qadevOOo / tests / java / ifc / util / _XModifyBroadcaster.java
bloba8fd74314e6b3de18bb0e3863f9a634211231782
1 /*
2 * This file is part of the LibreOffice project.
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 * This file incorporates work covered by the following license notice:
10 * Licensed to the Apache Software Foundation (ASF) under one or more
11 * contributor license agreements. See the NOTICE file distributed
12 * with this work for additional information regarding copyright
13 * ownership. The ASF licenses this file to you under the Apache
14 * License, Version 2.0 (the "License"); you may not use this file
15 * except in compliance with the License. You may obtain a copy of
16 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
19 package ifc.util;
21 import lib.MultiMethodTest;
23 import com.sun.star.lang.EventObject;
24 import com.sun.star.util.XModifyBroadcaster;
25 import com.sun.star.util.XModifyListener;
27 /**
28 * Testing <code>com.sun.star.util.XModifyBroadcaster</code>
29 * interface methods :
30 * <ul>
31 * <li><code>addModifyListener()</code></li>
32 * <li><code>removeModifyListener()</code></li>
33 * </ul> <p>
35 * Result checking is not performed. Modify
36 * listeners are called only in case of
37 * interaction with UI. <p>
39 * Test is <b> NOT </b> multithread compliant. <p>
40 * @see com.sun.star.util.XModifyBroadcaster
42 public class _XModifyBroadcaster extends MultiMethodTest {
43 public XModifyBroadcaster oObj = null;
45 boolean modified = false;
47 protected class TestModifyListener implements XModifyListener {
48 public void disposing ( EventObject oEvent ) {}
49 public void modified (EventObject aEvent ) {
50 modified = true;
54 private final TestModifyListener listener = new TestModifyListener();
56 /**
57 * Just calls the method. <p>
58 * Has <b> OK </b> status if no runtime exceptions occurred
60 public void _addModifyListener() {
61 log.println("'Modified' events are called only in case"+
62 " of user interaction.");
63 oObj.addModifyListener(listener);
64 tRes.tested("addModifyListener()", true);
67 /**
68 * Just calls the method. <p>
69 * Has <b> OK </b> status if no runtime exceptions occurred
71 public void _removeModifyListener() {
72 requiredMethod("addModifyListener()");
73 oObj.removeModifyListener(listener);
74 tRes.tested("removeModifyListener()", true);
76 }// finish class _XModifyBroadcaster