Package org.eclipse.ecf.pubsub

Examples of org.eclipse.ecf.pubsub.IPublishedServiceDirectoryListener


  }
 
  protected void fireServiceChangedEvent(final PublishedServiceDirectoryChangeEvent event) {
    Object[] l = listeners.getListeners();
    for (int i = 0; i < l.length; ++i) {
      final IPublishedServiceDirectoryListener listener = (IPublishedServiceDirectoryListener) l[i];
      SafeRunner.run(new ISafeRunnable() {
       
        public void run() throws Exception {
          listener.publishedServiceDirectoryChanged(event);
        }
       
        public void handleException(Throwable exception) {
          // TODO Auto-generated method stub
          exception.printStackTrace();
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.pubsub.IPublishedServiceDirectoryListener

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.