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.
Summary: | SPI to call org.netbeans.api.javahelp.Help.showHelp from NbPresenter | ||
---|---|---|---|
Product: | platform | Reporter: | Jesse Glick <jglick> |
Component: | Help System | Assignee: | Jesse Glick <jglick> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | apireviews, jhavlin, tpavek |
Priority: | P3 | Keywords: | API, API_REVIEW_FAST |
Version: | 7.1 | ||
Hardware: | All | ||
OS: | All | ||
Issue Type: | ENHANCEMENT | Exception Reporter: | |
Attachments: | Proposed patch |
Description
Jesse Glick
2011-12-06 13:02:57 UTC
Consider adding interface into existing class HelpCtx { public static interface Presenter { public void showHelp(HelpCtx help); } } that would be used from all places that need to display a help. Created attachment 113877 [details]
Proposed patch
Please review. Nice. It's amazing how many hacks and unneeded dependencies on JavaHelp can be eliminated by such a simple change. Minor: Seems the patch is missing openide.util spec. version updated in: core.windows/nbproject/project.xml (In reply to comment #4) > Seems the patch is missing openide.util spec. version updated in: > core.windows/nbproject/project.xml Good catch, will fix. core-main #996035c0ad46 Integrated into 'main-golden' Changeset: http://hg.netbeans.org/main-golden/rev/996035c0ad46 User: Jesse Glick <jglick@netbeans.org> Log: #205992: SPI to show a HelpCtx. |