cdt/cdt_5_0_x/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/executables/ExecutablesChangeEvent.java
changeset 14 c50c3d06898c
parent 8 2cfb52d98e82
child 15 3ac8c55882b5
--- a/cdt/cdt_5_0_x/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/executables/ExecutablesChangeEvent.java	Wed May 20 15:37:54 2009 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,33 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2008 Nokia and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Nokia - Initial API and implementation
- *******************************************************************************/
-package org.eclipse.cdt.debug.core.executables;
-
-import org.eclipse.core.runtime.PlatformObject;
-
-public class ExecutablesChangeEvent extends PlatformObject implements IExecutablesChangeEvent {
-
-	private Executable[] oldExecutables;
-	private Executable[] newExecutables;
-
-	public ExecutablesChangeEvent(Executable[] oldList, Executable[] newList) {
-		oldExecutables = oldList;
-		newExecutables = newList;
-	}
-
-	public Executable[] getCurrentExecutables() {
-		return newExecutables;
-	}
-
-	public Executable[] getPreviousExecutables() {
-		return oldExecutables;
-	}
-
-}