Package org.apache.turbine.util
Class FormMessage
java.lang.Object
org.apache.turbine.util.FormMessage
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
ConstructorsConstructorDescriptionConstructor.FormMessage(String formName) Constructor.FormMessage(String formName, String fieldName) Constructor.FormMessage(String formName, String fieldName, String message) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionString[]Return the field names.Return the form name.Return the message.voidsetFieldName(String fieldName) Adds one field name.voidsetFormName(String formName) Set the form name.voidsetMessage(String message) Set the message.toString()Write out the contents of the message in a friendly manner.
-
Constructor Details
-
FormMessage
public FormMessage()Constructor. -
FormMessage
Constructor.- Parameters:
formName- A String with the form name.
-
FormMessage
Constructor.- Parameters:
formName- A String with the form name.fieldName- A String with the field name.
-
FormMessage
Constructor.- Parameters:
formName- A String with the form name.fieldName- A String with the field name.message- A String with the message.
-
-
Method Details
-
getMessage
Return the message.- Returns:
- A String with the message.
-
getFormName
Return the form name.- Returns:
- A String with the form name.
-
getFieldNames
Return the field names.- Returns:
- A String[] with the field names.
-
setMessage
Set the message.- Parameters:
message- A String with the message.
-
setFormName
Set the form name.- Parameters:
formName- A String with the form name.
-
setFieldName
Adds one field name.- Parameters:
fieldName- A String with the field name.
-
toString
Write out the contents of the message in a friendly manner.
-