1 /*
2  * This file is part of the LibreOffice project.
3  *
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/.
7  *
8  * This file incorporates work covered by the following license notice:
9  *
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 .
17  */
18 package mod._forms;
19 
20 import java.io.PrintWriter;
21 
22 import lib.TestParameters;
23 
24 
25 /**
26  * Test for object which is represented by service
27  * <code>com.sun.star.form.component.GroupBox</code>. <p>
28  * Object implements the following interfaces :
29  * <ul>
30  *  <li> <code>com::sun::star::awt::UnoControlGroupBoxModel</code></li>
31  *  <li> <code>com::sun::star::io::XPersistObject</code></li>
32  *  <li> <code>com::sun::star::container::XChild</code></li>
33  *  <li> <code>com::sun::star::form::FormControlModel</code></li>
34  *  <li> <code>com::sun::star::form::FormComponent</code></li>
35  *  <li> <code>com::sun::star::beans::XPropertyAccess</code></li>
36  *  <li> <code>com::sun::star::beans::XPropertyContainer</code></li>
37  *  <li> <code>com::sun::star::beans::XPropertySet</code></li>
38  *  <li> <code>com::sun::star::beans::XFastPropertySet</code></li>
39  *  <li> <code>com::sun::star::beans::XPropertyState</code></li>
40  *  <li> <code>com::sun::star::container::XNamed</code></li>
41  *  <li> <code>com::sun::star::beans::XMultiPropertySet</code></li>
42  *  <li> <code>com::sun::star::lang::XComponent</code></li>
43  * </ul>
44  * This object test <b> is NOT </b> designed to be run in several
45  * threads concurrently.
46  * @see com.sun.star.awt.UnoControlGroupBoxModel
47  * @see com.sun.star.io.XPersistObject
48  * @see com.sun.star.container.XChild
49  * @see com.sun.star.form
50  * @see com.sun.star.form.FormComponent
51  * @see com.sun.star.beans.XPropertyAccess
52  * @see com.sun.star.beans.XPropertyContainer
53  * @see com.sun.star.beans.XPropertySet
54  * @see com.sun.star.beans.XFastPropertySet
55  * @see com.sun.star.beans.XPropertyState
56  * @see com.sun.star.container.XNamed
57  * @see com.sun.star.beans.XMultiPropertySet
58  * @see com.sun.star.lang.XComponent
59  * @see ifc.awt._UnoControlGroupBoxModel
60  * @see ifc.io._XPersistObject
61  * @see ifc.container._XChild
62  * @see ifc.form._FormControlModel
63  * @see ifc.form._FormComponent
64  * @see ifc.beans._XPropertySet
65  * @see ifc.beans._XFastPropertySet
66  * @see ifc.beans._XPropertyState
67  * @see ifc.container._XNamed
68  * @see ifc.beans._XMultiPropertySet
69  * @see ifc.lang._XComponent
70  */
71 public class OGroupBoxModel extends GenericModelTest {
72 
73     /**
74      * Set some member variable of the super class <CODE>GenericModelTest</CODE>:
75      * <pre>
76      *    <super.m_ChangePropertyName</CODE> = "Text";
77      *    super.m_kindOfControl</CODE>="GroupBox";
78      *    super.m_ObjectName</CODE> = "GroupBox";
79      * </pre>
80      * Then <CODE>super.initialize()</CODE> was called.
81      * @param tParam the test parameter
82      * @param log the log writer
83      */
84 
85     @Override
initialize(TestParameters tParam, PrintWriter log)86     protected void initialize(TestParameters tParam, PrintWriter log) throws Exception {
87 
88         super.initialize(tParam, log);
89 
90         super.m_kindOfControl="GroupBox";
91 
92         super.m_ObjectName = "stardiv.one.form.component.GroupBox";
93 
94         super.m_LCShape_Type = "FixedText";
95 
96         super.m_ChangePropertyName = "Text";
97     }
98 
99 } // finish class OGroupBoxModel
100