Author Topic: using the activity partition for uml profiles  (Read 3024 times)

ahab

  • EA Novice
  • *
  • Posts: 14
  • Karma: +0/-0
    • View Profile
using the activity partition for uml profiles
« on: March 09, 2012, 10:04:39 am »
Hi,

I'm trying to create a uml profile and whant to use an activity partition for defining states (like todo, doing, done). I then want to place an element (like a requirement) in the partition and then I want to change the state of the element according to the name of the partition.

Does anyone know if this is even possible? Can you point me in the right direction for learning more?

All help is appreciated.
/Andreas

Luis J. Lobo

  • EA User
  • **
  • Posts: 252
  • Karma: +0/-0
  • IT Consultant
    • View Profile
Re: using the activity partition for uml profiles
« Reply #1 on: March 23, 2012, 10:16:26 am »
See:

http://www.sparxsystems.es/New/products/ea-extension-scrum.html

This add-in provides the functionality you want, and more...

What you want will be done with something like this:

Capturing the "EA_NotifyConextItemModify" broadcast event and...


EA.Element Father = Rep.GetElementByID(theElement.ParentID);
theElement.Status = Father.Name;
theElement.Update();

...where theElement is the activity partition.
« Last Edit: March 23, 2012, 10:17:22 am by Deiser »

ahab

  • EA Novice
  • *
  • Posts: 14
  • Karma: +0/-0
    • View Profile
Re: using the activity partition for uml profiles
« Reply #2 on: March 23, 2012, 06:18:56 pm »
Thank you! The plugin looks interesting, I'll have a look at it, but I'm also trying to learn how to use EA so I'll also read up on EA_NotifyConextItemModify.