org.apache.struts.action
Class ActionMessages.ActionMessageItem

java.lang.Object
  extended by org.apache.struts.action.ActionMessages.ActionMessageItem
All Implemented Interfaces:
java.io.Serializable
Enclosing class:
ActionMessages

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.

See Also:
Serialized Form

Field Summary
protected  int iOrder
          The position in the list of messages.
protected  java.util.List list
          The list of ActionMessages.
protected  java.lang.String property
          The property associated with ActionMessage.
 
Constructor Summary
ActionMessages.ActionMessageItem(java.util.List list, int iOrder, java.lang.String property)
          Construct an instance of this class.
 
Method Summary
 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.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

list

protected java.util.List list

The list of ActionMessages.


iOrder

protected int iOrder

The position in the list of messages.


property

protected java.lang.String property

The property associated with ActionMessage.

Constructor Detail

ActionMessages.ActionMessageItem

public ActionMessages.ActionMessageItem(java.util.List list,
                                        int iOrder,
                                        java.lang.String property)

Construct an instance of this class.

Parameters:
list - The list of ActionMessages.
iOrder - The position in the list of messages.
property - The property associated with ActionMessage.
Method Detail

getList

public java.util.List getList()

Retrieve the list of messages associated with this item.

Returns:
The list of messages associated with this item.

setList

public void setList(java.util.List list)

Set the list of messages associated with this item.

Parameters:
list - The list of messages associated with this item.

getOrder

public int getOrder()

Retrieve the position in the message list.

Returns:
The position in the message list.

setOrder

public void setOrder(int iOrder)

Set the position in the message list.

Parameters:
iOrder - The position in the message list.

getProperty

public java.lang.String getProperty()

Retrieve the property associated with this item.

Returns:
The property associated with this item.

setProperty

public void setProperty(java.lang.String property)

Set the property associated with this item.

Parameters:
property - The property associated with this item.

toString

public java.lang.String toString()

Construct a string representation of this object.

Overrides:
toString in class java.lang.Object
Returns:
A string representation of this object.


Copyright © 2000-2007 Apache Software Foundation. All Rights Reserved.