Examples of IPublishedServiceDirectory


Examples of org.eclipse.ecf.pubsub.IPublishedServiceDirectory

        if (container == null) {
          MessageDialog.openError(getSite().getShell(), "Error", "Collaboration environment not found.");
          return;
        }
       
        IPublishedServiceDirectory directory = (IPublishedServiceDirectory) container.getAdapter(IPublishedServiceDirectory.class);
        viewer.setInput(directory);
        setEnabled(false);
        shareSomethingAction.setEnabled(true);
      }
    });
View Full Code Here

Examples of org.eclipse.ecf.pubsub.IPublishedServiceDirectory

    } catch (IDCreateException e) {
      throw new RuntimeException(e);
    }
   
    final ISharedObjectManager mgr = container.getSharedObjectManager();
    IPublishedServiceDirectory directory = (IPublishedServiceDirectory) mgr.getSharedObject(directoryID);
    if (directory != null)
      return directory;
   
    try {
      SharedObjectDescription desc = createDirectoryDescription(directoryID);
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.