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

Added a warning about lack of thread safety to Javadoc.

This commit is contained in:
Sergey Prigogin 2011-03-14 19:20:18 +00:00
parent d17ddfebab
commit d2b90dc584
2 changed files with 8 additions and 2 deletions

View file

@ -16,7 +16,10 @@ import org.eclipse.cdt.core.parser.IToken;
/**
* This is the root node in the physical AST. A physical node represents a chunk
* of text in the source program.
*
*
* Classes implementing this interface are not thread safe.
* Even 'get' methods may cause changes to the underlying object.
*
* @noimplement This interface is not intended to be implemented by clients.
* @noextend This interface is not intended to be extended by clients.
*/

View file

@ -20,7 +20,10 @@ import org.eclipse.core.runtime.IAdaptable;
/**
* The translation unit represents a compilable unit of source.
*
*
* All existing implementations of IASTTranslationUnit are not thread safe.
* Even 'get' methods may cause changes to the underlying object.
*
* @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients.
*/