Examples of IPublishedServiceDirectoryListener


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
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.