Package org.olat.core.gui.control

Examples of org.olat.core.gui.control.Controller.dispose()


   * @see org.olat.core.gui.control.DefaultController#doDispose(boolean)
   */
  protected void doDispose() {
    for (Iterator it_conts = controllers.iterator(); it_conts.hasNext();) {
      Controller cont = (Controller) it_conts.next();
      cont.dispose();
    }
  }

}
View Full Code Here


    if (currentMessagesMap != null) {
      Iterator<Map<String, Object>> iter = currentMessagesMap.iterator();
      while (iter.hasNext()) {
        Map<String, Object> messageMap = iter.next();
        Controller ctr = (Controller) messageMap.get("portrait");
        ctr.dispose();
        vcThreadView.remove(ctr.getInitialComponent());
      }
    }
  }
View Full Code Here

      // TODO Auto-generated method stub
   
      }
   
    };
    dummy.dispose();
    dummy = null;
  }

  private Set<Long> getReadSet(Identity s) {
    // FIXME:fj:c put the whole readset of 1 user / 1 forum in one property
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.