Skip to main content
summaryrefslogtreecommitdiffstats
blob: 765b9add9d59d1096faaf03ed6285e52b22cb560 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
/**
 * Copyright (c) 2012, 2014 Obeo.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     Obeo - initial API and implementation
 */
package org.eclipse.emf.compare.tests.merge.data;

import java.io.IOException;

import org.eclipse.emf.compare.tests.framework.AbstractInputData;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.emf.ecore.resource.ResourceSet;

/**
 * Provides input models to the unit tests of the matching by id.
 * 
 * @author <a href="mailto:laurent.goubet@obeo.fr">Laurent Goubet</a>
 */
@SuppressWarnings("nls")
public class IndividualDiffInputData extends AbstractInputData {
	public Resource getAttributeMonoChangeLeft() throws IOException {
		return loadFromClassLoader("fullscope/attributemonochange/left.nodes");
	}

	public Resource getAttributeMonoChangeOrigin() throws IOException {
		return loadFromClassLoader("fullscope/attributemonochange/origin.nodes");
	}

	public Resource getAttributeMonoChangeRight() throws IOException {
		return loadFromClassLoader("fullscope/attributemonochange/right.nodes");
	}

	public Resource getAttributeMonoSetLeft() throws IOException {
		return loadFromClassLoader("fullscope/attributemonoset/left.nodes");
	}

	public Resource getAttributeMonoSetOrigin() throws IOException {
		return loadFromClassLoader("fullscope/attributemonoset/origin.nodes");
	}

	public Resource getAttributeMonoSetRight() throws IOException {
		return loadFromClassLoader("fullscope/attributemonoset/right.nodes");
	}

	public Resource getAttributeMonoUnsetLeft() throws IOException {
		return loadFromClassLoader("fullscope/attributemonounset/left.nodes");
	}

	public Resource getAttributeMonoUnsetOrigin() throws IOException {
		return loadFromClassLoader("fullscope/attributemonounset/origin.nodes");
	}

	public Resource getAttributeMonoUnsetRight() throws IOException {
		return loadFromClassLoader("fullscope/attributemonounset/right.nodes");
	}

	public Resource getAttributeMultiAddLeft() throws IOException {
		return loadFromClassLoader("fullscope/attributemultiadd/left.nodes");
	}

	public Resource getAttributeMultiAddOrigin() throws IOException {
		return loadFromClassLoader("fullscope/attributemultiadd/origin.nodes");
	}

	public Resource getAttributeMultiAddRight() throws IOException {
		return loadFromClassLoader("fullscope/attributemultiadd/right.nodes");
	}

	public Resource getAttributeMultiDelLeft() throws IOException {
		return loadFromClassLoader("fullscope/attributemultidel/left.nodes");
	}

	public Resource getAttributeMultiDelOrigin() throws IOException {
		return loadFromClassLoader("fullscope/attributemultidel/origin.nodes");
	}

	public Resource getAttributeMultiDelRight() throws IOException {
		return loadFromClassLoader("fullscope/attributemultidel/right.nodes");
	}

	public Resource getAttributeMultiMoveLeft() throws IOException {
		return loadFromClassLoader("fullscope/attributemultimove/left.nodes");
	}

	public Resource getAttributeMultiMoveOrigin() throws IOException {
		return loadFromClassLoader("fullscope/attributemultimove/origin.nodes");
	}

	public Resource getAttributeMultiMoveRight() throws IOException {
		return loadFromClassLoader("fullscope/attributemultimove/right.nodes");
	}

	public Resource getReferenceMonoChangeLeft() throws IOException {
		return loadFromClassLoader("fullscope/referencemonochange/left.nodes");
	}

	public Resource getReferenceMonoChangeOrigin() throws IOException {
		return loadFromClassLoader("fullscope/referencemonochange/origin.nodes");
	}

	public Resource getReferenceMonoChangeRight() throws IOException {
		return loadFromClassLoader("fullscope/referencemonochange/right.nodes");
	}

	public Resource getReferenceMonoSetLeft() throws IOException {
		return loadFromClassLoader("fullscope/referencemonoset/left.nodes");
	}

	public Resource getReferenceMonoSetOrigin() throws IOException {
		return loadFromClassLoader("fullscope/referencemonoset/origin.nodes");
	}

	public Resource getReferenceMonoSetRight() throws IOException {
		return loadFromClassLoader("fullscope/referencemonoset/right.nodes");
	}

	public Resource getReferenceMonoUnsetLeft() throws IOException {
		return loadFromClassLoader("fullscope/referencemonounset/left.nodes");
	}

	public Resource getReferenceMonoUnsetOrigin() throws IOException {
		return loadFromClassLoader("fullscope/referencemonounset/origin.nodes");
	}

	public Resource getReferenceMonoUnsetRight() throws IOException {
		return loadFromClassLoader("fullscope/referencemonounset/right.nodes");
	}

	public Resource getReferenceMultiAddLeft() throws IOException {
		return loadFromClassLoader("fullscope/referencemultiadd/left.nodes");
	}

	public Resource getReferenceMultiAddOrigin() throws IOException {
		return loadFromClassLoader("fullscope/referencemultiadd/origin.nodes");
	}

	public Resource getReferenceMultiAddRight() throws IOException {
		return loadFromClassLoader("fullscope/referencemultiadd/right.nodes");
	}

	public Resource getReferenceMultiDelLeft() throws IOException {
		return loadFromClassLoader("fullscope/referencemultidel/left.nodes");
	}

	public Resource getReferenceMultiDelOrigin() throws IOException {
		return loadFromClassLoader("fullscope/referencemultidel/origin.nodes");
	}

	public Resource getReferenceMultiDelRight() throws IOException {
		return loadFromClassLoader("fullscope/referencemultidel/right.nodes");
	}

	public Resource getReferenceMultiMoveLeft() throws IOException {
		return loadFromClassLoader("fullscope/referencemultimove/left.nodes");
	}

	public Resource getReferenceMultiMoveOrigin() throws IOException {
		return loadFromClassLoader("fullscope/referencemultimove/origin.nodes");
	}

	public Resource getReferenceMultiMoveRight() throws IOException {
		return loadFromClassLoader("fullscope/referencemultimove/right.nodes");
	}

	public Resource getReferenceContainmentMultiMoveLeft() throws IOException {
		return loadFromClassLoader("fullscope/referencecontainmentmultimove/left.nodes");
	}

	public Resource getReferenceContainmentMultiMoveRight() throws IOException {
		return loadFromClassLoader("fullscope/referencecontainmentmultimove/right.nodes");
	}

	public Resource getReferenceMonoChangeLeftOutOfScope() throws IOException {
		return loadFromClassLoader("outofscope/referencemonochange/left.nodes");
	}

	public Resource getReferenceMonoChangeOriginOutOfScope() throws IOException {
		return loadFromClassLoader("outofscope/referencemonochange/origin.nodes");
	}

	public Resource getReferenceMonoChangeRightOutOfScope() throws IOException {
		return loadFromClassLoader("outofscope/referencemonochange/right.nodes");
	}

	public Resource getReferenceMonoSetLeftOutOfScope() throws IOException {
		return loadFromClassLoader("outofscope/referencemonoset/left.nodes");
	}

	public Resource getReferenceMonoSetOriginOutOfScope() throws IOException {
		return loadFromClassLoader("outofscope/referencemonoset/origin.nodes");
	}

	public Resource getReferenceMonoSetRightOutOfScope() throws IOException {
		return loadFromClassLoader("outofscope/referencemonoset/right.nodes");
	}

	public Resource getReferenceMonoUnsetLeftOutOfScope() throws IOException {
		return loadFromClassLoader("outofscope/referencemonounset/left.nodes");
	}

	public Resource getReferenceMonoUnsetOriginOutOfScope() throws IOException {
		return loadFromClassLoader("outofscope/referencemonounset/origin.nodes");
	}

	public Resource getReferenceMonoUnsetRightOutOfScope() throws IOException {
		return loadFromClassLoader("outofscope/referencemonounset/right.nodes");
	}

	public Resource getReferenceMultiAddLeftOutOfScope() throws IOException {
		return loadFromClassLoader("outofscope/referencemultiadd/left.nodes");
	}

	public Resource getReferenceMultiAddOriginOutOfScope() throws IOException {
		return loadFromClassLoader("outofscope/referencemultiadd/origin.nodes");
	}

	public Resource getReferenceMultiAddRightOutOfScope() throws IOException {
		return loadFromClassLoader("outofscope/referencemultiadd/right.nodes");
	}

	public Resource getReferenceMultiDelLeftOutOfScope() throws IOException {
		return loadFromClassLoader("outofscope/referencemultidel/left.nodes");
	}

	public Resource getReferenceMultiDelOriginOutOfScope() throws IOException {
		return loadFromClassLoader("outofscope/referencemultidel/origin.nodes");
	}

	public Resource getReferenceMultiDelRightOutOfScope() throws IOException {
		return loadFromClassLoader("outofscope/referencemultidel/right.nodes");
	}

	public Resource getReferenceMultiMoveLeftOutOfScope() throws IOException {
		return loadFromClassLoader("outofscope/referencemultimove/left.nodes");
	}

	public Resource getReferenceMultiMoveOriginOutOfScope() throws IOException {
		return loadFromClassLoader("outofscope/referencemultimove/origin.nodes");
	}

	public Resource getReferenceMultiMoveRightOutOfScope() throws IOException {
		return loadFromClassLoader("outofscope/referencemultimove/right.nodes");
	}

	public Resource getLeftAddRightDeleteLeftConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftadd_rightdelete/left.ecore");
	}

	public Resource getLeftAddRightDeleteOriginConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftadd_rightdelete/origin.ecore");
	}

	public Resource getLeftAddRightDeleteRightConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftadd_rightdelete/right.ecore");
	}

	public Resource getLeftDeleteRightAddLeftConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftdelete_rightadd/left.ecore");
	}

	public Resource getLeftDeleteRightAddOriginConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftdelete_rightadd/origin.ecore");
	}

	public Resource getLeftDeleteRightAddRightConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftdelete_rightadd/right.ecore");
	}

	public Resource getLeftDeleteRightSetLeftConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftdelete_rightset/left.ecore");
	}

	public Resource getLeftDeleteRightSetOriginConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftdelete_rightset/origin.ecore");
	}

	public Resource getLeftDeleteRightSetRightConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftdelete_rightset/right.ecore");
	}

	public Resource getLeftSetRightDeleteLeftConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftset_rightdelete/left.ecore");
	}

	public Resource getLeftSetRightDeleteOriginConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftset_rightdelete/origin.ecore");
	}

	public Resource getLeftSetRightDeleteRightConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftset_rightdelete/right.ecore");
	}

	public Resource getLeftSetRightUnsetLeftConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftset_rightunset/left.ecore");
	}

	public Resource getLeftSetRightUnsetOriginConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftset_rightunset/origin.ecore");
	}

	public Resource getLeftSetRightUnsetRightConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftset_rightunset/right.ecore");
	}

	public Resource getLeftUnsetRightSetLeftConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftunset_rightset/left.ecore");
	}

	public Resource getLeftUnsetRightSetOriginConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftunset_rightset/origin.ecore");
	}

	public Resource getLeftUnsetRightSetRightConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftunset_rightset/right.ecore");
	}

	public Resource getLeftDeleteRightMoveLeftConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftdelete_rightmove/left.ecore");
	}

	public Resource getLeftDeleteRightMoveOriginConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftdelete_rightmove/origin.ecore");
	}

	public Resource getLeftDeleteRightMoveRightConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftdelete_rightmove/right.ecore");
	}

	public Resource getLeftMoveRightDeleteLeftConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftmove_rightdelete/left.ecore");
	}

	public Resource getLeftMoveRightDeleteOriginConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftmove_rightdelete/origin.ecore");
	}

	public Resource getLeftMoveRightDeleteRightConflictScope() throws IOException {
		return loadFromClassLoader("conflictscope/leftmove_rightdelete/right.ecore");
	}

	public Resource getLeftPseudoConflictAddScope() throws IOException {
		return loadFromClassLoader("pseudoconflictscope/add/left.nodes");
	}

	public Resource getOriginPseudoConflictAddScope() throws IOException {
		return loadFromClassLoader("pseudoconflictscope/add/ancestor.nodes");
	}

	public Resource getRightPseudoConflictAddScope() throws IOException {
		return loadFromClassLoader("pseudoconflictscope/add/right.nodes");
	}

	public Resource getLeftPseudoConflictChangeScope() throws IOException {
		return loadFromClassLoader("pseudoconflictscope/change/left.nodes");
	}

	public Resource getOriginPseudoConflictChangeScope() throws IOException {
		return loadFromClassLoader("pseudoconflictscope/change/ancestor.nodes");
	}

	public Resource getRightPseudoConflictChangeScope() throws IOException {
		return loadFromClassLoader("pseudoconflictscope/change/right.nodes");
	}

	public Resource getLeftPseudoConflictDeleteScope() throws IOException {
		return loadFromClassLoader("pseudoconflictscope/delete/left.nodes");
	}

	public Resource getOriginPseudoConflictDeleteScope() throws IOException {
		return loadFromClassLoader("pseudoconflictscope/delete/ancestor.nodes");
	}

	public Resource getRightPseudoConflictDeleteScope() throws IOException {
		return loadFromClassLoader("pseudoconflictscope/delete/right.nodes");
	}

	public Resource getLeftPseudoConflictFullScope() throws IOException {
		return loadFromClassLoader("pseudoconflictscope/fullscope/left.nodes");
	}

	public Resource getOriginPseudoConflictFullScope() throws IOException {
		return loadFromClassLoader("pseudoconflictscope/fullscope/ancestor.nodes");
	}

	public Resource getRightPseudoConflictFullScope() throws IOException {
		return loadFromClassLoader("pseudoconflictscope/fullscope/right.nodes");
	}

	public Resource getFeatureMapContainmentLeftAddScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/add/left.nodes");
	}

	public Resource getFeatureMapContainmentRightAddScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/add/right.nodes");
	}

	public Resource getFeatureMapContainmentOriginAddScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/add/ancestor.nodes");
	}

	public Resource getFeatureMapContainmentLeftDeleteScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/delete/left.nodes");
	}

	public Resource getFeatureMapContainmentRightDeleteScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/delete/right.nodes");
	}

	public Resource getFeatureMapContainmentOriginDeleteScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/delete/ancestor.nodes");
	}

	public Resource getFeatureMapContainmentLeftKeyChangeScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/keychange/left.nodes");
	}

	public Resource getFeatureMapContainmentRightKeyChangeScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/keychange/right.nodes");
	}

	public Resource getFeatureMapContainmentOriginKeyChangeScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/keychange/ancestor.nodes");
	}

	public Resource getFeatureMapContainmentLeftMoveScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/move/left.nodes");
	}

	public Resource getFeatureMapContainmentRightMoveScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/move/right.nodes");
	}

	public Resource getFeatureMapContainmentOriginMoveScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/move/ancestor.nodes");
	}

	public Resource getFeatureMapContainmentLeftMoveOrderScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/moveorder/left.nodes");
	}

	public Resource getFeatureMapContainmentRightMoveOrderScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/moveorder/right.nodes");
	}

	public Resource getFeatureMapContainmentOriginMoveOrderScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/moveorder/ancestor.nodes");
	}

	public Resource getFeatureMapContainmentLeftMoveKeyChangeScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/movekeychange/left.nodes");
	}

	public Resource getFeatureMapContainmentRightMoveKeyChangeScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/movekeychange/right.nodes");
	}

	public Resource getFeatureMapContainmentOriginMoveKeyChangeScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/movekeychange/ancestor.nodes");
	}

	public Resource getFeatureMapNonContainmentLeftAddScope(ResourceSet resourceSet) throws IOException {
		return loadFromClassLoader("featuremapscope/noncontainment/add/left.nodes", resourceSet);
	}

	public Resource getFeatureMapNonContainmentRightAddScope(ResourceSet resourceSet) throws IOException {
		return loadFromClassLoader("featuremapscope/noncontainment/add/right.nodes", resourceSet);
	}

	public Resource getFeatureMapNonContainmentOriginAddScope(ResourceSet resourceSet) throws IOException {
		return loadFromClassLoader("featuremapscope/noncontainment/add/ancestor.nodes", resourceSet);
	}

	public Resource getFeatureMapNonContainmentLeftDeleteScope(ResourceSet resourceSet) throws IOException {
		return loadFromClassLoader("featuremapscope/noncontainment/delete/left.nodes", resourceSet);
	}

	public Resource getFeatureMapNonContainmentRightDeleteScope(ResourceSet resourceSet) throws IOException {
		return loadFromClassLoader("featuremapscope/noncontainment/delete/right.nodes", resourceSet);
	}

	public Resource getFeatureMapNonContainmentOriginDeleteScope(ResourceSet resourceSet) throws IOException {
		return loadFromClassLoader("featuremapscope/noncontainment/delete/ancestor.nodes", resourceSet);
	}

	public Resource getFeatureMapNonContainmentLeftMoveOrderScope(ResourceSet resourceSet) throws IOException {
		return loadFromClassLoader("featuremapscope/noncontainment/moveorder/left.nodes", resourceSet);
	}

	public Resource getFeatureMapNonContainmentRightMoveOrderScope(ResourceSet resourceSet)
			throws IOException {
		return loadFromClassLoader("featuremapscope/noncontainment/moveorder/right.nodes", resourceSet);
	}

	public Resource getFeatureMapNonContainmentOriginMoveOrderScope(ResourceSet resourceSet)
			throws IOException {
		return loadFromClassLoader("featuremapscope/noncontainment/moveorder/ancestor.nodes", resourceSet);
	}

	public Resource getFeatureMapContainmentLeftConflictLeftAddRightAddWithSameKeyScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/conflicts/leftadd_rightadd/left.nodes");
	}

	public Resource getFeatureMapContainmentRightConflictLeftAddRightAddWithSameKeyScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/conflicts/leftadd_rightadd/right.nodes");
	}

	public Resource getFeatureMapContainmentOriginConflictLeftAddRightAddWithSameKeyScope()
			throws IOException {
		return loadFromClassLoader("featuremapscope/containment/conflicts/leftadd_rightadd/ancestor.nodes");
	}

	public Resource getFeatureMapContainmentLeftConflictLeftAddRightAddWithDifferentKeyScope()
			throws IOException {
		return loadFromClassLoader("featuremapscope/containment/conflicts/leftadd_rightadd_2/left.nodes");
	}

	public Resource getFeatureMapContainmentRightConflictLeftAddRightAddWithDifferentKeyScope()
			throws IOException {
		return loadFromClassLoader("featuremapscope/containment/conflicts/leftadd_rightadd_2/right.nodes");
	}

	public Resource getFeatureMapContainmentOriginConflictLeftAddRightAddWithDifferentKeyScope()
			throws IOException {
		return loadFromClassLoader("featuremapscope/containment/conflicts/leftadd_rightadd_2/ancestor.nodes");
	}

	public Resource getFeatureMapContainmentLeftConflictLeftKeyChangeRightDeleteScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/conflicts/leftkeychange_rightdelete/left.nodes");
	}

	public Resource getFeatureMapContainmentRightConflictLeftKeyChangeRightDeleteScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/conflicts/leftkeychange_rightdelete/right.nodes");
	}

	public Resource getFeatureMapContainmentOriginConflictLeftKeyChangeRightDeleteScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/conflicts/leftkeychange_rightdelete/ancestor.nodes");
	}

	public Resource getFeatureMapContainmentLeftConflictLeftMoveRightMoveScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/conflicts/leftmove_rightmove/left.nodes");
	}

	public Resource getFeatureMapContainmentRightConflictLeftMoveRightMoveScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/conflicts/leftmove_rightmove/right.nodes");
	}

	public Resource getFeatureMapContainmentOriginConflictLeftMoveRightMoveScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/conflicts/leftmove_rightmove/ancestor.nodes");
	}

	public Resource getFeatureMapContainmentLeftConflictLeftMoveOrderRightMoveOrderScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/conflicts/leftmoveorder_rightmoveorder/left.nodes");
	}

	public Resource getFeatureMapContainmentRightConflictLeftMoveOrderRightMoveOrderScope()
			throws IOException {
		return loadFromClassLoader("featuremapscope/containment/conflicts/leftmoveorder_rightmoveorder/right.nodes");
	}

	public Resource getFeatureMapContainmentOriginConflictLeftMoveOrderRightMoveOrderScope()
			throws IOException {
		return loadFromClassLoader("featuremapscope/containment/conflicts/leftmoveorder_rightmoveorder/ancestor.nodes");
	}

	public Resource getFeatureMapNonContainmentLeftConflictLeftMoveOrderRightMoveOrderScope(
			ResourceSet resourceSet) throws IOException {
		return loadFromClassLoader(
				"featuremapscope/noncontainment/conflicts/leftmoveorder_rightmoveorder/left.nodes",
				resourceSet);
	}

	public Resource getFeatureMapNonContainmentRightConflictLeftMoveOrderRightMoveOrderScope(
			ResourceSet resourceSet) throws IOException {
		return loadFromClassLoader(
				"featuremapscope/noncontainment/conflicts/leftmoveorder_rightmoveorder/right.nodes",
				resourceSet);
	}

	public Resource getFeatureMapNonContainmentOriginConflictLeftMoveOrderRightMoveOrderScope(
			ResourceSet resourceSet) throws IOException {
		return loadFromClassLoader(
				"featuremapscope/noncontainment/conflicts/leftmoveorder_rightmoveorder/ancestor.nodes",
				resourceSet);
	}

	public Resource getFeatureMapContainmentLeftPseudoConflictAddScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/pseudoconflicts/add/left.nodes");
	}

	public Resource getFeatureMapContainmentRightPseudoConflictAddScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/pseudoconflicts/add/right.nodes");
	}

	public Resource getFeatureMapContainmentOriginPseudoConflictAddScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/pseudoconflicts/add/ancestor.nodes");
	}

	public Resource getFeatureMapContainmentLeftPseudoConflictDeleteScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/pseudoconflicts/delete/left.nodes");
	}

	public Resource getFeatureMapContainmentRightPseudoConflictDeleteScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/pseudoconflicts/delete/right.nodes");
	}

	public Resource getFeatureMapContainmentOriginPseudoConflictDeleteScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/pseudoconflicts/delete/ancestor.nodes");
	}

	public Resource getFeatureMapContainmentLeftPseudoConflictKeyChangeScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/pseudoconflicts/keychange/left.nodes");
	}

	public Resource getFeatureMapContainmentRightPseudoConflictKeyChangeScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/pseudoconflicts/keychange/right.nodes");
	}

	public Resource getFeatureMapContainmentOriginPseudoConflictKeyChangeScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/pseudoconflicts/keychange/ancestor.nodes");
	}

	public Resource getFeatureMapContainmentLeftPseudoConflictMoveScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/pseudoconflicts/move/left.nodes");
	}

	public Resource getFeatureMapContainmentRightPseudoConflictMoveScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/pseudoconflicts/move/right.nodes");
	}

	public Resource getFeatureMapContainmentOriginPseudoConflictMoveScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/pseudoconflicts/move/ancestor.nodes");
	}

	public Resource getFeatureMapContainmentLeftPseudoConflictMoveOrderScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/pseudoconflicts/moveorder/left.nodes");
	}

	public Resource getFeatureMapContainmentRightPseudoConflictMoveOrderScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/pseudoconflicts/moveorder/right.nodes");
	}

	public Resource getFeatureMapContainmentOriginPseudoConflictMoveOrderScope() throws IOException {
		return loadFromClassLoader("featuremapscope/containment/pseudoconflicts/moveorder/ancestor.nodes");
	}

	public Resource getFeatureMapNonContainmentLeftPseudoConflictAddScope(ResourceSet resourceSet)
			throws IOException {
		return loadFromClassLoader("featuremapscope/noncontainment/pseudoconflicts/add/left.nodes",
				resourceSet);
	}

	public Resource getFeatureMapNonContainmentRightPseudoConflictAddScope(ResourceSet resourceSet)
			throws IOException {
		return loadFromClassLoader("featuremapscope/noncontainment/pseudoconflicts/add/right.nodes",
				resourceSet);
	}

	public Resource getFeatureMapNonContainmentOriginPseudoConflictAddScope(ResourceSet resourceSet)
			throws IOException {
		return loadFromClassLoader("featuremapscope/noncontainment/pseudoconflicts/add/ancestor.nodes",
				resourceSet);
	}

	public Resource getFeatureMapNonContainmentLeftPseudoConflictDeleteScope(ResourceSet resourceSet)
			throws IOException {
		return loadFromClassLoader("featuremapscope/noncontainment/pseudoconflicts/delete/left.nodes",
				resourceSet);
	}

	public Resource getFeatureMapNonContainmentRightPseudoConflictDeleteScope(ResourceSet resourceSet)
			throws IOException {
		return loadFromClassLoader("featuremapscope/noncontainment/pseudoconflicts/delete/right.nodes",
				resourceSet);
	}

	public Resource getFeatureMapNonContainmentOriginPseudoConflictDeleteScope(ResourceSet resourceSet)
			throws IOException {
		return loadFromClassLoader("featuremapscope/noncontainment/pseudoconflicts/delete/ancestor.nodes",
				resourceSet);
	}

	public Resource getFeatureMapNonContainmentLeftPseudoConflictMoveOrderScope(ResourceSet resourceSet)
			throws IOException {
		return loadFromClassLoader("featuremapscope/noncontainment/pseudoconflicts/moveorder/left.nodes",
				resourceSet);
	}

	public Resource getFeatureMapNonContainmentRightPseudoConflictMoveOrderScope(ResourceSet resourceSet)
			throws IOException {
		return loadFromClassLoader("featuremapscope/noncontainment/pseudoconflicts/moveorder/right.nodes",
				resourceSet);
	}

	public Resource getFeatureMapNonContainmentOriginPseudoConflictMoveOrderScope(ResourceSet resourceSet)
			throws IOException {
		return loadFromClassLoader("featuremapscope/noncontainment/pseudoconflicts/moveorder/ancestor.nodes",
				resourceSet);
	}
}

Back to the top