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 78416

Summary: RE Operation: "Reverse Engineer Operation" creates extra lifeline in case like "new SOME_CLASS().SOME_METHOD()"
Product: uml Reporter: bugbridge <bugbridge>
Component: Reverse EngineeringAssignee: issues@uml <issues>
Status: NEW ---    
Severity: blocker CC: lvv
Priority: P3    
Version: 5.x   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter:

Description bugbridge 2006-06-19 23:41:22 UTC
Original submitter: lvv

Description:
Build Coke  Linux & Windows XP.

"Reverse Engineer Operation" creates extra lifeline for "new
SOME_CLASS().SOME_METHOD()", ie. 
it creates 2 lifelines for SOME_CLASS:

- one will be attached by constructor's create message,
- another by SOME_METHOD() message, 

while only 1 SOME_CLASS lifeline (connected by 2 messages - constructor's and
SOME_METHOD's) 
is created for code like this:

SOME_CLASS inst = new SOME_CLASS();
inst.SOME_METHOD();