Examples of IniAlteredNotification


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

public class IniAlteredNotificationHandler implements IDebugMessageHandler {

  private static final String INCLUDE_PATH = "include_path"; //$NON-NLS-1$

  public void handle(IDebugMessage message, PHPDebugTarget debugTarget) {
    IniAlteredNotification iniMessage = (IniAlteredNotification) message;
    if (INCLUDE_PATH.equals(iniMessage.getName())) {
      List<String> oldValues = parseEntries(iniMessage.getOldValue());
      List<String> newValues = parseEntries(iniMessage.getNewValue());
      for (String oldValue : oldValues) {
        if (newValues.contains(oldValue)) {
          newValues.remove(oldValue);
        }
      }
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.