Package org.eclipse.php.debug.daemon.communication

Examples of org.eclipse.php.debug.daemon.communication.ICommunicationDaemon


      ArrayList<ICommunicationDaemon> additionalDaemons = new ArrayList<ICommunicationDaemon>(
          5);
      while (e.hasMoreElements()) {
        final CommunicationDaemonFactory initializerFactory = e
            .nextElement();
        final ICommunicationDaemon initializerDaemon = initializerFactory
            .createDaemon();
        boolean filter = WorkbenchActivityHelper
            .filterItem(new IPluginContribution() {
              public String getLocalId() {
                return initializerDaemon.getDebuggerID();
              }

              public String getPluginId() {
                return initializerFactory.element
                    .getNamespaceIdentifier();
              }
            });
        if (filter) {
          continue;
        }
        if (DEFAULT_DEBUG_DAEMONS_NAMESPACE
            .equals(initializerFactory.element
                .getNamespaceIdentifier())) {
          if (initializerDaemon.isEnabled()) {
            pdtDaemons.add(initializerDaemon);
          }
        } else {
          if (initializerDaemon.isEnabled()) {
            additionalDaemons.add(initializerDaemon);
          }
        }
      }
      // Create the final daemons list.
View Full Code Here

TOP

Related Classes of org.eclipse.php.debug.daemon.communication.ICommunicationDaemon

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.