Package org.olat.core.gui.control.controller

Examples of org.olat.core.gui.control.controller.BasicController


    ContextEntry ce = BusinessControlFactory.getInstance().createContextEntry(ores);
   
    WindowControl bwControl = BusinessControlFactory.getInstance().createBusinessWindowControl(ce, getWindowControl());   
   
    //Simple way to "register" the new ContextEntry although only a VelocityPage was flipped.
    Controller dummy = new BasicController(ureq, bwControl) {
   
      @Override
      protected void event(UserRequest ureq, Component source, Event event) {
      // TODO Auto-generated method stub
   
      }
   
      @Override
      protected void doDispose() {
      // TODO Auto-generated method stub
   
      }
   
    };
    dummy.dispose();
    dummy = null;
  }
View Full Code Here


    super(name);
    self = this;
    // Create inner link dispatch controller as a hack to catch event that
    // should bypass the form infrastructure. This inner controller is
    // disposed by this form item.
    dispatchLinkController = new BasicController(ureq, wControl) {
      @Override
      protected void doDispose() {
        // nothing to dispose
      }
View Full Code Here

TOP

Related Classes of org.olat.core.gui.control.controller.BasicController

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.