In an editor created with EMF, one can validate a model by right-clicking on any modeled element and choosing "Validate" from the context menu. I want to call this functionality programmatically. My use case is that I want to validate the model when the user attempts to open a wizard. Based on the validation outcome, the wizard will either open (validation succeeded) or the found errors will be displayed.

Does anyone know how to achieve this programmatically?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

You should be able to trigger the validation thanks to org.eclipse.emf.ecore.util.Diagnostician (call Diagnostician.INSTANCE.validate(...)). You can have a look at its javadoc here.

Regards,

Stephane Begaudeau

link|improve this answer
Hi Stephane, thanks for the quick response. I am still a little puzzled about what eObject to pass the validate method to validate the overall model? – erik13579 Dec 22 '11 at 8:19
Hi, you can give it the root(s) of your model. – sbegaudeau Dec 22 '11 at 8:50
This worked great! Thanks a lot. – erik13579 Dec 24 '11 at 11:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.