Package org.nasutekds.guitools.controlpanel.event

Examples of org.nasutekds.guitools.controlpanel.event.EntryReadEvent


   * Notifies listeners that a new entry was read.
   * @param sr the new entry in form of CustomSearchResult.
   */
  private void notifyListeners(CustomSearchResult sr)
  {
    EntryReadEvent ev = new EntryReadEvent(this, sr);
    for (EntryReadListener listener : listeners)
    {
      listener.entryRead(ev);
    }
  }
View Full Code Here

TOP

Related Classes of org.nasutekds.guitools.controlpanel.event.EntryReadEvent

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.