org.olat.modules.webFeed.ui
Class ExternalFeedFormController

java.lang.Object
  extended by org.olat.core.gui.control.DefaultController
      extended by org.olat.core.gui.control.controller.BasicController
          extended by org.olat.core.gui.components.form.flexible.impl.FormBasicController
              extended by org.olat.modules.webFeed.ui.ExternalFeedFormController
All Implemented Interfaces:
Controller, ControllerEventListener, Disposable

public class ExternalFeedFormController
extends FormBasicController

This controller is responsible for editing feed information.

Events fired by this controller:

Initial Date: Feb 5, 2009

Author:
Gregor Wassmann, frentix GmbH, http://www.frentix.com

Field Summary
 
Fields inherited from class org.olat.core.gui.components.form.flexible.impl.FormBasicController
LAYOUT_CUSTOM, LAYOUT_DEFAULT, LAYOUT_HORIZONTAL, LAYOUT_VERTICAL
 
Constructor Summary
ExternalFeedFormController(UserRequest ureq, WindowControl control, Feed podcast, Translator translator)
           
 
Method Summary
 void formOK(UserRequest ureq)
          The form first validates each element, then it calls the boolean validateFormLogic(ureq) from the listening controller.
 
Methods inherited from class org.olat.core.gui.components.form.flexible.impl.FormBasicController
dispose, event
 
Methods inherited from class org.olat.core.gui.control.DefaultController
addControllerListener, addLoggingResourceable, dispatchEvent, dispatchEvent, getControllerCount, getInitialComponent, getUserActivityLogger, getWindowControlForDebug, isDisposed, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ExternalFeedFormController

public ExternalFeedFormController(UserRequest ureq,
                                  WindowControl control,
                                  Feed podcast,
                                  Translator translator)
Parameters:
ureq -
control -
feed -
Method Detail

formOK

public void formOK(UserRequest ureq)
Description copied from class: FormBasicController
The form first validates each element, then it calls the boolean validateFormLogic(ureq) from the listening controller. This gives the possibility to implement complex business logic checks.
In the case of valid elements and a valid form logic this method is called. Typically one will read and save/update values then.

See Also:
FormBasicController.formOK(org.olat.core.gui.UserRequest)