Method Summary |
|
public void | debug(Object message, Throwable error) Logs debugging messages and supplementary exception. |
public void | debug(Object message) Logs message for debugging purposes. |
public void | error(Object message, Throwable error) Logs error messages and supplementary exception. |
public void | error(Object message) Logs an error message. |
public Object | getAttribute(String name) Returns the context attribute with the given name, or null if there is no attribute by that name. |
public Enumeration<String> | getAttributeNames() Provides an enumeration of all available attributes in the current context. |
public SwingEventManager | getEventManager() |
public void | info(Object message, Throwable error) Logs informational error and supplementary message. |
public void | info(Object message) Logs an informational message. |
abstract public void | invokeNext() Allows pragmatic navigation through other events beyond clicking 'Next' in a wizard. |
public void | markTextComponentIncorrect(JTextComponent textArea) Marks a text component as invalid to the user. |
public void | removeAttribute(String name) Removes the selected attribute by name from this context. |
public void | setAttribute(String name, Object attribute) Sets an attribute in this context. |
abstract public void | showErrorDialog(Throwable error, String message) Shows a generic error dialog to the user with an error and message. |
public void | showErrorDialog(Component owner, Throwable error, String message) Shows a generic error dialog to the user with an error and message. |
abstract public void | showInformationDialog(String message) Shows a generic information dialog to the user with a message
This implementation allows wizard code to notify the user informational message without having to have a
reference to an actual visual component. |
public void | showInformationDialog(Component owner, String message) |
public void | unmarkTextComponentIncorrect(JTextComponent textArea) Restores an invalid text component to its original state. |
abstract public void | updateSteps(Collection<Step> newSteps) Updates the list of setps after the current step.
Often wizards will allow a user to take different action leading to different set of steps. |
public void | warn(Object message, Throwable error) Logs warning messages and supplementary exception. |
public void | warn(Object message) Logs warning messages. |