Index: apichanges.xml =================================================================== RCS file: /cvs/openide/api/doc/changes/apichanges.xml,v retrieving revision 1.228 diff -u -r1.228 apichanges.xml --- apichanges.xml 9 Nov 2004 21:00:51 -0000 1.228 +++ apichanges.xml 16 Nov 2004 14:56:16 -0000 @@ -114,6 +114,31 @@ + + + TopComponent can request attention + + + + + +

TopComponent.requestAttention(boolean) and TopComponent.cancelRequestAttention + added to allow components to signal that they require user's attention or the attention is no longer required. + It's up to the current TopComponent container to decide how to attract user's attention. + If the user activates the attention-requiring component, the container assumes the goal was achieved and the action is cancelled. + The methods are thread-safe. +

+

+ For those implementing WindowManager class, there is an incompatible change where + abstract methods topComponentCancelRequestAttention(TopComponent) and + topComponentRequestAttention(TopComponent) were added. +

+
+ + + +
+ New method task.waitFinished(timeout) added