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

Bug 422797 - Improved JavaDoc for IQMakeProjectInfoListener.qmakeChanged()

Change-Id: I36ad640cefae08d5ebb2b7e6a566e7e385d9036a
Signed-off-by: David Kaspar <dkaspar@blackberry.com>
Reviewed-on: https://git.eclipse.org/r/19427
Reviewed-by: Doug Schaefer <dschaefer@qnx.com>
IP-Clean: Doug Schaefer <dschaefer@qnx.com>
Tested-by: Doug Schaefer <dschaefer@qnx.com>
This commit is contained in:
David Kaspar 2013-12-06 14:02:21 +01:00 committed by Doug Schaefer
parent 3fbe0d12af
commit 20a6412247

View file

@ -15,6 +15,10 @@ public interface IQMakeProjectInfoListener {
/**
* Notifies that a QMake information provided by IQMakeProjectInfo might have changed.
* A new QMake information can be read via IQMakeProjectInfo.getQMakeInfo() method.
*
* Note that this method might be called even after the listener is removed from
* IQMakeProjectInfo. To prevent this, your implementation should maintain a flag
* representing whether qmakeInfoChanged() notifications should be processed or not.
*/
void qmakeInfoChanged();