/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
package ifc.form;
import lib.MultiMethodTest;
import com.sun.star.form.XReset;
import com.sun.star.form.XResetListener;
import com.sun.star.lang.EventObject;
/**
* Testing com.sun.star.form.XReset
* interface methods :
*
reset()
addResetListener()
removeResetListener()
* @see com.sun.star.form.XReset
*/
public class _XReset extends MultiMethodTest {
public static XReset oObj = null;
/**
* Indicates if listeners must approve restes requests or not.
*/
protected boolean approve = true;
/**
* Array of two elements, each of them indicates resetted
* call of appropriate listener.
*/
protected boolean resetted[] = new boolean[2];
/**
* Array of two elements, each of them indicates
* approveReset
call of appropriate listener.
*/
protected boolean approveReset[] = new boolean[2];
/**
* The listener which sets flags (in array elements with index 0)
* on resetted
and
* approveReset
events. It approves reset request
* depending on approve
field.
*/
protected class MyResetListener implements XResetListener {
public void disposing ( EventObject oEvent ) {}
public boolean approveReset ( EventObject oEvent ) {
approveReset[0] = true;
//cancel the reset action
return approve;
}
public void resetted ( EventObject oEvent ) {
resetted[0] = true;
}
}
/**
* The listener which sets flags (in array elements with index 1)
* on resetted
and
* approveReset
events. It approves reset request
* depending on approve
field.
*/
protected class MyResetListener2 implements XResetListener {
public void disposing ( EventObject oEvent ) {}
public boolean approveReset ( EventObject oEvent ) {
approveReset[1] = true;
//don't cancel the reset action
return true;
}
public void resetted ( EventObject oEvent ) {
resetted[1] = true;
}
}
/**
* Listener which is added in test
*/
protected XResetListener listener1 = new MyResetListener();
/**
* Listener which is added in test
*/
protected XResetListener listener2 = new MyResetListener2();
/**
* Just adds two reset listeners.
* Status for it is set later in reset
method test.
*/
public void _addResetListener() {
log.println("Testing addResetListener ...");
oObj.addResetListener( listener2 );
oObj.addResetListener( listener1 );
} // finished _addResetListener()
/**
* First calls reset
method without approving
* the request, in this case only approveReset
* event must be called. Second calls reset
with
* approving the request. In this case both listener's events
* must be called.
* Has OK status for reset
method if in
* the first case only approveReset
method was
* called.
* Has OK status for addResetListener
method
* if in the second case both listener's methods were called.
* The following method tests are to be completed successfully before : *
addResetListener
: to have listeners added.reset
method.* Has OK status if no methods of the listener removed * were called.
* The following method tests are to be completed successfully before : *
reset
: to test this method last.
* reset
call.
*/
private void shortWait() {
try {
Thread.sleep(500) ;
} catch (InterruptedException e) {
log.println("While waiting :" + e) ;
}
}
} // finished class _XRefresh