The stereotype tag has no wiki summary.
0
votes
1answer
40 views
show stereotype application in eclipse uml, after closing diagram
How can I show stereotypes inline again?
When I create an uml model in eclipse, I can apply stereotypes, no problem:
But when I close this diagram and reopen it, I get this:
I understand WHY ...
1
vote
1answer
100 views
What's a stereotype in UML?
I'm using Enterprise Architect to make a UML class diagram (and in the end generate PHP5 code with it). I can add attributes to a class. For each attribute I can select a stereotype: DomainCodedValue, ...
-1
votes
1answer
175 views
How are Boundary, Entity and Control classes defined?
I'm referencing a book by bennet, s et al (2002). Object-orientated systems analysis and design 2nd ed. McgraawHill:Maidenhead.
In the book when describing requirements analysis Bennet refers to ...
0
votes
1answer
78 views
OCL constraint UML Profile Rational Software Architect
I have a UML Profile that I need to add a constraint to my stereotype of ModeBehaviour which is an extension of StateMachine.
Constraint: Owned States must be stereotyped as Mode, and Owned ...
0
votes
1answer
179 views
UML Stereotypes applied to Class Inheritance design pattern
While using Papyrus (+Eclipse), I faced an issue that I initially considered as an inconsistency. But after wondering about it, I started to think that I may have a "bug" in my basic concepts of UML ...
1
vote
1answer
80 views
Spring stereotype doesn't appear to work (bean can't be found)
I have an XML configuration as follows:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
...
0
votes
3answers
2k views
How to create and apply a UML2 stereo-type using EMF in a standalone app?
I have written the sample application below to create an EJB stereotype an apply it to the TimeEntry class:
import java.io.File;
import org.eclipse.emf.common.util.URI;
import ...
3
votes
1answer
548 views
What's the difference between declaring a controller with the Spring Controller stereotype versus as a subclass of the AbstractController?
What's the difference between declaring the TestController with the Spring Controller stereotype like this:
import org.springframework.stereotype.Controller;
//...
@Controller
...
0
votes
1answer
318 views
Should I create multiple services (using the Spring `@Service` stereotype) to do database lookups for different controllers?
I'm not sure where to do database lookups for Spring controllers.
It seems to make sense to use the Spring @Service stereotype and create multiple "services" to provide lookup support to controllers ...
10
votes
3answers
6k views
How do you use stereotype annotations in Spring 2.5.x?
When moving to Spring 2.5.x I found that it adds more stereotype annotations (on top of @Repository from 2.0): @Component, @Service and @Controller. How do you use them? Do you rely on implicit Spring ...
1
vote
1answer
103 views
How to get a IStereotype reference in a T4 Template?
Is there a way to get a reference to Microsoft.VisualStudio.Uml.Profiles.IStereotype interface in a t4 template? I mean IStereotype that stores the definition of the UML stereotype, and not ...
11
votes
3answers
4k views
What's the difference between a stereotype and a class inheritance in UML?
I'm confused about the difference between something being a "stereotype" and being a "superclass" in UML.
Let's say I want to create a diagram involving a "WidgetMaker." WidgetMaker is clearly an ...