java.lang.Object
org.apache.struts.action.ActionForm
org.jeteam.bean.task.web.NoteCRUDDispatchForm
- All Implemented Interfaces:
- java.io.Serializable
- public class NoteCRUDDispatchForm
- extends org.apache.struts.action.ActionForm
- implements java.io.Serializable
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
noteSubject
private java.lang.String noteSubject
subject
private java.lang.String subject
message
private java.lang.String message
taskName
private java.lang.String taskName
task
private org.jeteam.bean.task.TaskDTO task
tasks
private org.jeteam.bean.task.TaskDTO[] tasks
notes
private org.jeteam.bean.task.NoteDTO[] notes
note
private org.jeteam.bean.task.NoteDTO note
NoteCRUDDispatchForm
public NoteCRUDDispatchForm()
reset
public void reset(org.apache.struts.action.ActionMapping actionMapping,
javax.servlet.http.HttpServletRequest httpServletRequest)
- Description copied from class:
org.apache.struts.action.ActionForm
Reset bean properties to their default state, as needed. This method is
called before the properties are repopulated by the controller.
The default implementation does nothing. In practice, the only properties
that need to be reset are those which represent checkboxes on a session-scoped
form. Otherwise, properties can be given initial values where the field is
declared.
If the form is stored in session-scope so that values can be collected
over multiple requests (a "wizard"), you must be very careful of which
properties, if any, are reset. As mentioned, session-scope checkboxes
must be reset to false for any page where this property is set. This is
because the client does not submit a checkbox value when it is clear (false).
If a session-scoped checkbox is not proactively reset, it can never be set
to false.
This method is not the appropriate place to initialize
form value for an "update" type page (this should be done in a setup Action).
You mainly need to worry about setting checkbox values to false; most of the
time you can leave this method unimplemented.
getTasks
public org.jeteam.bean.task.TaskDTO[] getTasks()
setTasks
public void setTasks(org.jeteam.bean.task.TaskDTO[] tasks)
getNotes
public org.jeteam.bean.task.NoteDTO[] getNotes()
setNotes
public void setNotes(org.jeteam.bean.task.NoteDTO[] notes)
getNoteSubject
public java.lang.String getNoteSubject()
setNoteSubject
public void setNoteSubject(java.lang.String noteSubject)
getSubject
public java.lang.String getSubject()
setSubject
public void setSubject(java.lang.String subject)
getMessage
public java.lang.String getMessage()
setMessage
public void setMessage(java.lang.String message)
getTaskName
public java.lang.String getTaskName()
setTaskName
public void setTaskName(java.lang.String taskName)
getNote
public org.jeteam.bean.task.NoteDTO getNote()
setNote
public void setNote(org.jeteam.bean.task.NoteDTO note)
getTask
public org.jeteam.bean.task.TaskDTO getTask()
setTask
public void setTask(org.jeteam.bean.task.TaskDTO task)