1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 01:15:29 +02:00

bug 319512: Missing type arguments on managedbuilder.core

This commit is contained in:
Andrew Gvozdev 2011-02-18 23:13:16 +00:00
parent 183ae47b7b
commit 29552b6bcf

View file

@ -12,10 +12,10 @@ package org.eclipse.cdt.managedbuilder.internal.core;
import java.util.List;
public interface IMatchKeyProvider extends Comparable {
MatchKey getMatchKey();
public interface IMatchKeyProvider<T extends BuildObject> extends Comparable {
MatchKey<T> getMatchKey();
void setIdenticalList(List list);
void setIdenticalList(List<IMatchKeyProvider<T>> list);
List getIdenticalList();
List<IMatchKeyProvider<T>> getIdenticalList();
}