> I'm trying to import XMI 1.2/ UML 1.4 from Visual Paradigm ... I'm using Argo > Error creating literal 'pk_final'. > Probably invalid literal name for enumeration PseudostateKind > I tried to find 'pk_final' with a text search in the XMI file, but it's not there.
Try looking for just "final" or look for the PseudostateKinds. Are you sure this is a UML 1.4 file? The valid kinds for this enumeration are choice, deepHistory, fork, initial, join, junction, and shallowHistory, so it doesn't sound like you've got a valid UML 1.4 file. To preserve the semantics you may have to do some non-trivial editing to convert from a Pseudostate with kind="final" to a FinalState which is likely what's intended, but you could try just changing the metaclass name from "Pseudostate" to "FinalState" and deleting the "kind" attribute. That might be enough to sneak it through. Tom --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
