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 244072 - Documentation bug in toolchain collection description
Summary: Documentation bug in toolchain collection description
Status: NEW
Alias: None
Product: usersguide
Classification: Unclassified
Component: CND (show other bugs)
Version: 7.4
Hardware: All All
: P3 normal (vote)
Assignee: smorgan
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-04-25 12:17 UTC by sevstar
Modified: 2014-04-25 12:40 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 sevstar 2014-04-25 12:17:27 UTC
https://netbeans.org/kb/docs/cnd/toolchain.html

Chapter "Creating a Custom Compiler Error Handler"

Existing:
@org.openide.util.lookup.ServiceProvider(service = org.netbeans.modules.cnd.spi.toolchain.CompilerProvider.class)
      public class CustomCompilerProvider extends ErrorParserProvider {

Should be:
@org.openide.util.lookup.ServiceProvider(service = org.netbeans.modules.cnd.spi.toolchain.ErrorParserProvider.class)
      public class CustomCompilerProvider extends ErrorParserProvider {

Replace CompilerProvider to ErrorParserProvider.