mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Add javadoc.
This commit is contained in:
parent
100c6ff5d2
commit
97faacee3a
1 changed files with 9 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue