Class FormMessage


  • public class FormMessage
    extends Object
    A message class for holding information about a message that relates to a specific form and field. Used together with FormMessages class.
    Version:
    $Id$
    Author:
    Neeme Praks
    • Constructor Detail

      • FormMessage

        public FormMessage​(String formName)
        Constructor.
        Parameters:
        formName - A String with the form name.
      • FormMessage

        public FormMessage​(String formName,
                           String fieldName)
        Constructor.
        Parameters:
        formName - A String with the form name.
        fieldName - A String with the field name.
      • FormMessage

        public FormMessage​(String formName,
                           String fieldName,
                           String message)
        Constructor.
        Parameters:
        formName - A String with the form name.
        fieldName - A String with the field name.
        message - A String with the message.
    • Method Detail

      • getMessage

        public String getMessage()
        Return the message.
        Returns:
        A String with the message.
      • getFormName

        public String getFormName()
        Return the form name.
        Returns:
        A String with the form name.
      • getFieldNames

        public String[] getFieldNames()
        Return the field names.
        Returns:
        A String[] with the field names.
      • setMessage

        public void setMessage​(String message)
        Set the message.
        Parameters:
        message - A String with the message.
      • setFormName

        public void setFormName​(String formName)
        Set the form name.
        Parameters:
        formName - A String with the form name.
      • setFieldName

        public void setFieldName​(String fieldName)
        Adds one field name.
        Parameters:
        fieldName - A String with the field name.