How to show that certain types are in a specific namespace? Accordingly to UML 2.
相关问题
- System sequence diagram - Can system request input
- Does Visual Studio 2010 Professional support UML m
- Can a [GoF]-ConcreteSubject override the notify me
- How to represent enumeration classes with methods
- How to specify “one at a time” in UML?
相关文章
- Code Iris plugin on Android Studio
- Designing a sequence diagram for an auction system
- Game engine design choice [closed]
- state transition with different guard condition
- Resources for learning how to better read code
- Relationships in a UML class diagram
- How do you convert a document in UML 1.3 - XMI 1.1
- UML help C# Design Principles
I'd say that the package construct is close enough to the idea of namespace. Use that.
In UML we use package with <> stereotype for modeling namespace. See UML v.2.5. 7.4 Namespaces for details.
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).
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).