The object constraint language (OCL) can be used to define invariants, pre- and postconditions for UML model elements. It allows a user to specify constraints on models, which can not be specified by the graphical notation of the UML. OCL itself is a side-effect free, typed language based on set ...
2
votes
1answer
226 views
Translate SQL to OCL?
I have a piece of SQL that I want to translate to OCL. I'm not good at SQL so I want to increase maintainability by this. We are using Interbase 2009, Delphi 2007 with Bold and modeldriven ...
2
votes
1answer
267 views
Can UML with OCL be used for formal specifications?
I am asking because UML is used for informal specifications and has some ambiguities in its semantics. However OCL can be used to specify pre/post conditions and invariants and other constraints quite ...
1
vote
3answers
269 views
Using OCL and UML with Design Patterns
Has anyone tried creating UML profiles for design patterns with stereotypes and OCL constraints? I'm trying to create one for the Singleton pattern but not sure how and where to start...
1
vote
3answers
239 views
Has anyone used UML with OCL? Do programmers use it or only analysts who don't code?
I am trying to wrap my head around why we first approach the problem of design and decide upon a visual method (UML), instead of starting with formal specifications that happen to also be executable ...
0
votes
2answers
21 views
Reverse an OrderedSet in an Eclipse Modeling Framework Model via OCL
I have a UML model (which is actually irrelevant as it could be any MOF model) with an ordered set I need to access from the last to the first element. I thus need to reverse it through OCL. I have ...
0
votes
0answers
25 views
ATL transformation: Reference previous object in sequence
Using ATL and OCL,
how can I transform a Sequence of points to a Sequence of lines?
(0,0) (0,0,2,3)
(2,3) ==> (2,3,3,2)
(3,2) ==> (3,2,4,7)
(4,7) ...
...
0
votes
0answers
19 views
Attribute Check in ATL
Doing Model-to-Model Transformations in ATL, How do I check if an attribute is of a certain kind, e.g String or multiValued? Because I need to decide what type of panel to use in the Java-Swing GUI as ...
0
votes
1answer
65 views
OCL to ECORE transformation
I am trying to find a parser for OCL that can generate an ECore model File so that I can use model to model methods in order to transform the OCL statements into other language models, e.g OCL to ...
0
votes
0answers
32 views
tlb\olb function implementations
I have a tlb / olb file how can I get the path of the dll / ocx file ... where the functions of the tlb are implemented in.
for example if I have the activeds.tlb how can I get from the tlb file that ...
0
votes
0answers
72 views
Operational QVT-Transformation from x to ecore, how to set EString for an Attribute?
I am trying to create a Transformation for an X2EAttribute.
Looks like the following
mapping Attribute::MyAttribute2EAttribute() : EAttribute {
result.eType := self.type.MyAttribute2ETypedElement();
...
0
votes
1answer
141 views
OCL - iterate for each item
I have a class A with a collection of other classes (B).
How do I represent in OCL that for each class (B) in the collection there's a constraint on a field ?
I thought something like:
...
0
votes
1answer
426 views
OCL constraint on a UML profile in Rational Software Architect 8
I'm new to Rational Software Architect 8 and OCL. I defined a profile that consists of two stereotypes, one applied to a class and another one applied to an association. See the figure for more ...