|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface IReporter
An interface for reporting messages, either to the log window or in pop-up dialog boxes.
| Method Summary | |
|---|---|
void |
popup(Component parent,
String message)
Display a message in a pop up box, parented by the given component, which can be null. |
void |
report(String message)
Use this to display text messages in the log window. |
void |
report(Throwable x)
Parse the given error or exception, and report it to the user with a pop-up box, and the option to report it to support@azalient.com |
void |
reportF(String message,
Object... args)
A variable-parameter variation to report(String), allowing you to use String formatting. |
void |
warning(Component parent,
String message)
Display a message in a pop up box, with the given parent component. |
void |
warning(String message)
Display a message in a pop-up box, with options to not display further messages. |
| Method Detail |
|---|
void report(Throwable x)
void report(String message)
void reportF(String message,
Object... args)
report(String), allowing you to use String formatting. This is a convenience method
for report(String.format(s, ... args));
void warning(String message)
void warning(Component parent,
String message)
warning(String)
void popup(Component parent,
String message)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||