1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-29 20:05:35 +02:00

bug 319512: Missing type arguments on managedbuilder.core

This commit is contained in:
Andrew Gvozdev 2010-10-20 14:46:05 +00:00
parent f208496afe
commit ea02d217d5

View file

@ -12,6 +12,12 @@ package org.eclipse.cdt.managedbuilder.internal.tcmodification;
import org.eclipse.cdt.managedbuilder.internal.core.IRealBuildObjectAssociation;
/**
* The class implements the storage organized by types extending
* {@link IRealBuildObjectAssociation}.
*
* @param <T> - the type of object being stored.
*/
public final class ObjectTypeBasedStorage<T> implements Cloneable {
private static final int TOOL_INDEX = 0;
private static final int TOOLCHAIN_INDEX = 1;