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 63249 - Iconless node browser
Summary: Iconless node browser
Status: RESOLVED WONTFIX
Alias: None
Product: platform
Classification: Unclassified
Component: Explorer (show other bugs)
Version: 5.x
Hardware: All All
: P3 blocker (vote)
Assignee: t_h
URL:
Keywords: UI
Depends on:
Blocks:
 
Reported: 2005-08-29 14:45 UTC by _ pkuzel
Modified: 2008-12-22 11:57 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 _ pkuzel 2005-08-29 14:45:27 UTC
NodeOperations API does not support following UI features:
  - iconless tree renderer (for majority of simple browsers)
  - root node hiding

Possible client code scetch:

  NodeOperations op = NodeOperations.createNodeOperations();
  op.setRootVisible(false);  // hide root
  op.setIconsVisible(false); // hide icons
  op.setAcceptor(..);
  Node[] result op.select(rootNode, "Title");
Comment 1 _ pkuzel 2005-08-29 17:22:51 UTC
Impl javacvs/.../NodeOperation2.java

Advantage over pure JTree QuickSearch...
Comment 2 Antonin Nebuzelsky 2008-02-07 16:00:36 UTC
Reassigning to new module owner Tomas Holy.
Comment 3 t_h 2008-10-20 11:06:40 UTC
Feel free to provide patch and pass API review.