Package org.apache.turbine.util
Class FormMessage
- java.lang.Object
-
- org.apache.turbine.util.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 Summary
Constructors Constructor Description FormMessage()Constructor.FormMessage(String formName)Constructor.FormMessage(String formName, String fieldName)Constructor.FormMessage(String formName, String fieldName, String message)Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String[]getFieldNames()Return the field names.StringgetFormName()Return the form name.StringgetMessage()Return the message.voidsetFieldName(String fieldName)Adds one field name.voidsetFormName(String formName)Set the form name.voidsetMessage(String message)Set the message.StringtoString()Write out the contents of the message in a friendly manner.
-
-
-
Constructor Detail
-
FormMessage
public FormMessage()
Constructor.
-
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.
-
-