protected class ActionMessages.ActionMessageItem
extends java.lang.Object
implements java.io.Serializable
This class is used to store a set of messages associated with a property/key and the position it was initially added to list.
Modifier and Type | Field and Description |
---|---|
protected int |
iOrder
The position in the list of messages.
|
protected java.util.List |
list
The list of
ActionMessage s. |
protected java.lang.String |
property
The property associated with
ActionMessage . |
Constructor and Description |
---|
ActionMessageItem(java.util.List list,
int iOrder,
java.lang.String property)
Construct an instance of this class.
|
Modifier and Type | Method and Description |
---|---|
java.util.List |
getList()
Retrieve the list of messages associated with this item.
|
int |
getOrder()
Retrieve the position in the message list.
|
java.lang.String |
getProperty()
Retrieve the property associated with this item.
|
void |
setList(java.util.List list)
Set the list of messages associated with this item.
|
void |
setOrder(int iOrder)
Set the position in the message list.
|
void |
setProperty(java.lang.String property)
Set the property associated with this item.
|
java.lang.String |
toString()
Construct a string representation of this object.
|
protected java.util.List list
The list of ActionMessage
s.
protected int iOrder
The position in the list of messages.
protected java.lang.String property
The property associated with ActionMessage
.
public ActionMessageItem(java.util.List list, int iOrder, java.lang.String property)
Construct an instance of this class.
list
- The list of ActionMessages.iOrder
- The position in the list of messages.property
- The property associated with ActionMessage.public java.util.List getList()
Retrieve the list of messages associated with this item.
public void setList(java.util.List list)
Set the list of messages associated with this item.
list
- The list of messages associated with this item.public int getOrder()
Retrieve the position in the message list.
public void setOrder(int iOrder)
Set the position in the message list.
iOrder
- The position in the message list.public java.lang.String getProperty()
Retrieve the property associated with this item.
public void setProperty(java.lang.String property)
Set the property associated with this item.
property
- The property associated with this item.public java.lang.String toString()
Construct a string representation of this object.
toString
in class java.lang.Object
Copyright © 2000–2020 Apache Software Foundation. All rights reserved.