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

Summary: Documentation bug in toolchain collection description
Product: usersguide Reporter: sevstar
Component: CNDAssignee: smorgan <smorgan>
Status: NEW ---    
Severity: normal    
Priority: P3    
Version: 7.4   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:

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.