Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.
JET FAQ How do I use JMerge to manage user specific code?
Question
The Eclipse Modeling Framework (EMF) includes a facility called JMerge for merging generated Java source into existing user edited Java classes. How do I make use of JMerge in JET?
Answer
Using JMerge in JET templates, it is pretty straight forward. You do the following:
- Place a <java:merge/> tag somewhere in the template generating a java class
- In the template, any Java element (class, method, field, ...) that you want to be updated by JMerge, add a @generated tag in the element's Java doc.
- Invoke the template from a <ws:file> or <java:class> tag.
The <java:merge> tag has an effect if the file being written has a .java or .properties extension. See JET FAQ How does JMerge work?.
See Also
Back to the M2T-JET-FAQ