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 122625

Summary: TreeMaker.constructor skips call to super
Product: java Reporter: Jean-francois Denise <jfdenise>
Component: SourceAssignee: Jan Lahoda <jlahoda>
Status: RESOLVED DUPLICATE    
Severity: blocker    
Priority: P3    
Version: 6.x   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:

Description Jean-francois Denise 2007-11-23 11:28:46 UTC
I am calling this operation with a textual body.
Inside the body, first line is :

super(...);

This line is not added when the code is actually generated.
Looking at the TreeMaker implementation, it seems that this bug would occurs in any Method body generation
based on text.
Comment 1 Jean-francois Denise 2007-11-23 18:17:46 UTC
I tried creating a Block, I run into the same problem. Here is the code I use. If the Identifier is something
else than super, it works well...

 IdentifierTree toto = maker.Identifier("super");// NOI18N
 LiteralTree mxbean = maker.Literal(Boolean.TRUE);
 List<ExpressionTree> ps = new ArrayList<ExpressionTree>(1);
 ps.add(mxbean);
 MethodInvocationTree printlnInvokation =
                            maker.MethodInvocation(Collections.<ExpressionTree>emptyList(),
                            toto,
                            ps);
 ExpressionStatementTree t2 = maker.ExpressionStatement(printlnInvokation);
                
Comment 2 Jan Lahoda 2007-11-26 09:02:15 UTC
This sounds very much like issue #122377.

*** This issue has been marked as a duplicate of 122377 ***