Package org.sakaiproject.cheftool
Class AlertImpl
- java.lang.Object
-
- org.sakaiproject.cheftool.AlertImpl
-
- All Implemented Interfaces:
Serializable,Alert
public class AlertImpl extends Object implements Alert, Serializable
Alert is a set of messages intended for user display in the user interface.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AlertImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(String alert)Add a new alert line.voidclear()Remove any messages in the Alert.StringgetAlert()Access the alert message.booleanisEmpty()Check to see if the alert is empty, or has been populated.StringpeekAlert()Access the alert message, but unlike getAlert(), do not clear the message.
-
-
-
Field Detail
-
m_msg
protected String m_msg
The Alert text.
-
-
Method Detail
-
add
public void add(String alert)
Add a new alert line. A line separator will be appended as needed.
-
getAlert
public String getAlert()
Access the alert message. Once accessed, the message is cleared.
-
peekAlert
public String peekAlert()
Access the alert message, but unlike getAlert(), do not clear the message.
-
isEmpty
public boolean isEmpty()
Check to see if the alert is empty, or has been populated.
-
-