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