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 82872 - RE Operation: Two Lifelines are crteated for one object from operation
Summary: RE Operation: Two Lifelines are crteated for one object from operation
Status: NEW
Alias: None
Product: uml
Classification: Unclassified
Component: Reverse Engineering (show other bugs)
Version: 5.x
Hardware: All All
: P4 blocker (vote)
Assignee: issues@uml
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-08-17 10:01 UTC by bugbridge
Modified: 2009-05-25 21:06 UTC (History)
0 users

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-08-17 10:01:15 UTC
Original submitter: mikk

Description:
Steps to reproduce:
 - create class ClassA
 - create class ClassB
 - add method doThis to class ClassA
 - add method doThat to class ClassB
 - add the following code to the doThat method:
new ClassA().doThis();
 - CDFS from doThat operation
The SQD diagram will be created with two ClassA lifelines (for instance being
created and an instance being called the doThis method) which is incorrect: the
same ClassA instance is being first created and called then.
In case you rewrite the code as
ClassA a = new ClassA();
a.doThis()
the diagram would be created correctly.
Comment 1 Peter Lam 2007-03-20 23:27:10 UTC
low use case not currently impacting our installed user base.
Comment 2 Kris Richards 2007-06-27 21:55:56 UTC
changing to P4. This is incorrect functionality, but is minor.