tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / qadevOOo / tests / java / ifc / util / _XModifyBroadcaster.java
blob22fa066ab41a93eeeaf315379790eeca57e154aa
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 private static class TestModifyListener implements XModifyListener {
46 public void disposing ( EventObject oEvent ) {}
47 public void modified (EventObject aEvent ) {}
50 private final TestModifyListener listener = new TestModifyListener();
52 /**
53 * Just calls the method. <p>
54 * Has <b> OK </b> status if no runtime exceptions occurred
56 public void _addModifyListener() {
57 log.println("'Modified' events are called only in case"+
58 " of user interaction.");
59 oObj.addModifyListener(listener);
60 tRes.tested("addModifyListener()", true);
63 /**
64 * Just calls the method. <p>
65 * Has <b> OK </b> status if no runtime exceptions occurred
67 public void _removeModifyListener() {
68 requiredMethod("addModifyListener()");
69 oObj.removeModifyListener(listener);
70 tRes.tested("removeModifyListener()", true);
72 }// finish class _XModifyBroadcaster