How to describe array elements with UML2.0?
- From: "Allen" <chenal@xxxxxxxxxxx>
- Date: 21 Nov 2006 19:59:03 -0800
For example
class Foo
{
public:
int a[3];
};
I write as following
+a : int[3]
But the generated code is much different.
class Foo
{
public:
Vector<int> a;
};
Please help me how to describe it.
.
- Follow-Ups:
- Re: How to describe array elements with UML2.0?
- From: H. S. Lahman
- Re: How to describe array elements with UML2.0?
- Prev by Date: Re: Orthogonal requirements
- Next by Date: Re: Command pattern: Interaction allowed?
- Previous by thread: Estimating volumetric requirements from use cases???
- Next by thread: Re: How to describe array elements with UML2.0?
- Index(es):