IBM Rational Functional Tester
Version 8.1.1000
IBM Rational Functional Tester Proxy SDK Reference

Project Version 2.3

com.rational.test.ft.domain
Interface IProxyMonitor


public interface IProxyMonitor

Supports this interface, which is handled by the infestation code. As windows are added and removed, the monitor is called to track the child when windows are activated and deactivated.

Since:
RFT1.0

Method Summary
 void addWindow(java.lang.Object window)
          Called when a window is activated.
 void removeWindow(java.lang.Object window)
          Called when a window is deactivated.
 void start()
          Called before the first call to addWindow().
 void terminate()
          Called when the monitor needs to clean up.
 

Method Detail

start

void start()
Called before the first call to addWindow().

Since:
RFT1.0

terminate

void terminate()
Called when the monitor needs to clean up. All references to windows should be dropped when this call is made.

Since:
RFT1.0

addWindow

void addWindow(java.lang.Object window)
Called when a window is activated.

Parameters:
window - The window being activated.
Since:
RFT1.0

removeWindow

void removeWindow(java.lang.Object window)
Called when a window is deactivated.

Parameters:
window - The window being deactivated.
Since:
RFT1.0