org.erights.e.develop.trace
Interface TraceErrorWatcher


public interface TraceErrorWatcher

Untamed: The interface for any object that wishes to be informed when a program error has been logged. To register, the caller should call:

TraceController.errorWatcher(this, true);

To stop being informed, call:

TraceController.errorWatcher(this, false);


Method Summary
 void notifyFatal()
          Enabled: Notify a user that a fatal error has happened.
 void notifyOptional()
          Enabled: If the user wants to hear about nonfatal bugs, notify her.
 

Method Detail

notifyFatal

public void notifyFatal()
Enabled: Notify a user that a fatal error has happened. Tell her how to report the bug. Does not return.


notifyOptional

public void notifyOptional()
Enabled: If the user wants to hear about nonfatal bugs, notify her. Does return.



comments?