1ef39d40dSAndrew Rist /**************************************************************
2cdf0e10cSrcweir  *
3ef39d40dSAndrew Rist  * Licensed to the Apache Software Foundation (ASF) under one
4ef39d40dSAndrew Rist  * or more contributor license agreements.  See the NOTICE file
5ef39d40dSAndrew Rist  * distributed with this work for additional information
6ef39d40dSAndrew Rist  * regarding copyright ownership.  The ASF licenses this file
7ef39d40dSAndrew Rist  * to you under the Apache License, Version 2.0 (the
8ef39d40dSAndrew Rist  * "License"); you may not use this file except in compliance
9ef39d40dSAndrew Rist  * with the License.  You may obtain a copy of the License at
10ef39d40dSAndrew Rist  *
11ef39d40dSAndrew Rist  *   http://www.apache.org/licenses/LICENSE-2.0
12ef39d40dSAndrew Rist  *
13ef39d40dSAndrew Rist  * Unless required by applicable law or agreed to in writing,
14ef39d40dSAndrew Rist  * software distributed under the License is distributed on an
15ef39d40dSAndrew Rist  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16ef39d40dSAndrew Rist  * KIND, either express or implied.  See the License for the
17ef39d40dSAndrew Rist  * specific language governing permissions and limitations
18ef39d40dSAndrew Rist  * under the License.
19ef39d40dSAndrew Rist  *
20ef39d40dSAndrew Rist  *************************************************************/
21ef39d40dSAndrew Rist 
22ef39d40dSAndrew Rist 
23cdf0e10cSrcweir package mod._forms;
24cdf0e10cSrcweir 
25cdf0e10cSrcweir import java.io.PrintWriter;
26cdf0e10cSrcweir 
27cdf0e10cSrcweir import lib.TestEnvironment;
28cdf0e10cSrcweir import lib.TestParameters;
29cdf0e10cSrcweir 
30cdf0e10cSrcweir 
31cdf0e10cSrcweir 
32cdf0e10cSrcweir /**
33cdf0e10cSrcweir * Test for object which is represented by service
34cdf0e10cSrcweir * <code>com.sun.star.form.component.CheckBox</code>. <p>
35cdf0e10cSrcweir * Object implements the following interfaces :
36cdf0e10cSrcweir * <ul>
37cdf0e10cSrcweir *  <li> <code>com::sun::star::beans::XFastPropertySet</code></li>
38cdf0e10cSrcweir *  <li> <code>com::sun::star::io::XPersistObject</code></li>
39cdf0e10cSrcweir *  <li> <code>com::sun::star::form::XReset</code></li>
40cdf0e10cSrcweir *  <li> <code>com::sun::star::form::FormComponent</code></li>
41cdf0e10cSrcweir *  <li> <code>com::sun::star::form::component::CheckBox</code></li>
42cdf0e10cSrcweir *  <li> <code>com::sun::star::beans::XMultiPropertySet</code></li>
43cdf0e10cSrcweir *  <li> <code>com::sun::star::form::DataAwareControlModel</code></li>
44cdf0e10cSrcweir *  <li> <code>com::sun::star::form::XUpdateBroadcaster</code></li>
45cdf0e10cSrcweir *  <li> <code>com::sun::star::beans::XPropertyState</code></li>
46cdf0e10cSrcweir *  <li> <code>com::sun::star::form::FormControlModel</code></li>
47cdf0e10cSrcweir *  <li> <code>com::sun::star::awt::UnoControlCheckBoxModel</code></li>
48cdf0e10cSrcweir *  <li> <code>com::sun::star::container::XNamed</code></li>
49cdf0e10cSrcweir *  <li> <code>com::sun::star::form::XBoundComponent</code></li>
50cdf0e10cSrcweir *  <li> <code>com::sun::star::lang::XComponent</code></li>
51cdf0e10cSrcweir *  <li> <code>com::sun::star::lang::XEventListener</code></li>
52cdf0e10cSrcweir *  <li> <code>com::sun::star::beans::XPropertyAccess</code></li>
53cdf0e10cSrcweir *  <li> <code>com::sun::star::beans::XPropertyContainer</code></li>
54cdf0e10cSrcweir *  <li> <code>com::sun::star::beans::XPropertySet</code></li>
55cdf0e10cSrcweir *  <li> <code>com::sun::star::form::XLoadListener</code></li>
56cdf0e10cSrcweir *  <li> <code>com::sun::star::container::XChild</code></li>
57cdf0e10cSrcweir * </ul>
58cdf0e10cSrcweir * This object test <b> is NOT </b> designed to be run in several
59cdf0e10cSrcweir * threads concurently.
60cdf0e10cSrcweir *
61cdf0e10cSrcweir * @see com.sun.star.beans.XFastPropertySet
62cdf0e10cSrcweir * @see com.sun.star.io.XPersistObject
63cdf0e10cSrcweir * @see com.sun.star.form.XReset
64cdf0e10cSrcweir * @see com.sun.star.form.FormComponent
65cdf0e10cSrcweir * @see com.sun.star.form.component.CheckBox
66cdf0e10cSrcweir * @see com.sun.star.beans.XMultiPropertySet
67cdf0e10cSrcweir * @see com.sun.star.form.DataAwareControlModel
68cdf0e10cSrcweir * @see com.sun.star.form.XUpdateBroadcaster
69cdf0e10cSrcweir * @see com.sun.star.beans.XPropertyState
70*5496b966SPedro Giffuni * @see com.sun.star.form
71cdf0e10cSrcweir * @see com.sun.star.awt.UnoControlCheckBoxModel
72cdf0e10cSrcweir * @see com.sun.star.container.XNamed
73cdf0e10cSrcweir * @see com.sun.star.form.XBoundComponent
74cdf0e10cSrcweir * @see com.sun.star.lang.XComponent
75cdf0e10cSrcweir * @see com.sun.star.lang.XEventListener
76cdf0e10cSrcweir * @see com.sun.star.beans.XPropertyAccess
77cdf0e10cSrcweir * @see com.sun.star.beans.XPropertyContainer
78cdf0e10cSrcweir * @see com.sun.star.beans.XPropertySet
79cdf0e10cSrcweir * @see com.sun.star.form.XLoadListener
80cdf0e10cSrcweir * @see com.sun.star.container.XChild
81cdf0e10cSrcweir * @see ifc.beans._XFastPropertySet
82cdf0e10cSrcweir * @see ifc.io._XPersistObject
83cdf0e10cSrcweir * @see ifc.form._XReset
84cdf0e10cSrcweir * @see ifc.form._FormComponent
85cdf0e10cSrcweir * @see ifc.form.component._CheckBox
86cdf0e10cSrcweir * @see ifc.beans._XMultiPropertySet
87cdf0e10cSrcweir * @see ifc.form._DataAwareControlModel
88cdf0e10cSrcweir * @see ifc.form._XUpdateBroadcaster
89cdf0e10cSrcweir * @see ifc.beans._XPropertyState
90cdf0e10cSrcweir * @see ifc.form._FormControlModel
91cdf0e10cSrcweir * @see ifc.awt._UnoControlCheckBoxModel
92cdf0e10cSrcweir * @see ifc.container._XNamed
93cdf0e10cSrcweir * @see ifc.form._XBoundComponent
94cdf0e10cSrcweir * @see ifc.lang._XComponent
95cdf0e10cSrcweir * @see ifc.lang._XEventListener
96cdf0e10cSrcweir * @see ifc.beans._XPropertySet
97cdf0e10cSrcweir * @see ifc.form._XLoadListener
98cdf0e10cSrcweir * @see ifc.container._XChild
99cdf0e10cSrcweir */
100cdf0e10cSrcweir public class OCheckBoxModel extends GenericModelTest {
101cdf0e10cSrcweir 
102cdf0e10cSrcweir     /**
103cdf0e10cSrcweir      * Set some member variable of the super class <CODE>GenericModelTest</CODE>:
104cdf0e10cSrcweir      * <pre>
105cdf0e10cSrcweir      *    super.m_kindOfControl="CheckBox";
106cdf0e10cSrcweir      *    super.m_ObjectName = "stardiv.one.form.component.CheckBox";
107cdf0e10cSrcweir      *    super.m_LCShape_Type = "FixedText";
108cdf0e10cSrcweir      * </pre>
109cdf0e10cSrcweir      * Then <CODE>super.initialize()</CODE> was called.
110cdf0e10cSrcweir      * @param tParam the test parameter
111cdf0e10cSrcweir      * @param log the log writer
112cdf0e10cSrcweir      */
initialize(TestParameters tParam, PrintWriter log)113cdf0e10cSrcweir     protected void initialize(TestParameters tParam, PrintWriter log) {
114cdf0e10cSrcweir 
115cdf0e10cSrcweir         super.initialize(tParam, log);
116cdf0e10cSrcweir 
117cdf0e10cSrcweir         super.m_kindOfControl=  "CheckBox";
118cdf0e10cSrcweir 
119cdf0e10cSrcweir         super.m_ObjectName = "stardiv.one.form.component.CheckBox";
120cdf0e10cSrcweir 
121cdf0e10cSrcweir         super.m_LCShape_Type = "FixedText";
122cdf0e10cSrcweir 
123cdf0e10cSrcweir     }
124cdf0e10cSrcweir     /**
125cdf0e10cSrcweir      * calls <CODE>cleanup()</CODE> from it's super class
126cdf0e10cSrcweir      * @param tParam the test parameter
127cdf0e10cSrcweir      * @param log the log writer
128cdf0e10cSrcweir      */
cleanup(TestParameters tParam, PrintWriter log)129cdf0e10cSrcweir     protected void cleanup(TestParameters tParam, PrintWriter log) {
130cdf0e10cSrcweir         super.cleanup(tParam, log);
131cdf0e10cSrcweir     }
132cdf0e10cSrcweir 
133cdf0e10cSrcweir 
134cdf0e10cSrcweir     /**
135cdf0e10cSrcweir      * calls <CODE>createTestEnvironment()</CODE> from it's super class
136cdf0e10cSrcweir      * @param Param the test parameter
137cdf0e10cSrcweir      * @param log the log writer
138cdf0e10cSrcweir      * @return lib.TestEnvironment
139cdf0e10cSrcweir      */
createTestEnvironment(TestParameters Param, PrintWriter log)140cdf0e10cSrcweir     protected synchronized TestEnvironment createTestEnvironment(TestParameters Param,
141cdf0e10cSrcweir                                                                  PrintWriter log) {
142cdf0e10cSrcweir         return super.createTestEnvironment(Param, log);
143cdf0e10cSrcweir     }
144cdf0e10cSrcweir }    // finish class OCheckBoxModel
145cdf0e10cSrcweir 
146