1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
<?xml version="1.0" encoding="UTF-8"?>
<merge:options
indent=" "
braceStyle="matching"
xmlns:merge="http://www.eclipse.org/org/eclipse/emf/codegen/jmerge/Options">
<merge:dictionaryPattern
name="remove"
select="Member/getComment"
match="\s*@\s*(rem)ove\s*\n"/>
<merge:dictionaryPattern
name="comment"
select="Member/getComment"
match="\s*@\s*(com)ment\s*\n"/>
<merge:dictionaryPattern
name="rename"
select="Member/getComment"
match="\s*@\s*(ren)ame\s*\n"/>
<merge:sweep markup="^rem$" select="Node"/>
<merge:sweep markup="^com$" select="Node" action="comment"/>
<merge:sweep markup="^ren$" select="Node" action="rename" newName="{0}_Deleted"/>
</merge:options>
|