Class ErrorSupport


  • public class ErrorSupport
    extends java.lang.Object
    ErrorSupport provides support for managing error listeners.
    Author:
    Joshua Marinacci joshua.marinacci@sun.com
    See Also:
    ErrorListener, ErrorEvent
    • Constructor Summary

      Constructors 
      Constructor Description
      ErrorSupport​(java.lang.Object source)
      Creates a new instance of ErrorSupport
    • Constructor Detail

      • ErrorSupport

        public ErrorSupport​(java.lang.Object source)
        Creates a new instance of ErrorSupport
        Parameters:
        source - The object which will fire the ErrorEvents
    • Method Detail

      • addErrorListener

        public void addErrorListener​(ErrorListener listener)
        Add an ErrorListener
        Parameters:
        listener - the listener to add
      • removeErrorListener

        public void removeErrorListener​(ErrorListener listener)
        Remove an error listener
        Parameters:
        listener - the listener to remove
      • getErrorListeners

        public ErrorListener[] getErrorListeners()
        Returns an array of all the listeners which were added to the ErrorSupport object with addErrorListener().
        Returns:
        all of the ErrorListeners added or an empty array if no listeners have been added.
      • fireErrorEvent

        public void fireErrorEvent​(java.lang.Throwable throwable)
        Report that an error has occured
        Parameters:
        throwable - The Error or Exception which occured.