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 40022 - FilterNode does not delegate getValue()
Summary: FilterNode does not delegate getValue()
Status: VERIFIED DUPLICATE of bug 31006
Alias: None
Product: platform
Classification: Unclassified
Component: Nodes (show other bugs)
Version: 3.x
Hardware: All All
: P3 blocker (vote)
Assignee: Petr Nejedly
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-02-12 14:40 UTC by _ tboudreau
Modified: 2008-12-22 15:44 UTC (History)
0 users

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description _ tboudreau 2004-02-12 14:40:14 UTC
With 3.6, docs requires that nodes provide separate help id's for 
themselves and for their property sheet.  This is accomplished 
by calling someNode.getValue("propertiesHelpID").

Is there any particular reason this can't be delegated too?  
Something like:

public Object getValue (String key) {
   Object result = super.getValue(key);
   if (result == null) {
       return original.getValue(key);
   }
}

?
Comment 1 _ tboudreau 2004-02-12 14:41:45 UTC
See issue 39870 for case in point - up to its owner to set whether this issue blocks it or 
not.
Comment 2 Petr Nejedly 2004-02-12 15:19:08 UTC
I know about the problem an I'm solving it.
It was API change and required API review process (tracked as issue
39583).


*** This issue has been marked as a duplicate of 31006 ***
Comment 3 Marian Mirilovic 2004-02-19 08:22:13 UTC
verified duplicate