@@ -87,12 +87,12 @@
import org.eclipse.ui.internal.browser.WebBrowserPreference;
import org.eclipse.ui.internal.browser.WebBrowserView;

import com.aptana.debug.php.core.IPHPDebugCorePreferenceKeys;
import com.aptana.debug.php.core.launch.DebugPortNotificationDialog;
import com.aptana.debug.php.core.launch.ScriptLocator;
import com.aptana.debug.php.core.tunneling.SSHTunnel;
import com.aptana.debug.php.core.tunneling.SSHTunnelFactory;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.IPHPDebugCorePreferenceKeys;
import com.aptana.php.debug.core.launch.DebugPortNotificationDialog;
import com.aptana.php.debug.core.launch.ScriptLocator;
import com.aptana.php.debug.core.tunneling.SSHTunnel;
import com.aptana.php.debug.core.tunneling.SSHTunnelFactory;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* Utilities that are shared to all the PHP launches.
File renamed without changes.
File renamed without changes.
@@ -48,12 +48,12 @@
import org.eclipse.php.internal.debug.core.zend.debugger.PHPWebServerDebuggerInitializer;
import org.eclipse.swt.widgets.Display;

import com.aptana.debug.php.core.IPHPDebugCorePreferenceKeys;
import com.aptana.debug.php.core.daemon.DebugDaemon;
import com.aptana.debug.php.core.launch.ScriptLocator;
import com.aptana.debug.php.core.server.PHPServersManager;
import com.aptana.debug.php.core.tunneling.SSHTunnel;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.IPHPDebugCorePreferenceKeys;
import com.aptana.php.debug.core.daemon.DebugDaemon;
import com.aptana.php.debug.core.launch.ScriptLocator;
import com.aptana.php.debug.core.server.PHPServersManager;
import com.aptana.php.debug.core.tunneling.SSHTunnel;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;
import com.aptana.webserver.core.IServer;

/**
@@ -61,8 +61,8 @@
import org.eclipse.swt.widgets.Display;
import org.eclipse.ui.dialogs.PreferencesUtil;

import com.aptana.debug.php.core.launch.ScriptLocator;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.launch.ScriptLocator;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

public class XDebugExeLaunchConfigurationDelegate extends LaunchConfigurationDelegate {

File renamed without changes.
@@ -55,14 +55,14 @@
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.browser.IWebBrowser;

import com.aptana.debug.php.core.IPHPDebugCorePreferenceKeys;
import com.aptana.debug.php.core.daemon.DebugDaemon;
import com.aptana.debug.php.core.launch.ScriptLocator;
import com.aptana.debug.php.core.launch.remote.RemoteDebugRedirector;
import com.aptana.debug.php.core.server.PHPServersManager;
import com.aptana.debug.php.core.tunneling.SSHTunnel;
import com.aptana.debug.php.core.util.NameValuePair;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.IPHPDebugCorePreferenceKeys;
import com.aptana.php.debug.core.daemon.DebugDaemon;
import com.aptana.php.debug.core.launch.ScriptLocator;
import com.aptana.php.debug.core.launch.remote.RemoteDebugRedirector;
import com.aptana.php.debug.core.server.PHPServersManager;
import com.aptana.php.debug.core.tunneling.SSHTunnel;
import com.aptana.php.debug.core.util.NameValuePair;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;
import com.aptana.webserver.core.IServer;

public class XDebugWebLaunchConfigurationDelegate extends LaunchConfigurationDelegate {
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -46,7 +46,7 @@ public PHPConditionalBreakpoint() {
public PHPConditionalBreakpoint(final IResource resource, final int lineNumber, final Map attributes) throws CoreException {
IWorkspaceRunnable runnable = new IWorkspaceRunnable() {
public void run(IProgressMonitor monitor) throws CoreException {
IMarker marker = resource.createMarker("com.aptana.debug.php.epl.PHPConditionalBreakpointMarker"); //$NON-NLS-1$
IMarker marker = resource.createMarker("com.aptana.php.debug.epl.PHPConditionalBreakpointMarker"); //$NON-NLS-1$
attributes.put(IBreakpoint.ENABLED, Boolean.TRUE);
attributes.put(IBreakpoint.ID, getModelIdentifier());
attributes.put(IMarker.MESSAGE, MessageFormat.format(PHPDebugCoreMessages.LineBreakPointMessage_1, new String[] { resource.getName(), Integer.toString(lineNumber) }));
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -67,8 +67,8 @@
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.PlatformUI;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.editor.php.internal.core.IPHPConstants;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;


public class DebugSearchEngine {
File renamed without changes.
File renamed without changes.
@@ -26,9 +26,9 @@
import org.eclipse.php.internal.debug.core.preferences.PHPExesEvent;
import org.eclipse.php.internal.debug.core.preferences.PHPexes;

import com.aptana.debug.php.core.server.PHPServersManager;
import com.aptana.debug.php.core.server.PHPWebServer;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.server.PHPServersManager;
import com.aptana.php.debug.core.server.PHPWebServer;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;
import com.aptana.webserver.core.ExternalWebServer;
import com.aptana.webserver.core.IServer;
import com.aptana.webserver.core.IServerChangeListener;
@@ -39,7 +39,7 @@ public class PathMapperRegistry implements IXMLPreferencesStorable, IPHPExesList

private static final String PATH_MAPPER_ATTRIBUTE = "pathMapper"; //$NON-NLS-1$
private static final String SERVER_TYPE_ATTRIBUTE = "serverType"; //$NON-NLS-1$
private static final String PATH_MAPPER_EXTENSION_ID = "com.aptana.debug.php.pathMapper"; //$NON-NLS-1$
private static final String PATH_MAPPER_EXTENSION_ID = "com.aptana.php.debug.pathMapper"; //$NON-NLS-1$

private static final String PATH_MAPPER_PREF_KEY = PHPDebugEPLPlugin.PLUGIN_ID + ".pathMapper"; //$NON-NLS-1$

File renamed without changes.
File renamed without changes.
@@ -23,8 +23,8 @@
import org.eclipse.php.internal.debug.core.launching.PHPExecutableLaunchDelegate;
import org.eclipse.php.internal.debug.core.xdebug.communication.XDebugCommunicationDaemon;

import com.aptana.debug.php.core.IPHPDebugCorePreferenceKeys;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.IPHPDebugCorePreferenceKeys;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* Sets default values for PHP Debug preferences
@@ -10,7 +10,7 @@
*******************************************************************************/
package org.eclipse.php.internal.debug.core.preferences;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;


/**
@@ -25,9 +25,9 @@
import org.eclipse.ui.IPluginContribution;
import org.eclipse.ui.activities.WorkbenchActivityHelper;

import com.aptana.debug.php.core.daemon.CommunicationDaemonRegistry;
import com.aptana.debug.php.core.daemon.ICommunicationDaemon;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.daemon.CommunicationDaemonRegistry;
import com.aptana.php.debug.core.daemon.ICommunicationDaemon;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* A registry class for all the PHP debuggers.
File renamed without changes.
@@ -21,9 +21,9 @@
import org.eclipse.php.internal.debug.core.IPHPDebugConstants;
import org.eclipse.php.internal.debug.core.xdebug.communication.XDebugCommunicationDaemon;

import com.aptana.debug.php.core.IPHPDebugCorePreferenceKeys;
import com.aptana.debug.php.core.server.PHPServersManager;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.IPHPDebugCorePreferenceKeys;
import com.aptana.php.debug.core.server.PHPServersManager;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

public class PHPProjectPreferences
{
@@ -27,10 +27,10 @@
import org.osgi.service.prefs.BackingStoreException;

import com.aptana.core.util.StringUtil;
import com.aptana.debug.php.core.IPHPDebugCorePreferenceKeys;
import com.aptana.debug.php.core.interpreter.IInterpreter;
import com.aptana.debug.php.core.interpreter.Interpreters;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.IPHPDebugCorePreferenceKeys;
import com.aptana.php.debug.core.interpreter.IInterpreter;
import com.aptana.php.debug.core.interpreter.Interpreters;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* A managing class for all the registered PHP Interpreters. As of PDT 1.0 this class can handle multiple debuggers.
File renamed without changes.
@@ -23,7 +23,7 @@
import org.eclipse.php.internal.core.util.FileUtils;
import org.eclipse.php.internal.debug.core.IPHPDebugConstants;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* This Singleton class is used to bridge between the debugger and the
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -49,8 +49,8 @@
import org.eclipse.core.runtime.content.IContentType;
import org.eclipse.core.runtime.jobs.ISchedulingRule;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.editor.php.internal.core.IPHPConstants;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* The ExternalFileWrapper is an {@link IFile} wrapper that allows the setting of a device name. This
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -25,7 +25,7 @@
import org.eclipse.core.runtime.Status;
import org2.eclipse.php.internal.core.CoreMessages;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* Implementation of storage for a local file (<code>java.io.File</code>).
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -14,7 +14,7 @@
import org.eclipse.debug.core.sourcelookup.ISourceContainerType;
import org.eclipse.debug.core.sourcelookup.containers.ContainerSourceContainer;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;


public class WorkspaceRootSourceContainer extends ContainerSourceContainer {
@@ -12,7 +12,7 @@

import org.eclipse.php.internal.debug.core.xdebug.dbgp.DBGpPreferences;

import com.aptana.debug.php.core.preferences.PHPDebugPreferencesUtil;
import com.aptana.php.debug.core.preferences.PHPDebugPreferencesUtil;

public class GeneralUtils
{
File renamed without changes.
File renamed without changes.
@@ -14,7 +14,7 @@
import org.eclipse.core.runtime.preferences.IEclipsePreferences;
import org.eclipse.php.internal.debug.core.xdebug.dbgp.DBGpPreferences;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

public class XDebugPreferenceInit {

@@ -21,8 +21,8 @@
import org.eclipse.php.internal.debug.core.xdebug.dbgp.DBGpProxyHandler;
import org.osgi.service.prefs.BackingStoreException;

import com.aptana.debug.php.core.preferences.PHPDebugPreferencesUtil;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.preferences.PHPDebugPreferencesUtil;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;
@SuppressWarnings("nls")
public class XDebugPreferenceMgr {

@@ -10,7 +10,7 @@
*******************************************************************************/
package org.eclipse.php.internal.debug.core.xdebug;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;


public interface XDebugUIAttributeConstants {
File renamed without changes.
File renamed without changes.
@@ -50,8 +50,8 @@
import org.eclipse.php.internal.debug.core.xdebug.dbgp.session.IDBGpSessionListener;
import org.eclipse.swt.widgets.Display;

import com.aptana.debug.php.core.server.PHPServersManager;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.server.PHPServersManager;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;
import com.aptana.webserver.core.IServer;

/**
@@ -233,7 +233,7 @@ private void createLaunch(DBGpSession session)
// systems will not throw NPE on the LaunchView actions.
// (This was an issue with 3.2 that was fixed for 3.3)
ILaunchConfigurationType launchType = DebugPlugin.getDefault().getLaunchManager()
.getLaunchConfigurationType("com.aptana.debug.php.epl.XDebugJitLaunchConfigurationType"); //$NON-NLS-1$
.getLaunchConfigurationType("com.aptana.php.debug.epl.XDebugJitLaunchConfigurationType"); //$NON-NLS-1$
ILaunchConfigurationWorkingCopy wc = null;
if (launchType != null)
{
File renamed without changes.
File renamed without changes.
@@ -17,7 +17,7 @@
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* A set of useful utilities
File renamed without changes.
@@ -39,8 +39,8 @@
import org.eclipse.swt.widgets.Display;

import com.aptana.core.util.StringUtil;
import com.aptana.debug.php.core.preferences.PHPDebugPreferencesUtil;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.preferences.PHPDebugPreferencesUtil;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* This class handles the management of DBGp proxy interaction.
@@ -34,8 +34,8 @@
import org.eclipse.swt.widgets.Text;
import org.osgi.service.prefs.BackingStoreException;

import com.aptana.debug.php.core.preferences.PHPDebugPreferencesUtil;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.preferences.PHPDebugPreferencesUtil;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* An XDebug configuration dialog for editing/viewing the XDebug debugger configurations.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -73,7 +73,7 @@
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

public class DBGpTarget extends DBGpElement implements IPHPDebugTarget, IDBGpDebugTarget, IStep, IBreakpointManagerListener, IDBGpSessionListener {

File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -22,7 +22,7 @@
import org.eclipse.php.internal.debug.core.xdebug.dbgp.protocol.DBGpResponse;
import org.w3c.dom.Node;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

public class DBGpVariable extends DBGpBaseVariable implements IVariable {

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -70,9 +70,9 @@
import org.eclipse.swt.widgets.Display;
import org2.eclipse.php.internal.core.util.collections.IntHashtable;

import com.aptana.debug.php.core.IPHPDebugCorePreferenceKeys;
import com.aptana.debug.php.core.launch.ScriptLocator;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.IPHPDebugCorePreferenceKeys;
import com.aptana.php.debug.core.launch.ScriptLocator;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* The debug connection thread is responsible of initializing and handle a single debug session that was
@@ -18,8 +18,8 @@
import org.eclipse.php.internal.debug.core.daemon.AbstractDebuggerCommunicationDaemon;
import org.eclipse.php.internal.debug.core.preferences.PHPDebugCorePreferenceNames;

import com.aptana.debug.php.core.daemon.ICommunicationDaemon;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.daemon.ICommunicationDaemon;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* The debugger communication receiver holds a ServerSocket that remains open for the entire
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -19,7 +19,7 @@
import org.eclipse.jface.util.SafeRunnable;
import org.eclipse.php.debug.core.debugger.IDebugHandler;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

public class DebugHandlersRegistry {

@@ -24,7 +24,7 @@
import org.eclipse.php.debug.core.debugger.messages.IDebugMessage;
import org2.eclipse.php.internal.core.util.collections.IntHashtable;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;


public class DebugMessagesRegistry {
@@ -23,7 +23,7 @@
import org.eclipse.php.debug.core.debugger.parameters.IDebugParametersInitializer;
import org.eclipse.php.internal.debug.core.IPHPDebugConstants;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* @author michael
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -28,7 +28,7 @@
import org.eclipse.ui.browser.IWebBrowser;
import org.eclipse.ui.browser.IWorkbenchBrowserSupport;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

public class OldDebuggerWarningDialog extends Dialog {

@@ -28,8 +28,8 @@
import org.eclipse.php.internal.debug.core.preferences.PHPexes;
import org.eclipse.swt.widgets.Display;

import com.aptana.debug.php.core.util.FileUtils;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.util.FileUtils;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* A local PHP script debugger initializer.
File renamed without changes.
@@ -42,10 +42,10 @@
import org.eclipse.ui.PlatformUI;
import org.eclipse.ui.browser.IWebBrowser;

import com.aptana.debug.php.core.IPHPDebugCorePreferenceKeys;
import com.aptana.debug.php.core.launch.remote.RemoteDebugRedirector;
import com.aptana.debug.php.core.util.NameValuePair;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.IPHPDebugCorePreferenceKeys;
import com.aptana.php.debug.core.launch.remote.RemoteDebugRedirector;
import com.aptana.php.debug.core.util.NameValuePair;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* A debug session initializer.
File renamed without changes.
@@ -17,7 +17,7 @@
import org.eclipse.php.internal.debug.core.PHPDebugCoreMessages;
import org.eclipse.php.internal.debug.core.launching.PHPLaunchUtilities;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* A process crash detector is a {@link Runnable} that hooks a PHP process error stream and blocks until the process terminates.
@@ -81,7 +81,7 @@
import org.eclipse.php.internal.debug.core.zend.model.PHPDebugTarget;
import org.eclipse.swt.widgets.Display;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* An IRemoteDebugger implementation.
File renamed without changes.
File renamed without changes.
@@ -21,7 +21,7 @@
import org.eclipse.php.internal.debug.core.preferences.PHPDebugCorePreferenceNames;
import org.eclipse.swt.widgets.Shell;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* Zend's debugger configuration class.
@@ -31,8 +31,8 @@
import org.eclipse.ui.PlatformUI;
import org.osgi.service.prefs.BackingStoreException;

import com.aptana.debug.php.core.preferences.PHPDebugPreferencesUtil;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.preferences.PHPDebugPreferencesUtil;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* Zend debugger configuration class.
@@ -124,7 +124,7 @@ protected void okPressed() {
public void create()
{
super.create();
PlatformUI.getWorkbench().getHelpSystem().setHelp(getShell(), "com.aptana.debug.php.epl.zend_conf"); //$NON-NLS-1$
PlatformUI.getWorkbench().getHelpSystem().setHelp(getShell(), "com.aptana.php.debug.epl.zend_conf"); //$NON-NLS-1$
}

class DebugPortValidateListener implements ModifyListener {
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -23,7 +23,7 @@
import org.eclipse.php.internal.debug.core.zend.debugger.messages.ReadyNotification;
import org.eclipse.php.internal.debug.core.zend.model.PHPDebugTarget;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

public class ReadyNotificationHandler implements IDebugMessageHandler {

File renamed without changes.
File renamed without changes.
@@ -37,7 +37,7 @@
import org.eclipse.php.internal.debug.core.zend.debugger.messages.StartProcessFileNotification;
import org.eclipse.php.internal.debug.core.zend.model.PHPDebugTarget;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

public class StartProcessFileNotificationHandler implements IDebugMessageHandler {

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -23,7 +23,7 @@
import org.eclipse.php.internal.debug.core.IPHPDebugConstants;
import org.eclipse.php.internal.debug.core.Logger;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* Default debug parameters initializer.
File renamed without changes.
@@ -82,8 +82,8 @@
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.PlatformUI;

import com.aptana.debug.php.core.IPHPDebugCorePreferenceKeys;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.IPHPDebugCorePreferenceKeys;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* PHP Debug Target
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -20,8 +20,8 @@
import org.eclipse.swt.graphics.Image;
import org.osgi.framework.Bundle;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.editor.php.epl.PHPEplPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* Bundle of most images used by the PHP debug UI plug-in.
File renamed without changes.
File renamed without changes.
@@ -39,7 +39,7 @@
import org.eclipse.ui.IWorkbenchPage;
import org.eclipse.ui.IWorkbenchPart;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

public class BreakpointSetConditionAction implements IObjectActionDelegate {

File renamed without changes.
File renamed without changes.
@@ -29,7 +29,7 @@
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.PlatformUI;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* An action for adding a new PHP watch expressions.
@@ -25,7 +25,7 @@
import org.eclipse.swt.widgets.Shell;
import org.w3c.dom.Node;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* A variable value editor that prompts the user to set a primitive's value.
@@ -19,7 +19,7 @@
import org.eclipse.php.internal.debug.ui.breakpoint.provider.PHPBreakpointProvider;
import org.eclipse.ui.texteditor.IMarkerUpdater;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* Responsible for update the PHPConditionalBreakpointMarker info while saving the document.
File renamed without changes.
File renamed without changes.
@@ -43,8 +43,8 @@
import org.eclipse.ui.internal.editors.text.NonExistingFileEditorInput;
import org.eclipse.ui.texteditor.ITextEditor;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.editor.common.AbstractThemeableEditor;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;
import com.aptana.ui.util.StatusLineMessageTimerManager;

/**
@@ -28,7 +28,7 @@
import org.eclipse.ui.IWorkbenchPropertyPage;
import org.eclipse.ui.dialogs.PropertyPage;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

public class PHPBreakpointPropertyPage extends PropertyPage implements IWorkbenchPropertyPage {

@@ -43,14 +43,14 @@
import org.eclipse.ui.IStorageEditorInput;
import org2.eclipse.php.internal.core.documentModel.parser.regions.PHPRegionTypes;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.editor.common.AbstractThemeableEditor;
import com.aptana.editor.common.contentassist.ILexemeProvider;
import com.aptana.editor.common.text.rules.CompositePartitionScanner;
import com.aptana.editor.php.internal.contentAssist.PHPTokenType;
import com.aptana.editor.php.internal.contentAssist.ParsingUtils;
import com.aptana.editor.php.internal.core.IPHPConstants;
import com.aptana.parsing.lexer.Lexeme;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;
import com.aptana.ui.util.StatusLineMessageTimerManager;

@SuppressWarnings("unchecked")
@@ -34,7 +34,7 @@
import org.eclipse.php.internal.debug.core.zend.model.PHPDebugTarget;
import org.eclipse.swt.graphics.Color;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
*
File renamed without changes.
@@ -5,7 +5,7 @@
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.console.IHyperlink;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* @author seva A version of {@link FileLink} which also supports external resources
@@ -19,7 +19,7 @@
import org.eclipse.php.internal.debug.core.launching.PHPProcess;
import org.eclipse.ui.console.IHyperlink;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* Processes task hyperlinks as lines are appended to the console
@@ -21,7 +21,7 @@
import org.eclipse.ui.texteditor.IDocumentProvider;
import org.eclipse.ui.texteditor.ITextEditor;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;


/**
@@ -27,7 +27,7 @@
import org.eclipse.swt.widgets.Shell;
import org.eclipse.ui.dialogs.ElementTreeSelectionDialog;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

//import com.ibm.mrclean.project.FlexibleProjectUtils;

File renamed without changes.
File renamed without changes.
@@ -20,7 +20,7 @@
import org.eclipse.debug.ui.AbstractLaunchConfigurationTab;
import org.eclipse.jface.util.SafeRunnable;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

public class LaunchConfigurationsTabsRegistry {

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -59,9 +59,9 @@
import org.eclipse.ui.internal.editors.text.NonExistingFileEditorInput;
import org.eclipse.ui.texteditor.ITextEditor;

import com.aptana.debug.php.core.IPHPDebugCorePreferenceKeys;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.editor.php.internal.core.IPHPConstants;
import com.aptana.php.debug.core.IPHPDebugCorePreferenceKeys;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

public class PHPExeLaunchShortcut implements ILaunchShortcut {

@@ -58,8 +58,8 @@
import org.eclipse.swt.widgets.Text;
import org2.eclipse.php.internal.core.util.ScrolledCompositeImpl;

import com.aptana.debug.php.core.IPHPDebugCorePreferenceKeys;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.IPHPDebugCorePreferenceKeys;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* PHP executable launch tab is a launch configuration tab for the PHP Script launching.
@@ -54,10 +54,10 @@
import org.eclipse.ui.progress.UIJob;
import org2.eclipse.php.internal.ui.util.PixelConverter;

import com.aptana.debug.php.core.IPHPDebugCorePreferenceKeys;
import com.aptana.debug.php.core.tunneling.TunnelTester;
import com.aptana.debug.php.core.util.MD5;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.IPHPDebugCorePreferenceKeys;
import com.aptana.php.debug.core.tunneling.TunnelTester;
import com.aptana.php.debug.core.util.MD5;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* A PHPServerAdvancedTab for selecting advanced debug options, such as 'Debug all Pages', 'Start Debug from' etc.
File renamed without changes.
File renamed without changes.
@@ -16,7 +16,7 @@
import org.eclipse.php.internal.debug.ui.launching.LaunchUtil;
import org.eclipse.swt.widgets.Composite;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* PHP server tab that is displayed in the Run/Debug launch configuration tabs.
@@ -40,10 +40,10 @@
import org.eclipse.ui.IEditorInput;
import org.eclipse.ui.IEditorPart;

import com.aptana.debug.php.core.IPHPDebugCorePreferenceKeys;
import com.aptana.debug.php.core.server.PHPServersManager;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.editor.php.internal.core.IPHPConstants;
import com.aptana.php.debug.core.IPHPDebugCorePreferenceKeys;
import com.aptana.php.debug.core.server.PHPServersManager;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;
import com.aptana.webserver.core.IServer;

/**
@@ -25,8 +25,8 @@
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.Group;

import com.aptana.debug.php.core.IPHPDebugCorePreferenceKeys;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.IPHPDebugCorePreferenceKeys;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;
import com.aptana.webserver.core.IServer;

/**
@@ -75,11 +75,11 @@
import org2.eclipse.php.util.SWTUtil;

import com.aptana.core.logging.IdeLog;
import com.aptana.debug.php.core.IPHPDebugCorePreferenceKeys;
import com.aptana.debug.php.core.server.PHPServersManager;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.debug.php.ui.launching.PathMappingUpdater;
import com.aptana.debug.php.ui.pathMapper.PathMapperDialog;
import com.aptana.php.debug.core.IPHPDebugCorePreferenceKeys;
import com.aptana.php.debug.core.server.PHPServersManager;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.ui.launching.PathMappingUpdater;
import com.aptana.php.debug.ui.pathMapper.PathMapperDialog;
import com.aptana.ui.IPropertyDialog;
import com.aptana.ui.PropertyDialogsRegistry;
import com.aptana.ui.UIPlugin;
@@ -404,7 +404,7 @@ private void updateDebugServerTesters()

private IDebugServerConnectionTest[] retrieveAllServerTestExtensions(final String currentDebuggerType)
{
String debugServerTestExtensionName = "com.aptana.debug.php.epl.debugServerConnectionTest"; //$NON-NLS-1$
String debugServerTestExtensionName = "com.aptana.php.debug.epl.debugServerConnectionTest"; //$NON-NLS-1$
Map<String, IDebugServerConnectionTest> filtersMap = new HashMap<String, IDebugServerConnectionTest>();
IConfigurationElement[] elements = Platform.getExtensionRegistry().getConfigurationElementsFor(
debugServerTestExtensionName);
File renamed without changes.
@@ -11,16 +11,16 @@
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.Point;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.editor.php.epl.PHPEplPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* Bundle of most images used by the PHP Debug UI plug-in.
*/
public class ServersPluginImages {

// private static final String NAME_PREFIX = "org.eclipse.php.server.ui."; //$NON-NLS-1$
private static final String NAME_PREFIX = "com.aptana.debug.php.epl."; //$NON-NLS-1$
private static final String NAME_PREFIX = "com.aptana.php.debug.epl."; //$NON-NLS-1$
private static final int NAME_PREFIX_LENGTH = NAME_PREFIX.length();

private static URL fgIconBaseURL = null;
@@ -37,8 +37,8 @@
import org.eclipse.swt.widgets.Shell;

import com.aptana.core.util.StringUtil;
import com.aptana.debug.php.core.preferences.PHPDebugPreferencesUtil;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.preferences.PHPDebugPreferencesUtil;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;
import com.aptana.webserver.core.IServer;

public class DefaultDebugServerConnectionTest implements IDebugServerConnectionTest, IDebugServerTestListener
@@ -27,7 +27,7 @@
import org.eclipse.swt.widgets.Link;
import org.eclipse.swt.widgets.Shell;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

public class DefaultServerTestMessageDialog extends MessageDialog {

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -19,7 +19,7 @@
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.IWorkbenchPreferencePage;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

public class InstalledDebuggersPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {

@@ -54,11 +54,11 @@
import org.eclipse.ui.internal.forms.widgets.FormUtil;
import org.osgi.service.prefs.BackingStoreException;

import com.aptana.debug.php.core.IPHPDebugCorePreferenceKeys;
import com.aptana.debug.php.core.preferences.PHPDebugPreferencesUtil;
import com.aptana.debug.php.core.server.PHPServersManager;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.editor.php.util.ScrolledPageContent;
import com.aptana.php.debug.core.IPHPDebugCorePreferenceKeys;
import com.aptana.php.debug.core.preferences.PHPDebugPreferencesUtil;
import com.aptana.php.debug.core.server.PHPServersManager;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;
import com.aptana.webserver.core.IServer;

/**
@@ -20,8 +20,8 @@
import org.eclipse.swt.widgets.Composite;
import org.osgi.service.prefs.BackingStoreException;

import com.aptana.debug.php.core.preferences.PHPDebugPreferencesUtil;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.preferences.PHPDebugPreferencesUtil;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* A PHP debug preferences page Workspace UI addon. This addon adds 3 check boxes for the debug perspective, debug info
@@ -30,8 +30,8 @@
import org.eclipse.ui.IWorkbench;
import org2.eclipse.php.internal.core.util.ScrolledCompositeImpl;

import com.aptana.debug.php.core.IPHPDebugCorePreferenceKeys;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.IPHPDebugCorePreferenceKeys;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* The main PHP | Debug preferences page.
File renamed without changes.
@@ -26,8 +26,8 @@
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.IWorkbenchPreferencePage;

import com.aptana.debug.php.core.IPHPDebugCorePreferenceKeys;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.IPHPDebugCorePreferenceKeys;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* A preference page for configuring PHP launching preferences.
File renamed without changes.
@@ -26,9 +26,9 @@
import org.eclipse.swt.widgets.Group;
import org.osgi.service.prefs.BackingStoreException;

import com.aptana.debug.php.core.IPHPDebugCorePreferenceKeys;
import com.aptana.debug.php.core.preferences.PHPDebugPreferencesUtil;
import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.core.IPHPDebugCorePreferenceKeys;
import com.aptana.php.debug.core.preferences.PHPDebugPreferencesUtil;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* A PHP debug preferences page Workspace UI addon.
File renamed without changes.
@@ -77,8 +77,8 @@
import org.eclipse.ui.PlatformUI;
import org2.eclipse.php.util.SWTUtil;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.editor.php.internal.ui.PHPPluginImages;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* A composite that displays installed PHP's in a table. PHPs can be
File renamed without changes.
@@ -49,7 +49,7 @@
import org.eclipse.swt.widgets.Link;
import org.eclipse.swt.widgets.Shell;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* A composite that displays installed PHP's in a combo box, with a 'PHP Executables' page link
@@ -29,7 +29,7 @@
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.IWorkbenchPreferencePage;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* The Installed PHPs preference page.
@@ -22,7 +22,7 @@
import org.eclipse.swt.custom.BusyIndicator;
import org.eclipse.ui.IMarkerResolution;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* Quick fix to define a new system library (none were found).
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -62,8 +62,8 @@
import org.eclipse.ui.IWorkbenchPreferencePage;
import org.eclipse.ui.dialogs.ISelectionValidator;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.editor.php.internal.ui.PHPPluginImages;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* The preference page for PHP step filtering, located at the node PHP > Debug > Step Filtering
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -48,7 +48,7 @@
import org.eclipse.ui.ide.IDE;
import org.eclipse.ui.part.FileEditorInput;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;


/**
File renamed without changes.
@@ -21,7 +21,7 @@
import org.eclipse.debug.ui.IDebugModelPresentation;
import org.eclipse.jface.util.SafeRunnable;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* PHP debug model presentation registry.
@@ -44,7 +44,7 @@
import org.eclipse.ui.ide.IDE;
import org.eclipse.ui.part.FileEditorInput;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* Renders PHP debug elements
File renamed without changes.
@@ -15,8 +15,8 @@
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.editor.php.core.PHPNature;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

public class RunnablePropertyTester extends PropertyTester{

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -38,7 +38,7 @@
import org.eclipse.ui.IWorkbenchActionConstants;
import org.eclipse.ui.IWorkbenchPart;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* View of the PHP parameter stack
File renamed without changes.
@@ -17,7 +17,7 @@
import org.eclipse.php.internal.debug.core.zend.model.PHPValue;
import org.eclipse.php.internal.debug.core.zend.model.PHPVariable;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* PHPVariableCellModifier is the cell modifier for the PHPVariables.
File renamed without changes.
@@ -30,7 +30,7 @@
import org.eclipse.php.internal.debug.core.zend.model.PHPDebugTarget;
import org.eclipse.php.internal.debug.core.zend.model.PHPValue;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
*
@@ -27,7 +27,7 @@
import org.eclipse.php.internal.debug.ui.PHPDebugUIMessages;
import org.w3c.dom.Node;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
*
File renamed without changes.
File renamed without changes.
File renamed without changes.
@@ -39,7 +39,7 @@
import org2.eclipse.php.internal.core.util.WorkspaceRunnableAdapter;
import org2.eclipse.php.internal.ui.PHPUIMessages;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

public class FragmentedWizard implements IWizard {

@@ -22,7 +22,7 @@
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Label;

import com.aptana.debug.php.epl.PHPDebugEPLPlugin;
import com.aptana.php.debug.epl.PHPDebugEPLPlugin;

/**
* A fragmented wizard page.
File renamed without changes.