Package org.eclipse.ecf.pubsub.model

Examples of org.eclipse.ecf.pubsub.model.IMasterModel


    super.init(site);
   
    final Action shareSomethingAction = new Action("Share something") {
      public void run() {
        try {
          IMasterModel sds = SharedModelFactory.getInstance().createSharedDataSource(container, IDFactory.getDefault().createGUID(), new AppendableList(), ListAppender.ID);
          if (sds == null)
            MessageDialog.openError(getSite().getShell(), "Error", "Could not share anything.");
          else {
            sharedLists.add(sds);
            sharedListViewer.add(sds);
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.pubsub.model.IMasterModel

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.