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

Add javadoc.

This commit is contained in:
Markus Schorn 2008-05-19 13:01:52 +00:00
parent 100c6ff5d2
commit 97faacee3a

View file

@ -15,13 +15,20 @@ import org.eclipse.cdt.core.dom.ast.cpp.ICPPClassScope;
import org.eclipse.cdt.core.dom.ast.cpp.ICPPClassType;
/**
* mstodo
* Composite scope of a class specialization. Supports creating instances for bindings found
* in the scope of the specialized class template.
*
* @since 5.0
*/
public interface ICPPClassSpecializationScope extends ICPPClassScope {
/**
* Returns the class that was specialized to get this scope.
*/
ICPPClassType getOriginalClassType();
/**
* Returns the instance for a binding that belongs to the scope of the original
* class type.
*/
IBinding getInstance(IBinding original);
}