All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface guinea.ui.MonitorInterface

public interface MonitorInterface
Monitor objects provide the subject information about test status, for example, how many items are still to do, which sample is playing, etc.

The monitor system is currently in development and is subject to change.


Method Index

· isMonitorEnabled()
Test whether monitor is enabled or disabled.
· reset()
Reset the monitor to default value.
· setMonitorEnabled(boolean)
Enable or disable monitoring.
· setMonitorValue(Object)
Set the value of this monitor.

Methods

· setMonitorEnabled
 public abstract void setMonitorEnabled(boolean enabled)
Enable or disable monitoring.

Parameters:
enabled - True to enable component, false to disable.
· isMonitorEnabled
 public abstract boolean isMonitorEnabled()
Test whether monitor is enabled or disabled.

Returns:
true if monitor is enabled, false if not.
· setMonitorValue
 public abstract void setMonitorValue(Object value)
Set the value of this monitor. Used to set the value of the monitored variable.

Parameters:
value - the value to set.
· reset
 public abstract void reset()
Reset the monitor to default value.


All Packages  Class Hierarchy  This Package  Previous  Next  Index