This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 21779 - Settings root node .findChild() method should be blocking
Summary: Settings root node .findChild() method should be blocking
Status: VERIFIED WORKSFORME
Alias: None
Product: platform
Classification: Unclassified
Component: Nodes (show other bugs)
Version: 3.x
Hardware: PC All
: P3 blocker (vote)
Assignee: Petr Hrebejk
URL:
Keywords: T9Y
Depends on:
Blocks:
 
Reported: 2002-03-21 15:51 UTC by Adam Sotona
Modified: 2008-12-22 20:48 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Adam Sotona 2002-03-21 15:51:55 UTC
Settings root node method findChild() should be blocking till all children
available.
This bahaviour should be common for all nodes in IDE.
Non-blocking methods in combination with lazy IDE initialization makes IDE API
testing problematic.
Comment 1 Marek Grummich 2002-07-22 08:31:23 UTC
Target milestone was changed from '3.4' to TBD.
Comment 2 Marek Grummich 2002-07-22 08:36:56 UTC
Target milestone was changed from '3.4' to TBD.
Comment 3 Marian Mirilovic 2002-07-23 14:21:27 UTC
reasssigne to owner of openide/nodes
Comment 4 Petr Hrebejk 2002-07-26 12:06:07 UTC
If this is an enhancement because of testability then there is a 
workaround. Call getChildren().getNodes( true ); which will
block untill all nodes are available and then call findChild()
Comment 5 Adam Sotona 2003-07-08 14:32:48 UTC
verified