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 - A new quick fix: create constructors from superclass if there is no default constructor there
Summary: A new quick fix: create constructors from superclass if there is no default c...
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Hints (show other bugs)
Version: 6.x
Hardware: All All
: P3 blocker with 1 vote (vote)
Assignee: Svata Dedic
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-04-08 23:27 UTC by Tim Lebedkov
Modified: 2013-09-02 14:21 UTC (History)
1 user (show)

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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