All Packages Class Hierarchy This Package Previous Next Index
Interface guinea.ui.event.SubjectUIListener
- public interface SubjectUIListener
- extends AnswerListener, ControlListener
A listener interface for receiving events from Subject UIs.
This interface also extends answer and control interfaces used to
receive control and answer events from subject components.
Method Index
- ·
abortTest(ControlEvent)
- User has pressed the 'Abort' button to abort the test.
- ·
doneItem(ControlEvent)
- User has pressed the 'Done' to complete the item.
- ·
gotoItem(ControlEvent)
- User has pressed the 'Goto' button to go to a selected item.
- ·
nextItem(ControlEvent)
- User has pressed the 'Next' button to go to the next item.
- ·
pauseTest(ControlEvent)
- User has pressed the 'Pause' button to pause the test.
- ·
prevItem(ControlEvent)
- User has pressed the 'Prev' button to go to the previous item.
Methods
·
doneItem
public abstract void doneItem(ControlEvent e)
- User has pressed the 'Done' to complete the item.
- Parameters:
- e - a control event.
·
nextItem
public abstract void nextItem(ControlEvent e)
- User has pressed the 'Next' button to go to the next item. Not used
at the moment.
- Parameters:
- e - a control event.
·
prevItem
public abstract void prevItem(ControlEvent e)
- User has pressed the 'Prev' button to go to the previous item. Not used
at the moment.
- Parameters:
- e - a control event.
·
gotoItem
public abstract void gotoItem(ControlEvent e)
- User has pressed the 'Goto' button to go to a selected item. Not used
at the moment.
- Parameters:
- e - a control event.
·
pauseTest
public abstract void pauseTest(ControlEvent e)
- User has pressed the 'Pause' button to pause the test. Not used
at the moment.
- Parameters:
- e - a control event.
·
abortTest
public abstract void abortTest(ControlEvent e)
- User has pressed the 'Abort' button to abort the test. Not used
at the moment.
- Parameters:
- e - a control event.
All Packages Class Hierarchy This Package Previous Next Index