1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  *
5  * Copyright 2000, 2010 Oracle and/or its affiliates.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * This file is part of OpenOffice.org.
10  *
11  * OpenOffice.org is free software: you can redistribute it and/or modify
12  * it under the terms of the GNU Lesser General Public License version 3
13  * only, as published by the Free Software Foundation.
14  *
15  * OpenOffice.org is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Lesser General Public License version 3 for more details
19  * (a copy is included in the LICENSE file that accompanied this code).
20  *
21  * You should have received a copy of the GNU Lesser General Public License
22  * version 3 along with OpenOffice.org.  If not, see
23  * <http://www.openoffice.org/license.html>
24  * for a copy of the LGPLv3 License.
25  *
26  ************************************************************************/
27 package mod._forms;
28 
29 import com.sun.star.beans.NamedValue;
30 import java.io.PrintWriter;
31 
32 import lib.TestEnvironment;
33 import lib.TestParameters;
34 import util.DBTools;
35 
36 
37 /**
38 * Test for object which is represented by service
39 * <code>com.sun.star.form.component.DatabaseImageControl</code>. <p>
40 * Object implements the following interfaces :
41 * <ul>
42 *  <li> <code>com::sun::star::form::XImageProducerSupplier</code></li>
43 *  <li> <code>com::sun::star::io::XPersistObject</code></li>
44 *  <li> <code>com::sun::star::form::XReset</code></li>
45 *  <li> <code>com::sun::star::form::XBoundComponent</code></li>
46 *  <li> <code>com::sun::star::form::FormComponent</code></li>
47 *  <li> <code>com::sun::star::beans::XFastPropertySet</code></li>
48 *  <li> <code>com::sun::star::awt::UnoControlImageControlModel</code></li>
49 *  <li> <code>com::sun::star::beans::XMultiPropertySet</code></li>
50 *  <li> <code>com::sun::star::form::XUpdateBroadcaster</code>
51 *     <b>(currently nonavailable)</b></li>
52 *  <li> <code>com::sun::star::form::DataAwareControlModel</code></li>
53 *  <li> <code>com::sun::star::beans::XPropertyState</code></li>
54 *  <li> <code>com::sun::star::form::FormControlModel</code></li>
55 *  <li> <code>com::sun::star::form::component::DatabaseImageControl</code></li>
56 *  <li> <code>com::sun::star::container::XNamed</code></li>
57 *  <li> <code>com::sun::star::lang::XComponent</code></li>
58 *  <li> <code>com::sun::star::lang::XEventListener</code></li>
59 *  <li> <code>com::sun::star::beans::XPropertyAccess</code></li>
60 *  <li> <code>com::sun::star::beans::XPropertyContainer</code></li>
61 *  <li> <code>com::sun::star::beans::XPropertySet</code></li>
62 *  <li> <code>com::sun::star::form::XLoadListener</code></li>
63 *  <li> <code>com::sun::star::container::XChild</code></li>
64 * </ul> <p>
65 * This object test <b> is NOT </b> designed to be run in several
66 * threads concurently.
67 *
68 * @see com.sun.star.form.XImageProducerSupplier
69 * @see com.sun.star.io.XPersistObject
70 * @see com.sun.star.form.XReset
71 * @see com.sun.star.form.XBoundComponent
72 * @see com.sun.star.form.FormComponent
73 * @see com.sun.star.beans.XFastPropertySet
74 * @see com.sun.star.awt.UnoControlImageControlModel
75 * @see com.sun.star.beans.XMultiPropertySet
76 * @see com.sun.star.form.XUpdateBroadcaster
77 * @see com.sun.star.form.DataAwareControlModel
78 * @see com.sun.star.beans.XPropertyState
79 * @see com.sun.star.form.FormControlModel
80 * @see com.sun.star.form.component.DatabaseImageControl
81 * @see com.sun.star.container.XNamed
82 * @see com.sun.star.lang.XComponent
83 * @see com.sun.star.lang.XEventListener
84 * @see com.sun.star.beans.XPropertyAccess
85 * @see com.sun.star.beans.XPropertyContainer
86 * @see com.sun.star.beans.XPropertySet
87 * @see com.sun.star.form.XLoadListener
88 * @see com.sun.star.container.XChild
89 * @see ifc.form._XImageProducerSupplier
90 * @see ifc.io._XPersistObject
91 * @see ifc.form._XReset
92 * @see ifc.form._XBoundComponent
93 * @see ifc.form._FormComponent
94 * @see ifc.beans._XFastPropertySet
95 * @see ifc.awt._UnoControlImageControlModel
96 * @see ifc.beans._XMultiPropertySet
97 * @see ifc.form._XUpdateBroadcaster
98 * @see ifc.form._DataAwareControlModel
99 * @see ifc.beans._XPropertyState
100 * @see ifc.form._FormControlModel
101 * @see ifc.form.component._DatabaseImageControl
102 * @see ifc.container._XNamed
103 * @see ifc.lang._XComponent
104 * @see ifc.lang._XEventListener
105 * @see ifc.beans._XPropertySet
106 * @see ifc.form._XLoadListener
107 * @see ifc.container._XChild
108 */
109 public class OImageControlModel extends GenericModelTest {
110     /**
111      * Set some member variable of the super class <CODE>GenericModelTest</CODE>:
112      * <pre>
113      *    super.m_kindOfControl="DatabaseImageControl";
114      *    super.m_ObjectName = "stardiv.one.form.component.DatabaseImageControl";
115      *    NamedValue DataField = new NamedValue();
116      *    DataField.Name = "DataField";
117      *    DataField.Value = DBTools.TST_BINARY_STREAM_F;
118      *    super.m_propertiesToSet.add(DataField);
119      *
120      *    super.m_LCShape_Type = "FixedText";
121      * </pre>
122      * Then <CODE>super.initialize()</CODE> was called.
123      * @param tParam the test parameter
124      * @param log the log writer
125      */
126     protected void initialize(TestParameters tParam, PrintWriter log) {
127 
128         super.initialize(tParam, log);
129 
130         super.m_kindOfControl=  "DatabaseImageControl";
131 
132         super.m_ObjectName = "stardiv.one.form.component.ImageControl";
133 
134         NamedValue DataField = new NamedValue();
135         DataField.Name = "DataField";
136         DataField.Value = DBTools.TST_BINARY_STREAM_F;
137         super.m_propertiesToSet.add(DataField);
138 
139         super.m_LCShape_Type = "FixedText";
140 
141     }    /**
142      * calls <CODE>cleanup()</CODE> from it's super class
143      * @param tParam the test parameter
144      * @param log the log writer
145      */
146     protected void cleanup(TestParameters tParam, PrintWriter log) {
147         super.cleanup(tParam, log);
148     }
149 
150 
151     /**
152      * calls <CODE>createTestEnvironment()</CODE> from it's super class
153      * @param Param the test parameter
154      * @param log the log writer
155      * @return lib.TestEnvironment
156      */
157     protected synchronized TestEnvironment createTestEnvironment(TestParameters Param,
158                                                                  PrintWriter log) {
159         return super.createTestEnvironment(Param, log);
160     }
161 } // finish class OImageControlModel
162