1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

param name change for clarity

This commit is contained in:
David Inglis 2003-09-18 14:56:23 +00:00
parent 52011a4991
commit 4fbd2992e0

View file

@ -15,7 +15,7 @@ import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
public interface IMakeTargetManager {
IMakeTarget createTarget(IProject project, String targetName, String targetID) throws CoreException;
IMakeTarget createTarget(IProject project, String targetName, String targetBuilderID) throws CoreException;
void addTarget(IContainer container, IMakeTarget target) throws CoreException;
void removeTarget(IMakeTarget target) throws CoreException;
void renameTarget(IMakeTarget target, String name) throws CoreException;
@ -25,7 +25,7 @@ public interface IMakeTargetManager {
IProject[] getTargetBuilderProjects() throws CoreException;
String getBuilderID(String targetID);
String getBuilderID(String targetBuilderID);
String[] getTargetBuilders(IProject project);