merge the formfield patch from ooo-build
[ooovba.git] / qadevOOo / tests / java / mod / _forms / OEditModel.java
blob91a58adcff12ed98a929cad0dba11fdedd198e2c
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: OEditModel.java,v $
10 * $Revision: 1.7 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
30 package mod._forms;
32 import com.sun.star.beans.NamedValue;
33 import java.io.PrintWriter;
35 import lib.TestEnvironment;
36 import lib.TestParameters;
37 import util.DBTools;
41 /**
42 * Test for object which is represented by service
43 * <code>com.sun.star.form.component.TextField</code>. <p>
44 * Object implements the following interfaces :
45 * <ul>
46 * <li> <code>com::sun::star::io::XPersistObject</code></li>
47 * <li> <code>com::sun::star::form::XReset</code></li>
48 * <li> <code>com::sun::star::form::XBoundComponent</code></li>
49 * <li> <code>com::sun::star::form::FormComponent</code></li>
50 * <li> <code>com::sun::star::beans::XFastPropertySet</code></li>
51 * <li> <code>com::sun::star::beans::XMultiPropertySet</code></li>
52 * <li> <code>com::sun::star::form::XUpdateBroadcaster</code></li>
53 * <li> <code>com::sun::star::form::component::TextField</code></li>
54 * <li> <code>com::sun::star::form::DataAwareControlModel</code></li>
55 * <li> <code>com::sun::star::beans::XPropertyState</code></li>
56 * <li> <code>com::sun::star::form::FormControlModel</code></li>
57 * <li> <code>com::sun::star::container::XNamed</code></li>
58 * <li> <code>com::sun::star::awt::UnoControlEditModel</code></li>
59 * <li> <code>com::sun::star::form::component::DatabaseTextField</code></li>
60 * <li> <code>com::sun::star::lang::XComponent</code></li>
61 * <li> <code>com::sun::star::lang::XEventListener</code></li>
62 * <li> <code>com::sun::star::beans::XPropertyAccess</code></li>
63 * <li> <code>com::sun::star::beans::XPropertyContainer</code></li>
64 * <li> <code>com::sun::star::beans::XPropertySet</code></li>
65 * <li> <code>com::sun::star::form::XLoadListener</code></li>
66 * <li> <code>com::sun::star::container::XChild</code></li>
67 * </ul>
68 * The following files used by this test :
69 * <ul>
70 * <li><b> TestDB </b> (directory) : directory with test database </li>
71 * <li><b> TestDB/TestDB.dbf </b> : table file. See
72 * {@link util.DBTools DBTools} class for more information.</li>
73 * </ul> <p>
74 * This object test <b> is NOT </b> designed to be run in several
75 * threads concurently.
76 * @see com.sun.star.io.XPersistObject
77 * @see com.sun.star.form.XReset
78 * @see com.sun.star.form.XBoundComponent
79 * @see com.sun.star.form.FormComponent
80 * @see com.sun.star.beans.XFastPropertySet
81 * @see com.sun.star.beans.XMultiPropertySet
82 * @see com.sun.star.form.XUpdateBroadcaster
83 * @see com.sun.star.form.component.TextField
84 * @see com.sun.star.form.DataAwareControlModel
85 * @see com.sun.star.beans.XPropertyState
86 * @see com.sun.star.form.FormControlModel
87 * @see com.sun.star.container.XNamed
88 * @see com.sun.star.awt.UnoControlEditModel
89 * @see com.sun.star.form.component.DatabaseTextField
90 * @see com.sun.star.lang.XComponent
91 * @see com.sun.star.lang.XEventListener
92 * @see com.sun.star.beans.XPropertyAccess
93 * @see com.sun.star.beans.XPropertyContainer
94 * @see com.sun.star.beans.XPropertySet
95 * @see com.sun.star.form.XLoadListener
96 * @see com.sun.star.container.XChild
97 * @see ifc.io._XPersistObject
98 * @see ifc.form._XReset
99 * @see ifc.form._XBoundComponent
100 * @see ifc.form._FormComponent
101 * @see ifc.beans._XFastPropertySet
102 * @see ifc.beans._XMultiPropertySet
103 * @see ifc.form._XUpdateBroadcaster
104 * @see ifc.form.component._TextField
105 * @see ifc.form._DataAwareControlModel
106 * @see ifc.beans._XPropertyState
107 * @see ifc.form._FormControlModel
108 * @see ifc.container._XNamed
109 * @see ifc.awt._UnoControlEditModel
110 * @see ifc.form.component._DatabaseTextField
111 * @see ifc.lang._XComponent
112 * @see ifc.lang._XEventListener
113 * @see ifc.beans._XPropertySet
114 * @see ifc.form._XLoadListener
115 * @see ifc.container._XChild
117 public class OEditModel extends GenericModelTest {
120 * Set some member variable of the super class <CODE>GenericModelTest</CODE>:
121 * <pre>
122 * <super.m_ChangePropertyName</CODE> = "Text";
123 * super.m_kindOfControl</CODE>="TextField";
124 * super.m_ObjectName</CODE> = "Edit";
125 * NamedValue myProp = new NamedValue();
126 * myProp.Name = "DataField";
127 * myProp.Value = DBTools.TST_STRING_F;
128 * super.m_propertiesToSet.add(myProp);
129 * super.m_LCShape_Type = "FixedText";
130 * </pre>
131 * Then <CODE>super.initialize()</CODE> was called.
132 * @param tParam the test parameter
133 * @param log the log writer
136 protected void initialize(TestParameters tParam, PrintWriter log) {
138 super.initialize(tParam, log);
140 super.m_kindOfControl="TextField";
142 super.m_ObjectName = "stardiv.one.form.component.Edit";
144 NamedValue myProp = new NamedValue();
145 myProp.Name = "DataField";
146 myProp.Value = DBTools.TST_STRING_F;
147 super.m_propertiesToSet.add(myProp);
149 super.m_LCShape_Type = "FixedText";
151 super.m_ChangePropertyName = "Text";
154 * calls <CODE>cleanup()</CODE> from it's super class
155 * @param tParam the test parameter
156 * @param log the log writer
158 protected void cleanup(TestParameters tParam, PrintWriter log) {
159 super.cleanup(tParam, log);
164 * calls <CODE>createTestEnvironment()</CODE> from it's super class
165 * @param Param the test parameter
166 * @param log the log writer
167 * @return lib.TestEnvironment
169 protected synchronized TestEnvironment createTestEnvironment(TestParameters Param,
170 PrintWriter log) {
171 return super.createTestEnvironment(Param, log);
173 } // finish class OEditModel