1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-05 07:15:39 +02:00

Javadoc adjustments.

This commit is contained in:
Sergey Prigogin 2011-04-09 20:58:50 +00:00
parent a8382da6a5
commit 1b0fae8b18

View file

@ -28,10 +28,10 @@ import org.eclipse.cdt.core.dom.ast.IASTTranslationUnit;
*/ */
public interface ICAstChecker extends IChecker { public interface ICAstChecker extends IChecker {
/** /**
* Run this checker on a given ast. * Runs this checker on a given AST.
* Ast locks would be obtained by the framework before calling this method. * AST locks are obtained by the framework before calling this method.
* *
* @param ast * @param ast the AST.
*/ */
void processAst(IASTTranslationUnit ast); void processAst(IASTTranslationUnit ast);
} }