1ef39d40dSAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3ef39d40dSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4ef39d40dSAndrew Rist * or more contributor license agreements. See the NOTICE file 5ef39d40dSAndrew Rist * distributed with this work for additional information 6ef39d40dSAndrew Rist * regarding copyright ownership. The ASF licenses this file 7ef39d40dSAndrew Rist * to you under the Apache License, Version 2.0 (the 8ef39d40dSAndrew Rist * "License"); you may not use this file except in compliance 9ef39d40dSAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 11ef39d40dSAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 13ef39d40dSAndrew Rist * Unless required by applicable law or agreed to in writing, 14ef39d40dSAndrew Rist * software distributed under the License is distributed on an 15ef39d40dSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16ef39d40dSAndrew Rist * KIND, either express or implied. See the License for the 17ef39d40dSAndrew Rist * specific language governing permissions and limitations 18ef39d40dSAndrew Rist * under the License. 19cdf0e10cSrcweir * 20ef39d40dSAndrew Rist *************************************************************/ 21ef39d40dSAndrew Rist 22ef39d40dSAndrew Rist 23cdf0e10cSrcweir 24cdf0e10cSrcweir package mod._forms; 25cdf0e10cSrcweir 26cdf0e10cSrcweir import java.io.PrintWriter; 27cdf0e10cSrcweir import lib.TestEnvironment; 28cdf0e10cSrcweir import lib.TestParameters; 29cdf0e10cSrcweir 30cdf0e10cSrcweir /** 31cdf0e10cSrcweir * Test for object which is represented by service 32cdf0e10cSrcweir * <code>com.sun.star.com.sun.star.form.component.CommandButton</code>. 33cdf0e10cSrcweir * <p> 34cdf0e10cSrcweir * Object implements the following interfaces : 35cdf0e10cSrcweir * <ul> 36cdf0e10cSrcweir * <li> <code>com::sun::star::io::XPersistObject</code></li> 37cdf0e10cSrcweir * <li> <code>com::sun::star::container::XChild</code></li> 38cdf0e10cSrcweir * <li> <code>com::sun::star::form::FormControlModel</code></li> 39cdf0e10cSrcweir * <li> <code>com::sun::star::form::XImageProducerSupplier</code></li> 40cdf0e10cSrcweir * <li> <code>com::sun::star::form::FormComponent</code></li> 41cdf0e10cSrcweir * <li> <code>com::sun::star::beans::XPropertyAccess</code></li> 42cdf0e10cSrcweir * <li> <code>com::sun::star::beans::XPropertyContainer</code></li> 43cdf0e10cSrcweir * <li> <code>com::sun::star::beans::XPropertySet</code></li> 44cdf0e10cSrcweir * <li> <code>com::sun::star::beans::XFastPropertySet</code></li> 45cdf0e10cSrcweir * <li> <code>com::sun::star::beans::XPropertyState</code></li> 46cdf0e10cSrcweir * <li> <code>com::sun::star::awt::UnoControlButtonModel</code></li> 47cdf0e10cSrcweir * <li> <code>com::sun::star::form::component::CommandButton</code></li> 48cdf0e10cSrcweir * <li> <code>com::sun::star::container::XNamed</code></li> 49cdf0e10cSrcweir * <li> <code>com::sun::star::beans::XMultiPropertySet</code></li> 50cdf0e10cSrcweir * <li> <code>com::sun::star::lang::XComponent</code></li> 51cdf0e10cSrcweir * </ul> 52cdf0e10cSrcweir * This object test <b> is NOT </b> designed to be run in several 53cdf0e10cSrcweir * threads concurently. 54cdf0e10cSrcweir * 55cdf0e10cSrcweir * @see com.sun.star.io.XPersistObject 56cdf0e10cSrcweir * @see com.sun.star.container.XChild 57*5496b966SPedro Giffuni * @see com.sun.star.form 58cdf0e10cSrcweir * @see com.sun.star.form.XImageProducerSupplier 59cdf0e10cSrcweir * @see com.sun.star.form.FormComponent 60cdf0e10cSrcweir * @see com.sun.star.beans.XPropertyAccess 61cdf0e10cSrcweir * @see com.sun.star.beans.XPropertyContainer 62cdf0e10cSrcweir * @see com.sun.star.beans.XPropertySet 63cdf0e10cSrcweir * @see com.sun.star.beans.XFastPropertySet 64cdf0e10cSrcweir * @see com.sun.star.beans.XPropertyState 65cdf0e10cSrcweir * @see com.sun.star.awt.UnoControlButtonModel 66cdf0e10cSrcweir * @see com.sun.star.form.component.CommandButton 67cdf0e10cSrcweir * @see com.sun.star.container.XNamed 68cdf0e10cSrcweir * @see com.sun.star.beans.XMultiPropertySet 69cdf0e10cSrcweir * @see com.sun.star.lang.XComponent 70cdf0e10cSrcweir * @see ifc.io._XPersistObject 71cdf0e10cSrcweir * @see ifc.container._XChild 72cdf0e10cSrcweir * @see ifc.form._FormControlModel 73cdf0e10cSrcweir * @see ifc.form._XImageProducerSupplier 74cdf0e10cSrcweir * @see ifc.form._FormComponent 75cdf0e10cSrcweir * @see ifc.beans._XPropertySet 76cdf0e10cSrcweir * @see ifc.beans._XFastPropertySet 77cdf0e10cSrcweir * @see ifc.beans._XPropertyState 78cdf0e10cSrcweir * @see ifc.awt._UnoControlButtonModel 79cdf0e10cSrcweir * @see ifc.form.component._CommandButton 80cdf0e10cSrcweir * @see ifc.container._XNamed 81cdf0e10cSrcweir * @see ifc.beans._XMultiPropertySet 82cdf0e10cSrcweir * @see ifc.lang._XComponent 83cdf0e10cSrcweir */ 84cdf0e10cSrcweir public class OButtonModel extends GenericModelTest { 85cdf0e10cSrcweir 86cdf0e10cSrcweir /** 87cdf0e10cSrcweir * Set some member variable of the super class <CODE>GenericModelTest</CODE>: 88cdf0e10cSrcweir * <pre> 89cdf0e10cSrcweir * super.m_kindOfControl="CommandButton"; 90cdf0e10cSrcweir * super.m_ObjectName = "com.sun.star.form.component.CommandButton"; 91cdf0e10cSrcweir * super.m_LCShape_Type = "CommandButton"; 92cdf0e10cSrcweir * </pre> 93cdf0e10cSrcweir * Then <CODE>super.initialize()</CODE> was called. 94cdf0e10cSrcweir * @param tParam the test parameter 95cdf0e10cSrcweir * @param log the log writer 96cdf0e10cSrcweir */ 97cdf0e10cSrcweir initialize(TestParameters tParam, PrintWriter log)98cdf0e10cSrcweir protected void initialize(TestParameters tParam, PrintWriter log) { 99cdf0e10cSrcweir 100cdf0e10cSrcweir super.initialize(tParam, log); 101cdf0e10cSrcweir 102cdf0e10cSrcweir super.m_kindOfControl="CommandButton"; 103cdf0e10cSrcweir 104cdf0e10cSrcweir super.m_ObjectName = "stardiv.one.form.component.CommandButton"; 105cdf0e10cSrcweir 106cdf0e10cSrcweir super.m_LCShape_Type = "CommandButton"; 107cdf0e10cSrcweir 108cdf0e10cSrcweir } 109cdf0e10cSrcweir /** 110cdf0e10cSrcweir * calls <CODE>cleanup()</CODE> from it's super class 111cdf0e10cSrcweir * @param tParam the test parameter 112cdf0e10cSrcweir * @param log the log writer 113cdf0e10cSrcweir */ cleanup(TestParameters tParam, PrintWriter log)114cdf0e10cSrcweir protected void cleanup(TestParameters tParam, PrintWriter log) { 115cdf0e10cSrcweir super.cleanup(tParam, log); 116cdf0e10cSrcweir } 117cdf0e10cSrcweir 118cdf0e10cSrcweir 119cdf0e10cSrcweir /** 120cdf0e10cSrcweir * calls <CODE>createTestEnvironment()</CODE> from it's super class 121cdf0e10cSrcweir * @param Param the test parameter 122cdf0e10cSrcweir * @param log the log writer 123cdf0e10cSrcweir * @return lib.TestEnvironment 124cdf0e10cSrcweir */ createTestEnvironment(TestParameters Param, PrintWriter log)125cdf0e10cSrcweir protected synchronized TestEnvironment createTestEnvironment(TestParameters Param, 126cdf0e10cSrcweir PrintWriter log) { 127cdf0e10cSrcweir return super.createTestEnvironment(Param, log); 128cdf0e10cSrcweir } 129cdf0e10cSrcweir 130cdf0e10cSrcweir } // finish class OButtonModelold 131