1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 package ifc.form;
25 
26 import lib.MultiMethodTest;
27 
28 import com.sun.star.form.XLoadListener;
29 
30 /**
31 * Testing <code>com.sun.star.form.XLoadListener</code>
32 * interface methods :
33 * <ul>
34 *  <li><code> loaded()</code></li>
35 *  <li><code> unloading()</code></li>
36 *  <li><code> unloaded()</code></li>
37 *  <li><code> reloading()</code></li>
38 *  <li><code> reloaded()</code></li>
39 * </ul> <p>
40 * This interface methods are not testable, because their
41 * behaviour is not documented.
42 * @see com.sun.star.form.XLoadListener
43 */
44 public class _XLoadListener extends MultiMethodTest {
45 
46     public XLoadListener oObj = null;
47 
48     /**
49     * Always has <b>OK</b> status.
50     */
_loaded()51     public void _loaded() {
52         log.println("nothing to test here");
53         tRes.tested("loaded()",true);
54     }
55 
56     /**
57     * Always has <b>OK</b> status.
58     */
_reloaded()59     public void _reloaded() {
60         log.println("nothing to test here");
61         tRes.tested("reloaded()",true);
62     }
63 
64     /**
65     * Always has <b>OK</b> status.
66     */
_reloading()67     public void _reloading() {
68         log.println("nothing to test here");
69         tRes.tested("reloading()",true);
70     }
71 
72     /**
73     * Always has <b>OK</b> status.
74     */
_unloaded()75     public void _unloaded() {
76         log.println("nothing to test here");
77         tRes.tested("unloaded()",true);
78     }
79 
80     /**
81     * Always has <b>OK</b> status.
82     */
_unloading()83     public void _unloading() {
84         log.println("nothing to test here");
85         tRes.tested("unloading()",true);
86     }
87 
88 } //EOF of XLoadListener
89 
90 
91