Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7e6c327c3aa51481e14f6a5fe14bffe410d8dbff (plain) (blame)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
[comment encoding = UTF-8 /]
[module diffElement('http://www.eclipse.org/emf/compare/diff/1.1')/]

[import attributeChange/]
[import referenceChange/]
[import diffGroup/]
[import modelElementChange/]
[import conflictingDiffElement/]
[import resourceDiff/]

[template public processDiffElement(el : DiffGroup, leftRoot: String, rightRoot: String)]
[el.processDiffGroup('', leftRoot, rightRoot)/]
[/template]

[template public processDiffElement(el : AttributeChange, leftRoot: String, rightRoot: String)]
[el.genAttributeChange()/]
[/template]

[template public processDiffElement(el : ReferenceChange, leftRoot: String, rightRoot: String)]
[el.genReferenceChange()/]
[/template]

[template public processDiffElement(el : ConflictingDiffElement, leftRoot: String, rightRoot: String)]
[el.genConflictingDiffElement('', leftRoot, rightRoot)/]
[/template]

[template public processDiffElement(el : ModelElementChange, leftRoot: String, rightRoot: String)]
[el.genModelElementChange('', leftRoot, rightRoot)/]
[/template]

[template public processDiffElement(el : ResourceDiff, leftRoot: String, rightRoot: String)]
[el.genResourceDiff('', leftRoot, rightRoot)/]
[/template]

[template public processDiffElement(el : DiffElement, leftRoot: String, rightRoot: String)]
[el.kind/] Unknown diff
[/template]

Back to the top