tags:

views:

134

answers:

0

Hi,

I'm using StarUML to generate class diagrams for C# classes. By referring to the following thread, i got to know how to add C# properties using StarUML. But by following the steps mentioned in that thread, I was able to generate the properties, but not the get/set methods for the properties: http://stackoverflow.com/questions/1667739/star-uml-how-to-add-get-set-properties

For example: I'm able to generate the following class using StarUML,

public class Document { private string m_id ; public string ID { } }

But i need something like the following:

public class Document { private string m_id ; public string ID { get { return m_id; } set { m_id = value; } } }

How can i generate such a code using StarUML?