jsystem.framework.fixture
Interface FixtureListener

All Known Implementing Classes:
FixtureView, ListenerstManager, TestReporterTable

public interface FixtureListener

Classes that implement the FixtureListener will be notifiy About fixture events: aboutToChangeTo fixtureChanged startFixturring endFixturring In order to be notify the class should be add to the ListenersManager.


Method Summary
 void aboutToChangeTo(Fixture fixture)
          Will be called before the execution of the fixture.
 void endFixturring()
          Is called after the fixture navigation ends.
 void fixtureChanged(Fixture fixture)
          Will be called after the execution of the fixture.
 void startFixturring()
          Is called before the fixture navigation is started.
 

Method Detail

aboutToChangeTo

public void aboutToChangeTo(Fixture fixture)
Will be called before the execution of the fixture.

Parameters:
fixture - The fixture that is going to be executed.

fixtureChanged

public void fixtureChanged(Fixture fixture)
Will be called after the execution of the fixture.

Parameters:
fixture - The fixture that was executed.

startFixturring

public void startFixturring()
Is called before the fixture navigation is started.


endFixturring

public void endFixturring()
Is called after the fixture navigation ends.