How to show namespace in UML?

2019-04-07 02:31发布

问题:

How to show that certain types are in a specific namespace? Accordingly to UML 2.

回答1:

You can create the package and include those items in the package. Note that UML2 has the notion of package, that is also a namespace (and gets translated as such into programming languages).



回答2:

I'd say that the package construct is close enough to the idea of namespace. Use that.



回答3:

As far as I know, there is no specific "namespace" notation in UML.

Just use a package around any components that belong in a specific namespace (and use the namespace as the package name).



回答4:

In UML we use package with <> stereotype for modeling namespace. See UML v.2.5. 7.4 Namespaces for details.



标签: uml