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 100318

Summary: A new quick fix: create constructors from superclass if there is no default constructor there
Product: java Reporter: Tim Lebedkov <lebedkov>
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 Tim Lebedkov 2007-04-08 23:27:54 UTC
for example for the following case:

class A extends DefaultTreeModel {
}

add necessary constructor

public A(TreeNode root) {
        super(root);
    }
Comment 1 Tim Lebedkov 2007-04-08 23:28:19 UTC
feature