1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 06:32:10 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2016-03-01 13:52:13 -08:00
parent 1171bc168c
commit f1341a25cb

View file

@ -35,23 +35,16 @@ public interface IASTCompletionNode {
/** /**
* Returns the length of the completion point. * Returns the length of the completion point.
*
* @return length of completion token
*/ */
public int getLength(); public int getLength();
/** /**
* Returns a list of names that fit in this context. * Returns a list of names that fit in this context.
*
* @return array of IASTName's
*/ */
public IASTName[] getNames(); public IASTName[] getNames();
/** /**
* Returns the translation unit for this completion * Returns the translation unit for this completion.
*
* @return the translation unit
*/ */
public IASTTranslationUnit getTranslationUnit(); public IASTTranslationUnit getTranslationUnit();
} }