UML in Moose

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
3 messages Options
Reply | Threaded
Open this post in threaded view
|

UML in Moose

Natalia Tymchuk
Hi.
I want to build a UML class diagram in moose. Can anybody tell me how to do it?
Thanks,

Best regards,
Natalia
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: UML in Moose

akevalion
CONTENTS DELETED
The author has deleted this message.
Reply | Threaded
Open this post in threaded view
|

Re: UML in Moose

Natalia Tymchuk
Thanks, Milton.

On 20 Jun 2015, at 19:28, milton mamani <[hidden email]> wrote:

Hi Natalia, try to use RTUMLClassBuilder 

| b |
b := RTUMLClassBuilder new.
b methodShape label
if: [ :method | method selector beginsWith: 'init' ] color: Color green;
if: [ :method | method selector beginsWith: 'with' ] color: Color red.
b attributeShape label
if: [ :attribute | attribute beginsWith: 'a' ] color: Color blue.
b addObjects: RTShape withAllSubclasses.
b treeLayout.

b view setDefaultMenu.
b build.
^ b view

Cheers,
Milton


2015-06-20 12:27 GMT-04:00 Natalia Tymchuk <[hidden email]>:
Hi.
I want to build a UML class diagram in moose. Can anybody tell me how to do it?
Thanks,

Best regards,
Natalia
_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev