|
Version 4.10.0 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Object hirondelle.web4j.model.MessageListImpl
public class MessageListImpl
General implementation of MessageList
.
Constructor Summary | |
---|---|
MessageListImpl()
Create an empty MessageList . |
|
MessageListImpl(String aMessage)
Create a MessageList having one simple AppResponseMessage . |
|
MessageListImpl(String aMessage,
Object... aParams)
Create a MessageList having one compound AppResponseMessage . |
Method Summary | |
---|---|
void |
add(AppException ex)
Add all AppResponseMessage s attached to aAppEx to this list. |
void |
add(String aMessage)
Add a simple AppResponseMessage to this list. |
void |
add(String aMessage,
Object... aParams)
Add a compound AppResponseMessage to this list. |
List<AppResponseMessage> |
getMessages()
Return an unmodifiable List of AppResponseMessage s. |
boolean |
isEmpty()
Return true only if there are no messages in this list. |
boolean |
isNotEmpty()
Return the negation of MessageList.isEmpty() . |
String |
toString()
Intended for debugging only. |
Methods inherited from class Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public MessageListImpl()
MessageList
.
public MessageListImpl(String aMessage)
MessageList
having one simple AppResponseMessage
.
The argument satisfies the same conditions as AppResponseMessage.forSimple(java.lang.String)
.
public MessageListImpl(String aMessage, Object... aParams)
MessageList
having one compound AppResponseMessage
.
The arguments satisfy the same conditions as
AppResponseMessage.forCompound(java.lang.String, java.lang.Object...)
.
Method Detail |
---|
public final void add(String aMessage)
MessageList
AppResponseMessage
to this list.
The argument satisfies the same conditions as AppResponseMessage.forSimple(java.lang.String)
.
add
in interface MessageList
public final void add(String aMessage, Object... aParams)
MessageList
AppResponseMessage
to this list.
The arguments satisfy the same conditions as AppResponseMessage.forCompound(java.lang.String, java.lang.Object...)
.
add
in interface MessageList
public final void add(AppException ex)
MessageList
AppResponseMessage
s attached to aAppEx to this list.
add
in interface MessageList
public final List<AppResponseMessage> getMessages()
MessageList
AppResponseMessage
s.
getMessages
in interface MessageList
public final boolean isNotEmpty()
MessageList
MessageList.isEmpty()
.
isNotEmpty
in interface MessageList
public final boolean isEmpty()
MessageList
Note that this method name conflicts with the empty keyword
of JSTL. Thus, MessageList.isNotEmpty()
is supplied as an alternative.
isEmpty
in interface MessageList
public String toString()
toString
in class Object
|
Version 4.10.0 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |