Package org.rssowl.core.model.events

Examples of org.rssowl.core.model.events.AttachmentListener


   * @param events The <code>ModelEvent</code> for the affected type.
   */
  public void notifyAttachmentUpdated(final Set<AttachmentEvent> events) {
    Object listeners[] = fAttachmentListeners.getListeners();
    for (Object element : listeners) {
      final AttachmentListener listener = (AttachmentListener) element;
      SafeRunner.run(new LoggingSafeRunnable() {
        public void run() throws Exception {
          listener.attachmentUpdated(events);
        }
      });
    }
  }
View Full Code Here

TOP

Related Classes of org.rssowl.core.model.events.AttachmentListener

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.