Uses of Class
com.arsdigita.bebop.event.FormSectionEvent

Packages that use FormSectionEvent
com.arsdigita.bebop A set of server-side user interface components for web applications. 
com.arsdigita.bebop.demo.workflow Example A set of classes to demonstrate how to use Bebop components in a control flow i.e., how Bebop components hand off control to one another. 
com.arsdigita.bebop.event Listeners that allow a programmer to execute custom code at various points in the request. 
com.arsdigita.formbuilder The Form Builder service provides the ability to build simple forms with a web user interface. 
com.arsdigita.formbuilder.ui The Form Builder UI provides a number of embeddable bebop components to facilitate integration of the form builder service with applications. 
com.arsdigita.formbuilder.ui.editors Embeddable formbuilder editor widgets. 
com.arsdigita.toolbox.ui Miscellaneous collection of useful Bebop components. 
com.arsdigita.ui.login Internationalized UI classes for user login and registration. 
com.arsdigita.ui.permissions Default implementation of the CCM permissions UI. 
com.arsdigita.ui.sitemap User interface for dynamically updating URL to application mappings. 
 

Uses of FormSectionEvent in com.arsdigita.bebop
 

Methods in com.arsdigita.bebop with parameters of type FormSectionEvent
protected  void Wizard.fireSubmitted(FormSectionEvent evt)
           
protected  void Wizard.fireProcess(FormSectionEvent evt)
           
protected  void FormStep.fireSubmitted(FormSectionEvent evt)
           
protected  void FormStep.fireValidate(FormSectionEvent evt)
           
protected  void FormStep.fireProcess(FormSectionEvent evt)
           
protected  void FormModel.fireSubmitted(FormSectionEvent e)
           
protected  void FormModel.fireFormInit(FormSectionEvent e)
          Calls a form initialization listener.
protected  void FormModel.fireParameterValidation(FormSectionEvent e)
          Private helper method that validates the individual parameters by calling ParameterValidationListeners from the individual parameterModels.
protected  void FormSection.fireSubmitted(FormSectionEvent e)
          Calls the submitted method on all registered submission listeners.
protected  void FormSection.fireInit(FormSectionEvent e)
          Calls the init method on all registered init listeners.
protected  void FormSection.fireValidate(FormSectionEvent e)
          Calls the validate method on all registered validation listeners.
protected  void FormSection.fireProcess(FormSectionEvent e)
          Calls the process method on all registered process listeners.
protected  void FormSection.fireCancel(FormSectionEvent e)
          Calls the cancel method on all registered cancellation listeners.
 

Uses of FormSectionEvent in com.arsdigita.bebop.demo.workflow
 

Methods in com.arsdigita.bebop.demo.workflow with parameters of type FormSectionEvent
 void DisplayTask.submitted(FormSectionEvent e)
           
 void DisplayTask.process(FormSectionEvent e)
           
 void AddTask.process(FormSectionEvent event)
           
 void AddTask.submitted(FormSectionEvent e)
           
 void AddProcess.process(FormSectionEvent e)
          The main action of the form.
 void AddProcess.submitted(FormSectionEvent e)
          Check if we want to examine the submission.
 void AddProcess.init(FormSectionEvent e)
          Initialize form data.
 

Uses of FormSectionEvent in com.arsdigita.bebop.event
 

Methods in com.arsdigita.bebop.event with parameters of type FormSectionEvent
 void FormCancelListener.cancel(FormSectionEvent e)
          Performs any necessary cleanup after a user cancels out of a form
 void FormProcessListener.process(FormSectionEvent e)
          Performs a processing step on the data in the FormData object.
 void FormValidationListener.validate(FormSectionEvent e)
          Performs a validation check on the specified FormData object, involving any number of parameters.
 void FormInitListener.init(FormSectionEvent e)
          Initializes a FormData object already populated with values from the request.
 void FormSubmissionListener.submitted(FormSectionEvent e)
          This method gets called as soon as the FormData for a form has been filled with the request parameters.
 

Uses of FormSectionEvent in com.arsdigita.formbuilder
 

Methods in com.arsdigita.formbuilder with parameters of type FormSectionEvent
 void TestProcessListener.process(FormSectionEvent formEvent)
           
 

Uses of FormSectionEvent in com.arsdigita.formbuilder.ui
 

Methods in com.arsdigita.formbuilder.ui with parameters of type FormSectionEvent
 void PlaceholdersInitListener.init(FormSectionEvent e)
           
 void FormCompletionListener.complete(FormSectionEvent e)
           
 void PropertiesEditor.PropertiesFormProcessListener.process(FormSectionEvent e)
           
 void PropertiesEditor.PropertiesFormSubmissionListener.submitted(FormSectionEvent e)
           
 

Uses of FormSectionEvent in com.arsdigita.formbuilder.ui.editors
 

Methods in com.arsdigita.formbuilder.ui.editors with parameters of type FormSectionEvent
protected  void XMLEmailForm.initWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void XMLEmailForm.processWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void TextFieldForm.initWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void TextFieldForm.processWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void TextAreaForm.initWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void TextAreaForm.processWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void TemplateEmailForm.initWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void TemplateEmailForm.processWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void SubmitForm.initWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void SubmitForm.processWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void SimpleEmailForm.initWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void SimpleEmailForm.processWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void RemoteServerPostForm.initWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void RemoteServerPostForm.processWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void PasswordForm.initWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void PasswordForm.processWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void HiddenForm.initWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void HiddenForm.processWidgets(FormSectionEvent e, PersistentWidget w)
           
 void TextForm.init(FormSectionEvent e)
           
 void TextForm.process(FormSectionEvent e)
           
protected  void TextForm.addToForm(FormSectionEvent e, PersistentText widget)
           
protected  void DateForm.initWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void DateForm.processWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void DataDrivenSelectForm.initWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void DataDrivenSelectForm.processWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void ConfirmRedirectForm.initWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void ConfirmRedirectForm.processWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void ProcessListenerForm.initWidgets(FormSectionEvent e, PersistentProcessListener l)
           
protected  void ProcessListenerForm.processWidgets(FormSectionEvent e, PersistentProcessListener l)
           
protected  void ProcessListenerForm.addToForm(FormSectionEvent e, PersistentProcessListener l)
           
protected  void ConfirmEmailForm.initWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void ConfirmEmailForm.processWidgets(FormSectionEvent e, PersistentProcessListener listener)
           
protected  void WidgetForm.initWidgets(FormSectionEvent e, PersistentWidget widget)
           
protected  void WidgetForm.processWidgets(FormSectionEvent e, PersistentWidget widget)
           
protected  void WidgetForm.addToForm(FormSectionEvent e, PersistentWidget widget)
           
protected  void WidgetLabelForm.initWidgets(FormSectionEvent e, PersistentWidget widget)
           
protected  void WidgetLabelForm.processWidgets(FormSectionEvent e, PersistentWidget widget)
           
protected  void WidgetLabelForm.addToForm(FormSectionEvent e, PersistentWidget widget)
           
protected  void OptionGroupForm.initWidgets(FormSectionEvent e, PersistentWidget w)
           
protected  void OptionGroupForm.processWidgets(FormSectionEvent e, PersistentWidget w)
           
 

Uses of FormSectionEvent in com.arsdigita.toolbox.ui
 

Methods in com.arsdigita.toolbox.ui with parameters of type FormSectionEvent
 void ModalPanel.FormNavigationListener.process(FormSectionEvent e)
           
 void ModalPanel.WidgetNavigationListener.process(FormSectionEvent e)
           
 void ModalPanel.CancelListener.submitted(FormSectionEvent e)
           
 void ModalPanel.FinishListener.process(FormSectionEvent e)
           
 void ModalPanel.ResumeListener.process(FormSectionEvent e)
           
 

Uses of FormSectionEvent in com.arsdigita.ui.login
 

Methods in com.arsdigita.ui.login with parameters of type FormSectionEvent
 void UserRegistrationForm.init(FormSectionEvent event)
           
 void UserRegistrationForm.validate(FormSectionEvent event)
           
 void UserRegistrationForm.process(FormSectionEvent event)
           
protected  void UserRegistrationForm.loginUser(FormSectionEvent event)
          Logs in the user using the username, password, and "Remember this login?" request stored in the given form event.
protected  void UserRegistrationForm.onLoginSuccess(FormSectionEvent event)
          Executed when login succeeds.
protected  void UserRegistrationForm.onBadPassword(FormSectionEvent event, javax.security.auth.login.FailedLoginException e)
           
protected  void UserRegistrationForm.onLoginFail(FormSectionEvent event, javax.security.auth.login.LoginException e)
          Executed when login fails with a bad password or when autoLoginOn is set to false and the user doesn't exist.
protected  void UserRegistrationForm.onAccountNotFound(FormSectionEvent event, AccountNotFoundException e)
          Executed when login fails for an unrecognized user.
protected  void UserRegistrationForm.onLoginException(FormSectionEvent event, javax.security.auth.login.LoginException e)
          Executed when login fails for an unrecognized problem.
 void UserNewForm.init(FormSectionEvent event)
           
 void UserNewForm.process(FormSectionEvent event)
           
 void UserForm.init(FormSectionEvent event)
          Initializes this form with data from the user.
 void UserForm.validate(FormSectionEvent event)
          Validates this form.
 void UserEditForm.process(FormSectionEvent event)
           
 void ScreenNameInitListener.init(FormSectionEvent event)
           
 void EmailInitListener.init(FormSectionEvent event)
           
 void ChangePasswordForm.validate(FormSectionEvent event)
           
 void ChangePasswordForm.process(FormSectionEvent event)
           
 

Uses of FormSectionEvent in com.arsdigita.ui.permissions
 

Methods in com.arsdigita.ui.permissions with parameters of type FormSectionEvent
 void UserSearchForm.process(FormSectionEvent e)
           
 

Uses of FormSectionEvent in com.arsdigita.ui.sitemap
 

Methods in com.arsdigita.ui.sitemap with parameters of type FormSectionEvent
 void DisplayActions.AddSubnodeForm.process(FormSectionEvent e)
           
 void DisplayActions.RemoveNodeForm.process(FormSectionEvent e)
           
 void DisplayActions.UnmountInstanceForm.process(FormSectionEvent e)
           
 void DisplayActions.MountInstanceForm.process(FormSectionEvent e)
           
 



Copyright (c) 2004 Red Hat, Inc. Corporation. All Rights Reserved. Generated at July 21 2004:2337 UTC