Package org.olat.core.util.event

Examples of org.olat.core.util.event.PersistsEvent


  public void event(Event event) {
    // check if our tablemodel -is- affected (see NotificationsManagerImpl where the event is fired),
    // (if we are subscriber of the publisher which data has changed)
    if (event instanceof PersistsEvent) {
      PersistsEvent pe = (PersistsEvent) event;
      if (pe.isAtLeastOneKeyInList(notificationsList)) {
        needsModelReload = true;
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.olat.core.util.event.PersistsEvent

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.