Package com.aelitis.azureus.ui.swt.mdi

Examples of com.aelitis.azureus.ui.swt.mdi.MultipleDocumentInterfaceSWT.showEntryByID()


        }
       
        MdiEntry entry = mdi.createEntryFromEventListener(sidebarParentID, l, sViewID,
            true, dataSource);
        if (bSetFocus) {
          mdi.showEntryByID(sViewID);
        } else if (entry instanceof BaseMdiEntry) {
          // Some plugins (CVS Updater) want their view's composite initialized
          // on OpenPluginView, otherwise they won't do logic users expect
          // (like check for new snapshots).  So, enforce loading entry.
          ((BaseMdiEntry) entry).build();
View Full Code Here


      }
    }

    IView viewFromID = mdi.getIViewFromID(id);
    if (viewFromID != null) {
      mdi.showEntryByID(id);
    }

    final String _id = id;
    Utils.execSWTThreadLater(0, new AERunnable() {
View Full Code Here

    final String _id = id;
    Utils.execSWTThreadLater(0, new AERunnable() {

      public void runSupport() {
        if (mdi.showEntryByID(_id)) {
          return;
        }
        if (UISWTViewEventListener.class.isAssignableFrom(cla)) {
          UISWTViewEventListener l = null;
          try {
View Full Code Here

          }
        } else {
          mdi.createEntryFromIViewClass(parentID, _id, null, cla,
              null, null, data, null, true);
        }
        mdi.showEntryByID(_id);
      }
    });

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