Bug 335364 - Associations between classes not really deleted from *.xmi file, and used for code generation.
Summary: Associations between classes not really deleted from *.xmi file, and used for...
Status: CONFIRMED
Alias: None
Product: umbrello
Classification: Applications
Component: general (show other bugs)
Version: 2.12.5
Platform: Fedora RPMs Linux
: NOR grave
Target Milestone: ---
Assignee: Umbrello Development Group
URL:
Keywords:
: 425295 (view as bug list)
Depends on:
Blocks:
 
Reported: 2014-05-26 12:07 UTC by Sergey
Modified: 2020-08-13 14:22 UTC (History)
3 users (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments
bug reporduce example. (9.29 KB, text/x-xmi)
2014-05-26 12:07 UTC, Sergey
Details
results of code generation (622 bytes, application/octet-stream)
2014-05-26 12:10 UTC, Sergey
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Sergey 2014-05-26 12:07:32 UTC
Created attachment 86826 [details]
bug reporduce example.

steps to reproduce:

1. create class daigram
2. create class "super"
3. crate class "derived"
4. make generalization assotiation (Implements) between "super" and derived.
5. delete association.
6. generate all code (C++)

result:
in the "derived.h":  class derived_class : public superclass 

if repeat steps 4, 5 few times:
in the "derived.h":  class derived_class : public superclass, public superclass // two assotiations
Comment 1 Sergey 2014-05-26 12:10:23 UTC
Created attachment 86827 [details]
results of code generation
Comment 2 Ralf Habacker 2014-05-26 13:26:44 UTC
(In reply to comment #0)
> Created attachment 86826 [details]
> bug reporduce example.
> 
> steps to reproduce:
> 
> 1. create class daigram
> 2. create class "super"
> 3. crate class "derived"
> 4. make generalization assotiation (Implements) between "super" and derived.
> 5. delete association.
> 6. generate all code (C++)
> 
> result:
> in the "derived.h":  class derived_class : public superclass 
> 
> if repeat steps 4, 5 few times:
> in the "derived.h":  class derived_class : public superclass, public
> superclass // two assotiations

The reason for this is that the related UMLAssociation has not been removed from the document. In AssociationWidget::cleanup() I found the following comment: 
     ....
     if (m_umlObject && m_umlObject->baseType() == UMLObject::ot_Association) {
        /*
           We do not remove the UMLAssociation from the document.
           Why? - Well, for example we might be in the middle of
           a cut/paste. If the UMLAssociation is removed by the cut
           then upon pasteing we have a problem.
           This is not quite clean yet - there should be a way to
           explicitly delete a UMLAssociation.  The Right Thing would
           be to have a ListView representation for UMLAssociation.
        `
                IF we are cut n pasting, why are we handling this association as a pointer?
                We should be using the XMI representation for a cut and paste. This
                allows us to be clean here, AND a choice of recreating the object
                w/ same id IF its a "cut", or a new object if its a "copy" operation
                (in which case we wouldnt be here, in cleanup()).
         */
        setUMLAssociation(0);
    }
Comment 3 Robert Hairgrove 2020-08-13 14:22:12 UTC
*** Bug 425295 has been marked as a duplicate of this bug. ***