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:
parent
183ae47b7b
commit
29552b6bcf
1 changed files with 4 additions and 4 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue