| org.sakaiproject.cheftool.api.Alert
All known Subclasses: org.sakaiproject.cheftool.AlertImpl,
Alert | public interface Alert (Code) | |
Alert is a interface for a set of messages intended for user display in the user interface.
|
Method Summary | |
void | add(String alert) Add a new alert line. | void | clear() Remove any messages in the Alert. | String | getAlert() Access the alert message. | boolean | isEmpty() Check to see if the alert is empty, or has been populated. | String | peekAlert() Access the alert message, but unlike getAlert(), do not clear the message. |
add | void add(String alert)(Code) | | Add a new alert line. A line separator will be appended as needed.
Parameters: alert - The alert message to add. |
clear | void clear()(Code) | | Remove any messages in the Alert.
|
getAlert | String getAlert()(Code) | | Access the alert message. Once accessed, the message is cleared.
The alert message. |
isEmpty | boolean isEmpty()(Code) | | Check to see if the alert is empty, or has been populated.
true of the alert is empty, false if there have been alerts set. |
peekAlert | String peekAlert()(Code) | | Access the alert message, but unlike getAlert(), do not clear the message.
The alert message. |
|
|