1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-26 10:25:32 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2015-12-27 14:34:49 -08:00
parent e667b2631c
commit f1bcff300c
2 changed files with 8 additions and 10 deletions

View file

@ -21,8 +21,9 @@ public interface ICPPTemplateDefinition extends ICPPBinding {
/** /**
* Returns an array of the template parameters. * Returns an array of the template parameters.
* In the case of a specialization, the array will be empty, * In the case of a specialization, the array will be empty,
* a partial specialization will have the specialized parameter list * a partial specialization will have the specialized parameter list.
* @return array of ICPPTemplateParameter *
* @return an array of template parameters
*/ */
public ICPPTemplateParameter[] getTemplateParameters(); public ICPPTemplateParameter[] getTemplateParameters();
} }

View file

@ -14,17 +14,14 @@ import org.eclipse.cdt.core.dom.ast.DOMException;
import org.eclipse.cdt.core.dom.ast.IType; import org.eclipse.cdt.core.dom.ast.IType;
/** /**
* Template parameters of type template * Template parameters of type template.
* *
* @noextend This interface is not intended to be extended by clients. * @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients. * @noimplement This interface is not intended to be implemented by clients.
*/ */
public interface ICPPTemplateTemplateParameter extends ICPPTemplateParameter, ICPPClassTemplate { public interface ICPPTemplateTemplateParameter extends ICPPTemplateParameter, ICPPClassTemplate {
@Override
public ICPPTemplateParameter[] getTemplateParameters();
/** /**
* Return the default value for this parameter, or <code>null</code>. * Returns the default value for this parameter, or {@code null}.
*/ */
public IType getDefault() throws DOMException; public IType getDefault() throws DOMException;