vote up 2 vote down star

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?

flag

check: stackoverflow.com/questions/829904/… – Macarse Oct 24 at 12:37
1  
Who's it? ..... – JRL Oct 24 at 12:43
@JRL Fixed "it". – Spoike Oct 24 at 13:41
I don't think it is an exact duplicate because this question wonders if Stereotypes has something to do with OOP and the other asks the difference between stereotypes and inheritance. The only thing both have in common is confusion on what stereotypes are. – Spoike Oct 25 at 7:04

closed as exact duplicate by 01, Blixt, Sinan Ünür, marc_s, SilentGhost Oct 24 at 13:41

3 Answers

vote up 4 vote down check

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. «, » and is pronounced gee-may).

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: «interface». In terms of UML this is to indicate that the class only has pure virtual functions, in other words methods that have no implementation and has to be overrided. Interfaces are so common that it is regarded as a UML classifier since UML 2.0.

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.

link|flag
vote up 4 vote down

it is more related to UML

see this : Stereotype UML

link|flag
I agree not to refer to wikipedia, sorry about that. My answer was more to direct to UML, since I have used steriotyping only with UML. So for me it is not a OOP concept. – albert green Oct 24 at 12:54
5  
but what if the answer is already appeared directly and clearly in wikipedia? – Itay Oct 24 at 13:05
5  
Wait, since when do we have rules as to what we can and can't reference? – rein Oct 24 at 13:16
6  
Not referring to wikipedia when it provides a good reference would be stupid, and while it would be nice if everyone who asked here had already checked it, it's simply not the case. – Michael Borgwardt Oct 24 at 13:21
2  
Also, never assume anyone has actually google'd or wikipedia'd their question beforehand. Very many questions on this site would never exist, if the questioners had done that. =) – J. Steen Oct 24 at 13:44
show 1 more comment
vote up 1 vote down

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:

Object Role Stereotypes

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.

link|flag

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