cdt/cdt_5_0_x/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/executables/IExecutableProvider.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/IExecutableProvider.java	Wed May 20 15:37:54 2009 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,43 +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.IProgressMonitor;
-import org.eclipse.core.runtime.IStatus;
-
-/**
- * IExecutablesProvider supplies a list of executables to the Executables
- * Manager.
- * 
- * @author Ken Ryall
- * 
- */
-public interface IExecutableProvider {
-
-	static int LOW_PRIORITY = 25;
-	static int NORMAL_PRIORITY = 50;
-	static int HIGH_PRIORITY = 75;
-	
-	/**
-	 * Gets the priority to be used when providing a list of executables.
-	 * The priority is used by the Executables Manager when multiple IExecutableProvider are available.
-	 * IExecutableImporter.importExecutables will be called for each one in priority order.
-	 * 
-	 * @param executable
-	 * @return the priority level to be used for this ISourceFilesProvider
-	 */
-	int getPriority();
-
-	Executable[] getExecutables(IProgressMonitor monitor);
-
-	IStatus removeExecutable(Executable executable, IProgressMonitor monitor);
-
-}
\ No newline at end of file