Branch libreoffice-5-0-4
[LibreOffice.git] / qadevOOo / tests / java / mod / _forms / OCheckBoxModel.java
bloba902641dcbb60432234285ad26260c4539eb63f6
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 .
18 package mod._forms;
20 import java.io.PrintWriter;
22 import lib.TestEnvironment;
23 import lib.TestParameters;
27 /**
28 * Test for object which is represented by service
29 * <code>com.sun.star.form.component.CheckBox</code>. <p>
30 * Object implements the following interfaces :
31 * <ul>
32 * <li> <code>com::sun::star::beans::XFastPropertySet</code></li>
33 * <li> <code>com::sun::star::io::XPersistObject</code></li>
34 * <li> <code>com::sun::star::form::XReset</code></li>
35 * <li> <code>com::sun::star::form::FormComponent</code></li>
36 * <li> <code>com::sun::star::form::component::CheckBox</code></li>
37 * <li> <code>com::sun::star::beans::XMultiPropertySet</code></li>
38 * <li> <code>com::sun::star::form::DataAwareControlModel</code></li>
39 * <li> <code>com::sun::star::form::XUpdateBroadcaster</code></li>
40 * <li> <code>com::sun::star::beans::XPropertyState</code></li>
41 * <li> <code>com::sun::star::form::FormControlModel</code></li>
42 * <li> <code>com::sun::star::awt::UnoControlCheckBoxModel</code></li>
43 * <li> <code>com::sun::star::container::XNamed</code></li>
44 * <li> <code>com::sun::star::form::XBoundComponent</code></li>
45 * <li> <code>com::sun::star::lang::XComponent</code></li>
46 * <li> <code>com::sun::star::lang::XEventListener</code></li>
47 * <li> <code>com::sun::star::beans::XPropertyAccess</code></li>
48 * <li> <code>com::sun::star::beans::XPropertyContainer</code></li>
49 * <li> <code>com::sun::star::beans::XPropertySet</code></li>
50 * <li> <code>com::sun::star::form::XLoadListener</code></li>
51 * <li> <code>com::sun::star::container::XChild</code></li>
52 * </ul>
53 * This object test <b> is NOT </b> designed to be run in several
54 * threads concurently.
56 * @see com.sun.star.beans.XFastPropertySet
57 * @see com.sun.star.io.XPersistObject
58 * @see com.sun.star.form.XReset
59 * @see com.sun.star.form.FormComponent
60 * @see com.sun.star.form.component.CheckBox
61 * @see com.sun.star.beans.XMultiPropertySet
62 * @see com.sun.star.form.DataAwareControlModel
63 * @see com.sun.star.form.XUpdateBroadcaster
64 * @see com.sun.star.beans.XPropertyState
65 * @see com.sun.star.form
66 * @see com.sun.star.awt.UnoControlCheckBoxModel
67 * @see com.sun.star.container.XNamed
68 * @see com.sun.star.form.XBoundComponent
69 * @see com.sun.star.lang.XComponent
70 * @see com.sun.star.lang.XEventListener
71 * @see com.sun.star.beans.XPropertyAccess
72 * @see com.sun.star.beans.XPropertyContainer
73 * @see com.sun.star.beans.XPropertySet
74 * @see com.sun.star.form.XLoadListener
75 * @see com.sun.star.container.XChild
76 * @see ifc.beans._XFastPropertySet
77 * @see ifc.io._XPersistObject
78 * @see ifc.form._XReset
79 * @see ifc.form._FormComponent
80 * @see ifc.form.component._CheckBox
81 * @see ifc.beans._XMultiPropertySet
82 * @see ifc.form._DataAwareControlModel
83 * @see ifc.form._XUpdateBroadcaster
84 * @see ifc.beans._XPropertyState
85 * @see ifc.form._FormControlModel
86 * @see ifc.awt._UnoControlCheckBoxModel
87 * @see ifc.container._XNamed
88 * @see ifc.form._XBoundComponent
89 * @see ifc.lang._XComponent
90 * @see ifc.lang._XEventListener
91 * @see ifc.beans._XPropertySet
92 * @see ifc.form._XLoadListener
93 * @see ifc.container._XChild
95 public class OCheckBoxModel extends GenericModelTest {
97 /**
98 * Set some member variable of the super class <CODE>GenericModelTest</CODE>:
99 * <pre>
100 * super.m_kindOfControl="CheckBox";
101 * super.m_ObjectName = "stardiv.one.form.component.CheckBox";
102 * super.m_LCShape_Type = "FixedText";
103 * </pre>
104 * Then <CODE>super.initialize()</CODE> was called.
105 * @param tParam the test parameter
106 * @param log the log writer
108 @Override
109 protected void initialize(TestParameters tParam, PrintWriter log) {
111 super.initialize(tParam, log);
113 super.m_kindOfControl= "CheckBox";
115 super.m_ObjectName = "stardiv.one.form.component.CheckBox";
117 super.m_LCShape_Type = "FixedText";
122 * calls <CODE>createTestEnvironment()</CODE> from it's super class
123 * @param Param the test parameter
124 * @param log the log writer
125 * @return lib.TestEnvironment
127 @Override
128 protected synchronized TestEnvironment createTestEnvironment(TestParameters Param,
129 PrintWriter log) {
130 return super.createTestEnvironment(Param, log);
132 } // finish class OCheckBoxModel