UML 2 Profiles Package: How to extend Operation? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T23:47:23Z http://stackoverflow.com/feeds/question/568973 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/568973/uml-2-profiles-package-how-to-extend-operation 0 UML 2 Profiles Package: How to extend Operation? UmlNube 2009-02-20T10:02:48Z 2009-04-02T11:10:18Z <p>Hi, guys!</p> <p>I'm in a big trouble with uml profile implementation. The problem is I can't get how can I extend uml Operation class from Infrastructure::Core::Constructs using Profile?</p> <p>The Extension association from Profiles package allow metaclass only to be of type Core::Constructs::Class according to uml metamodel.</p> <p>Is Operation a metaclass? If it is how can I put it as a Core::Consructs::Class? As far as I see non of the uml metamodel Operation does specialize or implement Core::Constructs::Class.</p> <p>Please help me.</p> <p>I'm trying to make my uml profile implementation in C# using third party uml 2.* metamodel implementation in C#.</p> http://stackoverflow.com/questions/568973/uml-2-profiles-package-how-to-extend-operation/680148#680148 0 Answer by Ted Johnson for UML 2 Profiles Package: How to extend Operation? Ted Johnson 2009-03-25T03:41:10Z 2009-03-25T03:41:10Z <p>Some tools might not support operation extension, but if it does here is how. If you not talking about simple stereotype extension of the model, such as trying to create a data type to use with operations please clarify your question. The Stereotype just extends the Metaclass operation and then you use the stereotype in the model. These examples are from IBM RSM and it works well. </p> <p><strong>Profile:</strong></p> <p><img src="http://lh6.ggpht.com/%5FWOVuHMLDMuw/Scmm71lVM-I/AAAAAAAAABI/HI0zPmyWZLs/operation-extension-example.jpg" alt="Profile Answer" /></p> <p><strong>Applying:</strong></p> <p><img src="http://lh6.ggpht.com/%5FWOVuHMLDMuw/Scmm8bVnPUI/AAAAAAAAABQ/BmzKYYcATNU/operation-stereotype-applied-example.jpg" alt="Applying Example" /></p> http://stackoverflow.com/questions/568973/uml-2-profiles-package-how-to-extend-operation/709288#709288 0 Answer by UmlNube for UML 2 Profiles Package: How to extend Operation? UmlNube 2009-04-02T11:10:18Z 2009-04-02T11:10:18Z <p>Already found the answer. The thing can be achieved by combining Profiles::Class and Kernel::Operation via generalization.</p>