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 - RE Operation: "Reverse Engineer Operation" creates extra lifeline in case like "new SOME_CLASS().SOME_METHOD()"
Summary: RE Operation: "Reverse Engineer Operation" creates extra lifeline in case lik...
Status: NEW
Alias: None
Product: uml
Classification: Unclassified
Component: Reverse Engineering (show other bugs)
Version: 5.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@uml
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-06-19 23:41 UTC by bugbridge
Modified: 2009-05-25 21:06 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

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