Package org.eclipse.php.internal.debug.core.zend.debugger.messages

Examples of org.eclipse.php.internal.debug.core.zend.debugger.messages.DebugSessionStartedNotification


import org.eclipse.php.internal.debug.core.zend.model.PHPDebugTarget;

public class SessionStartedNotificationHandler implements IDebugMessageHandler {

  public void handle(IDebugMessage message, PHPDebugTarget debugTarget) {
    DebugSessionStartedNotification notification = (DebugSessionStartedNotification) message;
    IDebugHandler debugHandler = debugTarget.getRemoteDebugger()
        .getDebugHandler();

    String fileName = notification.getFileName();
    String uri = notification.getUri();
    String query = notification.getQuery();
    String options = notification.getOptions();
    debugHandler.sessionStarted(fileName, uri, query, options);
  }
View Full Code Here

TOP

Related Classes of org.eclipse.php.internal.debug.core.zend.debugger.messages.DebugSessionStartedNotification

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.