Class ActionMessages.ActionMessageItem

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

protected class ActionMessages.ActionMessageItem extends Object implements 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:
  • Field Details

    • list

      protected List<ActionMessage> list

      The list of ActionMessages.

    • iOrder

      protected int iOrder

      The position in the list of messages.

    • property

      protected String property

      The property associated with ActionMessage.

  • Constructor Details

    • ActionMessageItem

      public ActionMessageItem(List<ActionMessage> list, int iOrder, 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 Details

    • getList

      public List<ActionMessage> getList()

      Retrieve the list of messages associated with this item.

      Returns:
      The list of messages associated with this item.
    • setList

      public void setList(List<ActionMessage> 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 String getProperty()

      Retrieve the property associated with this item.

      Returns:
      The property associated with this item.
    • setProperty

      public void setProperty(String property)

      Set the property associated with this item.

      Parameters:
      property - The property associated with this item.
    • toString

      public String toString()

      Construct a string representation of this object.

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