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 .
19 import com
.sun
.star
.beans
.NamedValue
;
20 import java
.io
.PrintWriter
;
22 import lib
.TestEnvironment
;
23 import lib
.TestParameters
;
29 * Test for object which is represented by service
30 * <code>com.sun.star.form.component.ComboBox</code>. <p>
31 * Object implements the following interfaces :
33 * <li> <code>com::sun::star::beans::XFastPropertySet</code></li>
34 * <li> <code>com::sun::star::io::XPersistObject</code></li>
35 * <li> <code>com::sun::star::form::XReset</code></li>
36 * <li> <code>com::sun::star::form::FormComponent</code></li>
37 * <li> <code>com::sun::star::awt::UnoControlComboBoxModel</code></li>
38 * <li> <code>com::sun::star::beans::XMultiPropertySet</code></li>
39 * <li> <code>com::sun::star::form::XUpdateBroadcaster</code></li>
40 * <li> <code>com::sun::star::form::DataAwareControlModel</code></li>
41 * <li> <code>com::sun::star::form::component::DatabaseComboBox</code></li>
42 * <li> <code>com::sun::star::beans::XPropertyState</code></li>
43 * <li> <code>com::sun::star::form::FormControlModel</code></li>
44 * <li> <code>com::sun::star::container::XNamed</code></li>
45 * <li> <code>com::sun::star::form::XBoundComponent</code></li>
46 * <li> <code>com::sun::star::form::component::ComboBox</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>
55 * This object test <b> is NOT </b> designed to be run in several
56 * threads concurently.
57 * @see com.sun.star.beans.XFastPropertySet
58 * @see com.sun.star.io.XPersistObject
59 * @see com.sun.star.form.XReset
60 * @see com.sun.star.form.FormComponent
61 * @see com.sun.star.awt.UnoControlComboBoxModel
62 * @see com.sun.star.beans.XMultiPropertySet
63 * @see com.sun.star.form.XUpdateBroadcaster
64 * @see com.sun.star.form.DataAwareControlModel
65 * @see com.sun.star.form.component.DatabaseComboBox
66 * @see com.sun.star.beans.XPropertyState
67 * @see com.sun.star.form
68 * @see com.sun.star.container.XNamed
69 * @see com.sun.star.form.XBoundComponent
70 * @see com.sun.star.form.component.ComboBox
71 * @see com.sun.star.lang.XComponent
72 * @see com.sun.star.lang.XEventListener
73 * @see com.sun.star.beans.XPropertyAccess
74 * @see com.sun.star.beans.XPropertyContainer
75 * @see com.sun.star.beans.XPropertySet
76 * @see com.sun.star.form.XLoadListener
77 * @see com.sun.star.container.XChild
78 * @see ifc.beans._XFastPropertySet
79 * @see ifc.io._XPersistObject
80 * @see ifc.form._XReset
81 * @see ifc.form._FormComponent
82 * @see ifc.awt._UnoControlComboBoxModel
83 * @see ifc.beans._XMultiPropertySet
84 * @see ifc.form._XUpdateBroadcaster
85 * @see ifc.form._DataAwareControlModel
86 * @see ifc.form.component._DatabaseComboBox
87 * @see ifc.beans._XPropertyState
88 * @see ifc.form._FormControlModel
89 * @see ifc.container._XNamed
90 * @see ifc.form._XBoundComponent
91 * @see ifc.form.component._ComboBox
92 * @see ifc.lang._XComponent
93 * @see ifc.lang._XEventListener
94 * @see ifc.beans._XPropertySet
95 * @see ifc.form._XLoadListener
96 * @see ifc.container._XChild
98 public class OComboBoxModel
extends GenericModelTest
{
100 * Set some member variable of the super class <CODE>GenericModelTest</CODE>:
102 * super.m_ChangePropertyName = "Text";
103 * super.m_kindOfControl="ComboBox";
104 * super.m_ObjectName = "stardiv.one.form.component.ComboBox";
106 * NamedValue DataField = new NamedValue();
107 * DataField.Name = "DataField";
108 * DataField.Value = DBTools.TST_STRING_F;
109 * super.m_propertiesToSet.add(DataField);
110 * super.m_LCShape_Type = "FixedText";
112 * Then <CODE>super.initialize()</CODE> was called.
113 * @param tParam the test parameter
114 * @param log the log writer
117 protected void initialize(TestParameters tParam
, PrintWriter log
) {
119 super.initialize(tParam
, log
);
121 super.m_ChangePropertyName
= "Text";
123 super.m_kindOfControl
="ComboBox";
125 super.m_ObjectName
= "stardiv.one.form.component.ComboBox";
127 NamedValue DataField
= new NamedValue();
128 DataField
.Name
= "DataField";
129 DataField
.Value
= DBTools
.TST_STRING_F
;
130 super.m_propertiesToSet
.add(DataField
);
132 super.m_LCShape_Type
= "FixedText";
137 * calls <CODE>createTestEnvironment()</CODE> from it's super class
138 * @param Param the test parameter
139 * @param log the log writer
140 * @return lib.TestEnvironment
143 protected synchronized TestEnvironment
createTestEnvironment(TestParameters Param
,
145 return super.createTestEnvironment(Param
, log
);
148 } // finish class OComboBoxModel