vote up 0 vote down star

I want to model c# class attributes and variable attributes (not UML attributes) in UML and am not sure how to do it.

[AttributeForTheClass]
class SomeClass
{
    [AttributeForTheField]
    int SomeField;

    [AttributeForTheMethod]
    int SomeMethod(
    	[AttributeForTheParameter]int someParam)
    {
    	...
    }
}

How do you model:

[AttributeForTheClass] and [AttributeForTheField] and [AttributeForTheMethod]

Currently we use Sparx Enterprise Architect.

I know that c# attributes are a c# language feature but I am not sure they are even defined in UML.

Anyone have a solution?

flag

55% accept rate
Is this still an open question for you? If you could add some details I think I could get this question answered. – Ted Johnson May 22 at 17:01

2 Answers

vote up 0 vote down

EA imports attribtues as tagged values with the name "Attribute", and the text of the attributes, concatenated, as the value:

[WebService(Namespace = "http://dataservice/")];[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)];[System.ComponentModel.ToolboxItem(false)]

link|flag
vote up 0 vote down

What happens when you reverse engineer some C# code which has attributes? Do you get stereotypes or tagged values?

From a modelling view, they should be stereotypes and any parameters of the attributes should be tagged values, but it's easier to go with what the tool supports if it can.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.