Guillaume Hillairet

Results 28 comments of Guillaume Hillairet

More likely because not all EMF features are supported in emftriple, FeatureMaps may be one that are not.

During serialization, check that an attribute is a feature map, and then handle that case, maybe like it is done there https://github.com/ghillairet/emfjson/blob/master/emfjson-jackson/src/main/java/org/emfjson/jackson/databind/ser/EObjectSerializer.java#L124

Maybe you should try with URI.createFileURI instead.

I haven't been able to reproduce this one, but I remember encountering it before. If this can be reproduce then it should be something related to the listener of document...

@tedepstein @andylowry I started experimenting with KZOP in branch https://github.com/RepreZen/KaiZen-OpenAPI-Editor/tree/task/kzop-parser-wip You can see a simplistic content assist being done in https://github.com/RepreZen/KaiZen-OpenAPI-Editor/blob/task/kzop-parser-wip/com.reprezen.swagedit.core/src/com/reprezen/swagedit/core/assist/OpenApiProposalProvider.java The call to the parser is done in `JsonDocument`...

Also related, I found this bug in KZOP https://github.com/RepreZen/KaiZen-OpenApi-Parser/issues/168 that prevents finding some elements during content assist.

The problem looks like JSON only allows UTF encodings, the special character contain in the sample projects were encoded in iso-8859-1 which causes a parsing exception to be thrown. I...

@tfesenko Can confirm too, this one works http://products.reprezen.com/swagedit/0.8.0.201710301020/. The main update site http://products.reprezen.com/swagedit/latest/ does not. @Beatinu The latest version is available on this update site http://products.reprezen.com/swagedit/0.8.0.201712062145/ and is working.

One possible solution is to give the pointer of the current type, and the pointer of the expected type, like this: ![screen shot 2017-06-09 at 16 53 02](https://user-images.githubusercontent.com/148045/26981038-444792e0-4d34-11e7-8283-2e34fce1dec9.png) Test model:...