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 96588

Summary: Implement all abstract methods with delegate to another object
Product: java Reporter: tprochazka <tprochazka>
Component: HintsAssignee: Svata Dedic <sdedic>
Status: NEW ---    
Severity: blocker CC: markiewb
Priority: P3    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: ENHANCEMENT Exception Reporter:

Description tprochazka 2007-02-26 14:58:40 UTC
Netbeas 6M7 has new generator for delegate methods, what about use it for hint 
in this situations:

public class Example implements org.jdesktop.swingx.event.MessageSource {

    private MessageSourceSupport messageSupport;
    
    public Example() {
         messageSupport = new MessageSourceSupport(this);
    }
}


When I use alt+enter NB suggest me to implement all abstract methods.
What about add here also item which use Delegate generator if Netbeans found 
some object which has necessary methods. 

I think, that this is useful function, which doesn't have any other Editor.