Class ErrorSupport

java.lang.Object
org.jdesktop.swingx.error.ErrorSupport

public class ErrorSupport extends Object
ErrorSupport provides support for managing error listeners.
Author:
Joshua Marinacci joshua.marinacci@sun.com
See Also:
  • Constructor Details

    • ErrorSupport

      public ErrorSupport(Object source)
      Creates a new instance of ErrorSupport
      Parameters:
      source - The object which will fire the ErrorEvents
  • Method Details

    • 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(Throwable throwable)
      Report that an error has occurred
      Parameters:
      throwable - The Error or Exception which occured.