You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The way to solve this is to only apply the newer namespace on this particular Profile element. This means that all the 'uml' and 'xmi' element inside here need to be a different set of Ruby classes that inherit from the old version (2013).
e.g. uml:Profile contains ownedComment, packageImport, packagedElement etc.
Right now in the round-trip task, the
<profiles>
tag is entirely missing because:The
<uml:Profile>
tag uses:xmlns:uml="http://www.omg.org/spec/UML/20161101"
xmlns:xmi="http://www.omg.org/spec/XMI/20161101"
But the rest of the document uses:
xmlns:uml="http://www.omg.org/spec/UML/20131001"
xmlns:xmi="http://www.omg.org/spec/XMI/20131001"
The way to solve this is to only apply the newer namespace on this particular Profile element. This means that all the 'uml' and 'xmi' element inside here need to be a different set of Ruby classes that inherit from the old version (2013).
e.g.
uml:Profile
containsownedComment
,packageImport
,packagedElement
etc.Potential solution:
The text was updated successfully, but these errors were encountered: