I'm a beginner with Atlas Transformation Language and have already made some steps with transforming models based on severeal meta-models. Now I want to transform a specified model based on metamodel1 to a uml-model based on the uml-metamodel. The problem I have is that I want get a xmi-file which I could read with my uml-tool (it's Magic Draw). Where can I get a uml-metamodel which I could use in ATL to produce machine readable xmi-files. All my current approaches weren't successful.
How to get tool-readable XMI with Atlas Transformation Language
461 Views Asked by martin At
1
There are 1 best solutions below
Related Questions in UML
- UML design for a nodeJS web application
- Laravel MVC application structure on UML class diagram
- Database tables for tennis court booking system
- Interfaces in UML component diagram
- Is this correct UML Sequence diagram?
- Easiest way to get Class UML from java(android) files or project w/o eclipse. Reverse engineer
- What kind of pattern design would apply?
- How to define composition(boss, subordinate relationship)
- Using Aggregation in Inheritance
- Tools for generate sequence diagram(UML) from PHP class(files)
- What underlying difference makes Node Instances appear different?
- Representing LinkedLists in UML diagrams?
- Hashmap in UML diagram?
- class diagram for changes without new class/method?
- Sorting a collection of numbers
Related Questions in TRANSFORMATION
- How can I extract the bounds of a bitmap in a canvas from the values in the transformation matrix?
- Rotating a Cube using Quaternions in PyOpenGL
- CTM transforms vs Affine Transforms in iOS (for translate, rotate, scale)
- How to XSLT transform XML nested attribute elements and concatenate name
- Rotation of object with point on object
- Transforming irregular data into usable format in R
- How can I transform XML to HTML using XSL with Java Transformer class
- XQuery XML insert
- QGraphicsItem setShear ? (applicable for single or multiple items)
- Matrix Transformation in R - from aggregate output to outer-like matrix
- Format of R's lm() Formula with a Transformation
- Random String generation from a given string, and inverse transform
- Powershell Invoke-Command with PSCredential Cannot process argument transformation on parameter 'Credential'
- Android Picasso transformation not applied on each view show
- How to change "element.style" on icon after it is transformed in css?
Related Questions in M2M
- Django, in many to many relationship within the self class, how do I reference each other in terms of ORM?
- Access date_subscribed from a many to many field on a for loop template Django
- MPS run Model2Model transformation and TextGen from action
- Check if User is in Many2Many field
- django views - accessing a m2m field in a generic view
- How to update a specific manytomany field in django
- django, contenttype and m2m generic relations
- Django model save method, updating m2m does not work
- FireBase pushing notification to android using raw TCPIP packets only
- How to get tool-readable XMI with Atlas Transformation Language
- Display m2m field defined via 'through' in admin
- ValueError: Cannot assign value: must be an instance
- How to get the sum of numeric column in Ent
- how to reverse query set for m2m relation in Django and check if object exists
- 'ManyToManyDescriptor' object is not callable while copying M2M relation
Related Questions in XMI
- Logical Data Model from XMI file
- Information XML convert to XMI
- Java programming with uml
- Load EMF model instance from XMI file
- How To Make XMI file (or any standard code to make XMI file?)
- UML Model and Diagram definition, where? – XMI has them, Standards not?
- How to get tool-readable XMI with Atlas Transformation Language
- How to read an xmi file from rails?
- Generate graphical representation of an XMI file
- Using UML2 to parse a XMI file, how to handle stereotypes
- Java DOM Parser : XMI - Inline Tag?
- PhpStorm, UML diagrams and xmi-files
- Documentation for python XMIparser API not found
- Eclipse 3.x key bindings are removed when migrated to e4 (Eclipse Luna ) series
- How to make this CardView with a circle containing a letter
Related Questions in METAMODEL
- Eclipse (JBoss Developer Studio) not automatically building JPA metamodel classes
- Maven generated static metamodels in Hibernate 5.2 not recognized by DAO classes
- What is Metamodel API used for
- Accessing @MappedSuperclass' properties in Criteria Query using metamodel classes
- understand JPA declared attributes of ManagedType
- How to create a new meta-formalism?
- Metamodel API and criteria API
- JPA: user-defined type is a BasicType?
- JPA - Static metamodel and reserved keywords
- Tool support for MOF (Meta Object Facility)
- How to get Class Model name from ManyToManyField in Django
- JPA Eclipselink Subquery in where clause with between, CriteriaBuilder and metamodel
- JPA Criteria API: LEFT JOIN for optional relationships
- DynamicData - How can I show the child count in the Children.ascx.cs FieldTemplate?
- How do I reference the -s flag for javac in an ant script?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The problem here is not ATL. Whether the XMI file you get is readable by MagicDraw depends on the UML metamodel you use as a target for the transformation.
An ATL transformation generates models, how these models are stored as XMI files does not depend on ATL but on the metamodel of the target model.
You should first check whether MagicDraw can read UML models created with any of the available Eclipse UML tools and if so, then you can use that metamodel when preparing your transformation