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 com.sun.star.beans.NamedValue;
21 import java.io.PrintWriter;
22 
23 import lib.TestParameters;
24 
25 import util.DBTools;
26 
27 
28 /**
29  * Test for object which is represented by service
30  * <code>com.sun.star.form.component.FormattedField</code>. <p>
31  * Object implements the following interfaces :
32  * <ul>
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::XBoundComponent</code></li>
36  *  <li> <code>com::sun::star::form::FormComponent</code></li>
37  *  <li> <code>com::sun::star::beans::XFastPropertySet</code></li>
38  *  <li> <code>com::sun::star::beans::XMultiPropertySet</code></li>
39  *  <li> <code>com::sun::star::form::DataAwareControlModel</code></li>
40  *  <li> <code>com::sun::star::form::XUpdateBroadcaster</code></li>
41  *  <li> <code>com::sun::star::form::component::DatabaseFormattedField</code></li>
42  *  <li> <code>com::sun::star::form::FormControlModel</code></li>
43  *  <li> <code>com::sun::star::beans::XPropertyState</code></li>
44  *  <li> <code>com::sun::star::container::XNamed</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::awt::UnoControlFormattedFieldModel</code></li>
52  *  <li> <code>com::sun::star::container::XChild</code></li>
53  * </ul> <p>
54  *
55  * This object test <b> is NOT </b> designed to be run in several
56  * threads concurrently.
57  *
58  * @see com.sun.star.io.XPersistObject
59  * @see com.sun.star.form.XReset
60  * @see com.sun.star.form.XBoundComponent
61  * @see com.sun.star.form.FormComponent
62  * @see com.sun.star.beans.XFastPropertySet
63  * @see com.sun.star.beans.XMultiPropertySet
64  * @see com.sun.star.form.DataAwareControlModel
65  * @see com.sun.star.form.XUpdateBroadcaster
66  * @see com.sun.star.form.component.DatabaseFormattedField
67  * @see com.sun.star.form
68  * @see com.sun.star.beans.XPropertyState
69  * @see com.sun.star.container.XNamed
70  * @see com.sun.star.lang.XComponent
71  * @see com.sun.star.lang.XEventListener
72  * @see com.sun.star.beans.XPropertySet
73  * @see com.sun.star.form.XLoadListener
74  * @see com.sun.star.awt.UnoControlFormattedFieldModel
75  * @see com.sun.star.container.XChild
76  * @see ifc.io._XPersistObject
77  * @see ifc.form._XReset
78  * @see ifc.form._XBoundComponent
79  * @see ifc.form._FormComponent
80  * @see ifc.beans._XFastPropertySet
81  * @see ifc.beans._XMultiPropertySet
82  * @see ifc.form._DataAwareControlModel
83  * @see ifc.form._XUpdateBroadcaster
84  * @see ifc.form.component._DatabaseFormattedField
85  * @see ifc.form._FormControlModel
86  * @see ifc.beans._XPropertyState
87  * @see ifc.container._XNamed
88  * @see ifc.lang._XComponent
89  * @see ifc.lang._XEventListener
90  * @see ifc.beans._XPropertyAccess
91  * @see ifc.beans._XPropertyContainer
92  * @see ifc.beans._XPropertySet
93  * @see ifc.form._XLoadListener
94  * @see ifc.awt._UnoControlFormattedFieldModel
95  * @see ifc.container._XChild
96  */
97 public class OFormattedFieldWrapper extends GenericModelTest {
98     /**
99      * Set some member variable of the super class <CODE>GenericModelTest</CODE>:
100      * <pre>
101      '    super.m_ChangePropertyName = "Text";
102      *    super.m_kindOfControl="DatabaseImageControl";
103      *    super.m_ObjectName = "stardiv.one.form.component.DatabaseImageControl";
104      *    NamedValue DataField = new NamedValue();
105      *    DataField.Name = "DataField";
106      *    DataField.Value = DBTools.TST_BINARY_STREAM_F;
107      *    super.m_propertiesToSet.add(DataField);
108      *
109      *    super.m_LCShape_Type = "FixedText";
110      * </pre>
111      * Then <CODE>super.initialize()</CODE> was called.
112      * @param tParam the test parameter
113      * @param log the log writer
114      */
115     @Override
initialize(TestParameters tParam, PrintWriter log)116     protected void initialize(TestParameters tParam, PrintWriter log) throws Exception {
117 
118         super.initialize(tParam, log);
119 
120         super.m_ChangePropertyName = "Text";
121 
122         super.m_kindOfControl="DatabaseFormattedField";
123 
124         super.m_ObjectName = "stardiv.one.form.component.Edit";
125 
126         NamedValue DataField = new NamedValue();
127         DataField.Name = "DataField";
128         DataField.Value = DBTools.TST_STRING_F;
129         super.m_propertiesToSet.add(DataField);
130 
131         super.m_LCShape_Type = "FixedText";
132 
133     }
134 
135 } // finish class OFormattedFieldWrapper
136