cdt/cdt_5_0_x/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/executables/IExecutablesChangeEvent.java
changeset 14 c50c3d06898c
parent 8 2cfb52d98e82
child 15 3ac8c55882b5
equal deleted inserted replaced
8:2cfb52d98e82 14:c50c3d06898c
     1 /*******************************************************************************
       
     2  * Copyright (c) 2008 Nokia and others.
       
     3  * All rights reserved. This program and the accompanying materials
       
     4  * are made available under the terms of the Eclipse Public License v1.0
       
     5  * which accompanies this distribution, and is available at
       
     6  * http://www.eclipse.org/legal/epl-v10.html
       
     7  *
       
     8  * Contributors:
       
     9  * Nokia - Initial API and implementation
       
    10  *******************************************************************************/
       
    11 
       
    12 package org.eclipse.cdt.debug.core.executables;
       
    13 
       
    14 public interface IExecutablesChangeEvent {
       
    15 
       
    16 	public Executable[] getCurrentExecutables();
       
    17 
       
    18 	public Executable[] getPreviousExecutables();
       
    19 }