Possible Duplicate:
What’s the difference between a stereotype and a class inheritance in UML?
What does "Stereotype" mean? Is it a concept of OOP?
|
|
What does "Stereotype" mean? Is it a concept of OOP?
|
||||||||||
|
closed as exact duplicate by 01, Blixt, Sinan Ünür, marc_s, SilentGhost Oct 24 at 13:41 |
|
|
Stereotypes are a construct in UML used to extend the notation. You write a stereotype by surrounding something like a type name with guillemets (i.e. One common example to use stereotypes in UML is to indicate if a class in the diagram is an interface (as the construct in Java and C#) by writing the following above the class name: The stereotypes are a way to indicate some kind of common functionality or intent in UML that can't be expressed with UML alone, which is kinda "meta". Another way to look at it is that you can use them to make models less verbose. |
|||
|
|
|
|
it is more related to UML see this : Stereotype UML |
||||||||||||||||||
|
|
|
A stereotype is an aid to designing objects in OOP. When designing a system you want to identify what the roles and responsibilities of objects will be so that you can ensure good cohesion and SRP (single responsibility principle). Stereotypes are basically a list of generic roles/responsibilities that objects can have so that you can more easily identify the design you want/need. There's a decent overview here: If you're doing TDD you'll probably be doing the design in bits as you go, but using stereotypes will help identify collaborators as you go. The UML stereotypes are to do with extending the UML vocabulary and so I'm guessing that wasn't what you were asking about. |
||
|
|