mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-09 18:56:02 +02:00
Added a warning about lack of thread safety to Javadoc.
This commit is contained in:
parent
d17ddfebab
commit
d2b90dc584
2 changed files with 8 additions and 2 deletions
|
@ -17,6 +17,9 @@ import org.eclipse.cdt.core.parser.IToken;
|
||||||
* This is the root node in the physical AST. A physical node represents a chunk
|
* This is the root node in the physical AST. A physical node represents a chunk
|
||||||
* of text in the source program.
|
* 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.
|
* @noimplement This interface is not intended to be implemented by clients.
|
||||||
* @noextend This interface is not intended to be extended by clients.
|
* @noextend This interface is not intended to be extended by clients.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -21,6 +21,9 @@ import org.eclipse.core.runtime.IAdaptable;
|
||||||
/**
|
/**
|
||||||
* The translation unit represents a compilable unit of source.
|
* 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.
|
* @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.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue