/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* 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 .
*/
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 reset requests or not.
*/
protected boolean approve = true;
/**
* Array of two elements, each of them indicates reset
* 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 reset
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 reset
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.