Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4438a5369655f4996b2c99bfca00bc8d0627e16b (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
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
/*******************************************************************************
 * Copyright (c) 2012, 2016 Obeo and others.
 * 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
 *     Philip Langer - bug 479449
 *******************************************************************************/
package org.eclipse.emf.compare.tests.conflict.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;
import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl;
import org.eclipse.emf.ecore.util.EcoreUtil;
import org.eclipse.uml2.uml.UMLPackage;
import org.eclipse.uml2.uml.resource.UMLResource;

/**
 * This will provide the input model for all of our "conflict detection" tests.
 * 
 * @author <a href="mailto:laurent.goubet@obeo.fr">Laurent Goubet</a>
 */
@SuppressWarnings("nls")
public class ConflictInputData extends AbstractInputData {
	public Resource getA1AttributeLeft() throws IOException {
		return loadFromClassLoader("a1/conflict_a1_attribute_left.nodes");
	}

	public Resource getA1AttributeOrigin() throws IOException {
		return loadFromClassLoader("a1/conflict_a1_attribute_origin.nodes");
	}

	public Resource getA1AttributeRight() throws IOException {
		return loadFromClassLoader("a1/conflict_a1_attribute_right.nodes");
	}

	public Resource getA1ReferenceLeft() throws IOException {
		return loadFromClassLoader("a1/conflict_a1_reference_left.nodes");
	}

	public Resource getA1ReferenceOrigin() throws IOException {
		return loadFromClassLoader("a1/conflict_a1_reference_origin.nodes");
	}

	public Resource getA1ReferenceRight() throws IOException {
		return loadFromClassLoader("a1/conflict_a1_reference_right.nodes");
	}

	public Resource getA2AttributeLeft() throws IOException {
		return loadFromClassLoader("a2/conflict_a2_attribute_left.nodes");
	}

	public Resource getA2AttributeOrigin() throws IOException {
		return loadFromClassLoader("a2/conflict_a2_attribute_origin.nodes");
	}

	public Resource getA2AttributeRight() throws IOException {
		return loadFromClassLoader("a2/conflict_a2_attribute_right.nodes");
	}

	public Resource getA2ReferenceLeft() throws IOException {
		return loadFromClassLoader("a2/conflict_a2_reference_left.nodes");
	}

	public Resource getA2ReferenceOrigin() throws IOException {
		return loadFromClassLoader("a2/conflict_a2_reference_origin.nodes");
	}

	public Resource getA2ReferenceRight() throws IOException {
		return loadFromClassLoader("a2/conflict_a2_reference_right.nodes");
	}

	public Resource getA3AttributeLeft() throws IOException {
		return loadFromClassLoader("a3/conflict_a3_attribute_left.nodes");
	}

	public Resource getA3AttributeOrigin() throws IOException {
		return loadFromClassLoader("a3/conflict_a3_attribute_origin.nodes");
	}

	public Resource getA3AttributeRight() throws IOException {
		return loadFromClassLoader("a3/conflict_a3_attribute_right.nodes");
	}

	public Resource getA3ReferenceLeft() throws IOException {
		return loadFromClassLoader("a3/conflict_a3_reference_left.nodes");
	}

	public Resource getA3ReferenceOrigin() throws IOException {
		return loadFromClassLoader("a3/conflict_a3_reference_origin.nodes");
	}

	public Resource getA3ReferenceRight() throws IOException {
		return loadFromClassLoader("a3/conflict_a3_reference_right.nodes");
	}

	public Resource getB1AttributeLeft() throws IOException {
		return loadFromClassLoader("b1/conflict_b1_attribute_left.nodes");
	}

	public Resource getB1AttributeOrigin() throws IOException {
		return loadFromClassLoader("b1/conflict_b1_attribute_origin.nodes");
	}

	public Resource getB1AttributeRight() throws IOException {
		return loadFromClassLoader("b1/conflict_b1_attribute_right.nodes");
	}

	public Resource getB1ReferenceLeft() throws IOException {
		return loadFromClassLoader("b1/conflict_b1_reference_left.nodes");
	}

	public Resource getB1ReferenceOrigin() throws IOException {
		return loadFromClassLoader("b1/conflict_b1_reference_origin.nodes");
	}

	public Resource getB1ReferenceRight() throws IOException {
		return loadFromClassLoader("b1/conflict_b1_reference_right.nodes");
	}

	public Resource getB2AttributeLeft() throws IOException {
		return loadFromClassLoader("b2/conflict_b2_attribute_left.nodes");
	}

	public Resource getB2AttributeOrigin() throws IOException {
		return loadFromClassLoader("b2/conflict_b2_attribute_origin.nodes");
	}

	public Resource getB2AttributeRight() throws IOException {
		return loadFromClassLoader("b2/conflict_b2_attribute_right.nodes");
	}

	public Resource getB2ReferenceLeft() throws IOException {
		return loadFromClassLoader("b2/conflict_b2_reference_left.nodes");
	}

	public Resource getB2ReferenceOrigin() throws IOException {
		return loadFromClassLoader("b2/conflict_b2_reference_origin.nodes");
	}

	public Resource getB2ReferenceRight() throws IOException {
		return loadFromClassLoader("b2/conflict_b2_reference_right.nodes");
	}

	public Resource getB3AttributeLeft() throws IOException {
		return loadFromClassLoader("b3/conflict_b3_attribute_left.nodes");
	}

	public Resource getB3AttributeOrigin() throws IOException {
		return loadFromClassLoader("b3/conflict_b3_attribute_origin.nodes");
	}

	public Resource getB3AttributeRight() throws IOException {
		return loadFromClassLoader("b3/conflict_b3_attribute_right.nodes");
	}

	public Resource getB3ReferenceLeft() throws IOException {
		return loadFromClassLoader("b3/conflict_b3_reference_left.nodes");
	}

	public Resource getB3ReferenceOrigin() throws IOException {
		return loadFromClassLoader("b3/conflict_b3_reference_origin.nodes");
	}

	public Resource getB3ReferenceRight() throws IOException {
		return loadFromClassLoader("b3/conflict_b3_reference_right.nodes");
	}

	public Resource getB3ContainmentReferenceLeft() throws IOException {
		return loadFromClassLoader("b3/conflict_b3_containment_reference_left.nodes");
	}

	public Resource getB3ContainmentReferenceOrigin() throws IOException {
		return loadFromClassLoader("b3/conflict_b3_containment_reference_origin.nodes");
	}

	public Resource getB3ContainmentReferenceRight() throws IOException {
		return loadFromClassLoader("b3/conflict_b3_containment_reference_right.nodes");
	}

	public Resource getB4AttributeLeft() throws IOException {
		return loadFromClassLoader("b4/conflict_b4_attribute_left.nodes");
	}

	public Resource getB4AttributeOrigin() throws IOException {
		return loadFromClassLoader("b4/conflict_b4_attribute_origin.nodes");
	}

	public Resource getB4AttributeRight() throws IOException {
		return loadFromClassLoader("b4/conflict_b4_attribute_right.nodes");
	}

	public Resource getB4ReferenceLeft() throws IOException {
		return loadFromClassLoader("b4/conflict_b4_reference_left.nodes");
	}

	public Resource getB4ReferenceOrigin() throws IOException {
		return loadFromClassLoader("b4/conflict_b4_reference_origin.nodes");
	}

	public Resource getB4ReferenceRight() throws IOException {
		return loadFromClassLoader("b4/conflict_b4_reference_right.nodes");
	}

	public Resource getB5AttributeLeft() throws IOException {
		return loadFromClassLoader("b5/conflict_b5_attribute_left.nodes");
	}

	public Resource getB5AttributeOrigin() throws IOException {
		return loadFromClassLoader("b5/conflict_b5_attribute_origin.nodes");
	}

	public Resource getB5AttributeRight() throws IOException {
		return loadFromClassLoader("b5/conflict_b5_attribute_right.nodes");
	}

	public Resource getB5ReferenceLeft() throws IOException {
		return loadFromClassLoader("b5/conflict_b5_reference_left.nodes");
	}

	public Resource getB5ReferenceOrigin() throws IOException {
		return loadFromClassLoader("b5/conflict_b5_reference_origin.nodes");
	}

	public Resource getB5ReferenceRight() throws IOException {
		return loadFromClassLoader("b5/conflict_b5_reference_right.nodes");
	}

	public Resource getB6AttributeLeft() throws IOException {
		return loadFromClassLoader("b6/conflict_b6_attribute_left.nodes");
	}

	public Resource getB6AttributeOrigin() throws IOException {
		return loadFromClassLoader("b6/conflict_b6_attribute_origin.nodes");
	}

	public Resource getB6AttributeRight() throws IOException {
		return loadFromClassLoader("b6/conflict_b6_attribute_right.nodes");
	}

	public Resource getB6ReferenceLeft() throws IOException {
		return loadFromClassLoader("b6/conflict_b6_reference_left.nodes");
	}

	public Resource getB6ReferenceOrigin() throws IOException {
		return loadFromClassLoader("b6/conflict_b6_reference_origin.nodes");
	}

	public Resource getB6ReferenceRight() throws IOException {
		return loadFromClassLoader("b6/conflict_b6_reference_right.nodes");
	}

	public Resource getC1AttributeLeft() throws IOException {
		return loadFromClassLoader("c1/conflict_c1_attribute_left.nodes");
	}

	public Resource getC1AttributeOrigin() throws IOException {
		return loadFromClassLoader("c1/conflict_c1_attribute_origin.nodes");
	}

	public Resource getC1AttributeRight() throws IOException {
		return loadFromClassLoader("c1/conflict_c1_attribute_right.nodes");
	}

	public Resource getC1ReferenceLeft() throws IOException {
		return loadFromClassLoader("c1/conflict_c1_reference_left.nodes");
	}

	public Resource getC1ReferenceOrigin() throws IOException {
		return loadFromClassLoader("c1/conflict_c1_reference_origin.nodes");
	}

	public Resource getC1ReferenceRight() throws IOException {
		return loadFromClassLoader("c1/conflict_c1_reference_right.nodes");
	}

	public Resource getC2AttributeLeft() throws IOException {
		return loadFromClassLoader("c2/conflict_c2_attribute_left.nodes");
	}

	public Resource getC2AttributeOrigin() throws IOException {
		return loadFromClassLoader("c2/conflict_c2_attribute_origin.nodes");
	}

	public Resource getC2AttributeRight() throws IOException {
		return loadFromClassLoader("c2/conflict_c2_attribute_right.nodes");
	}

	public Resource getC2ReferenceLeft() throws IOException {
		return loadFromClassLoader("c2/conflict_c2_reference_left.nodes");
	}

	public Resource getC2ReferenceOrigin() throws IOException {
		return loadFromClassLoader("c2/conflict_c2_reference_origin.nodes");
	}

	public Resource getC2ReferenceRight() throws IOException {
		return loadFromClassLoader("c2/conflict_c2_reference_right.nodes");
	}

	public Resource getC3AttributeLeft() throws IOException {
		return loadFromClassLoader("c3/conflict_c3_attribute_left.nodes");
	}

	public Resource getC3AttributeOrigin() throws IOException {
		return loadFromClassLoader("c3/conflict_c3_attribute_origin.nodes");
	}

	public Resource getC3AttributeRight() throws IOException {
		return loadFromClassLoader("c3/conflict_c3_attribute_right.nodes");
	}

	public Resource getC3ReferenceLeft() throws IOException {
		return loadFromClassLoader("c3/conflict_c3_reference_left.nodes");
	}

	public Resource getC3ReferenceOrigin() throws IOException {
		return loadFromClassLoader("c3/conflict_c3_reference_origin.nodes");
	}

	public Resource getC3ReferenceRight() throws IOException {
		return loadFromClassLoader("c3/conflict_c3_reference_right.nodes");
	}

	public Resource getC4AttributeLeft() throws IOException {
		return loadFromClassLoader("c4/conflict_c4_attribute_left.nodes");
	}

	public Resource getC4AttributeOrigin() throws IOException {
		return loadFromClassLoader("c4/conflict_c4_attribute_origin.nodes");
	}

	public Resource getC4AttributeRight() throws IOException {
		return loadFromClassLoader("c4/conflict_c4_attribute_right.nodes");
	}

	public Resource getC4ReferenceLeft() throws IOException {
		return loadFromClassLoader("c4/conflict_c4_reference_left.nodes");
	}

	public Resource getC4ReferenceOrigin() throws IOException {
		return loadFromClassLoader("c4/conflict_c4_reference_origin.nodes");
	}

	public Resource getC4ReferenceRight() throws IOException {
		return loadFromClassLoader("c4/conflict_c4_reference_right.nodes");
	}

	public Resource getC5AttributeLeft() throws IOException {
		return loadFromClassLoader("c5/conflict_c5_attribute_left.nodes");
	}

	public Resource getC5AttributeOrigin() throws IOException {
		return loadFromClassLoader("c5/conflict_c5_attribute_origin.nodes");
	}

	public Resource getC5AttributeRight() throws IOException {
		return loadFromClassLoader("c5/conflict_c5_attribute_right.nodes");
	}

	public Resource getC5ReferenceLeft() throws IOException {
		return loadFromClassLoader("c5/conflict_c5_reference_left.nodes");
	}

	public Resource getC5ReferenceOrigin() throws IOException {
		return loadFromClassLoader("c5/conflict_c5_reference_origin.nodes");
	}

	public Resource getC5ReferenceRight() throws IOException {
		return loadFromClassLoader("c5/conflict_c5_reference_right.nodes");
	}

	public Resource getD1AttributeLeft() throws IOException {
		return loadFromClassLoader("d1/conflict_d1_attribute_left.nodes");
	}

	public Resource getD1AttributeOrigin() throws IOException {
		return loadFromClassLoader("d1/conflict_d1_attribute_origin.nodes");
	}

	public Resource getD1AttributeRight() throws IOException {
		return loadFromClassLoader("d1/conflict_d1_attribute_right.nodes");
	}

	public Resource getD1ReferenceLeft() throws IOException {
		return loadFromClassLoader("d1/conflict_d1_reference_left.nodes");
	}

	public Resource getD1ReferenceOrigin() throws IOException {
		return loadFromClassLoader("d1/conflict_d1_reference_origin.nodes");
	}

	public Resource getD1ReferenceRight() throws IOException {
		return loadFromClassLoader("d1/conflict_d1_reference_right.nodes");
	}

	public Resource getD2AttributeLeft() throws IOException {
		return loadFromClassLoader("d2/conflict_d2_attribute_left.nodes");
	}

	public Resource getD2AttributeOrigin() throws IOException {
		return loadFromClassLoader("d2/conflict_d2_attribute_origin.nodes");
	}

	public Resource getD2AttributeRight() throws IOException {
		return loadFromClassLoader("d2/conflict_d2_attribute_right.nodes");
	}

	public Resource getD2ReferenceLeft() throws IOException {
		return loadFromClassLoader("d2/conflict_d2_reference_left.nodes");
	}

	public Resource getD2ReferenceOrigin() throws IOException {
		return loadFromClassLoader("d2/conflict_d2_reference_origin.nodes");
	}

	public Resource getD2ReferenceRight() throws IOException {
		return loadFromClassLoader("d2/conflict_d2_reference_right.nodes");
	}

	public Resource getD3AttributeLeft() throws IOException {
		return loadFromClassLoader("d3/conflict_d3_attribute_left.nodes");
	}

	public Resource getD3AttributeOrigin() throws IOException {
		return loadFromClassLoader("d3/conflict_d3_attribute_origin.nodes");
	}

	public Resource getD3AttributeRight() throws IOException {
		return loadFromClassLoader("d3/conflict_d3_attribute_right.nodes");
	}

	public Resource getD3ReferenceLeft() throws IOException {
		return loadFromClassLoader("d3/conflict_d3_reference_left.nodes");
	}

	public Resource getD3ReferenceOrigin() throws IOException {
		return loadFromClassLoader("d3/conflict_d3_reference_origin.nodes");
	}

	public Resource getD3ReferenceRight() throws IOException {
		return loadFromClassLoader("d3/conflict_d3_reference_right.nodes");
	}

	public Resource getD4AttributeLeft() throws IOException {
		return loadFromClassLoader("d4/conflict_d4_attribute_left.nodes");
	}

	public Resource getD4AttributeOrigin() throws IOException {
		return loadFromClassLoader("d4/conflict_d4_attribute_origin.nodes");
	}

	public Resource getD4AttributeRight() throws IOException {
		return loadFromClassLoader("d4/conflict_d4_attribute_right.nodes");
	}

	public Resource getD4ReferenceLeft() throws IOException {
		return loadFromClassLoader("d4/conflict_d4_reference_left.nodes");
	}

	public Resource getD4ReferenceOrigin() throws IOException {
		return loadFromClassLoader("d4/conflict_d4_reference_origin.nodes");
	}

	public Resource getD4ReferenceRight() throws IOException {
		return loadFromClassLoader("d4/conflict_d4_reference_right.nodes");
	}

	public Resource getD5AttributeLeft() throws IOException {
		return loadFromClassLoader("d5/conflict_d5_attribute_left.nodes");
	}

	public Resource getD5AttributeOrigin() throws IOException {
		return loadFromClassLoader("d5/conflict_d5_attribute_origin.nodes");
	}

	public Resource getD5AttributeRight() throws IOException {
		return loadFromClassLoader("d5/conflict_d5_attribute_right.nodes");
	}

	public Resource getD5ReferenceLeft() throws IOException {
		return loadFromClassLoader("d5/conflict_d5_reference_left.nodes");
	}

	public Resource getD5ReferenceOrigin() throws IOException {
		return loadFromClassLoader("d5/conflict_d5_reference_origin.nodes");
	}

	public Resource getD5ReferenceRight() throws IOException {
		return loadFromClassLoader("d5/conflict_d5_reference_right.nodes");
	}

	public Resource getD6AttributeLeft() throws IOException {
		return loadFromClassLoader("d6/conflict_d6_attribute_left.nodes");
	}

	public Resource getD6AttributeOrigin() throws IOException {
		return loadFromClassLoader("d6/conflict_d6_attribute_origin.nodes");
	}

	public Resource getD6AttributeRight() throws IOException {
		return loadFromClassLoader("d6/conflict_d6_attribute_right.nodes");
	}

	public Resource getD6ReferenceLeft() throws IOException {
		return loadFromClassLoader("d6/conflict_d6_reference_left.nodes");
	}

	public Resource getD6ReferenceOrigin() throws IOException {
		return loadFromClassLoader("d6/conflict_d6_reference_origin.nodes");
	}

	public Resource getD6ReferenceRight() throws IOException {
		return loadFromClassLoader("d6/conflict_d6_reference_right.nodes");
	}

	public Resource getE1Left() throws IOException {
		return loadFromClassLoader("e1/conflict_e1_left.nodes");
	}

	public Resource getE1Origin() throws IOException {
		return loadFromClassLoader("e1/conflict_e1_origin.nodes");
	}

	public Resource getE1Right() throws IOException {
		return loadFromClassLoader("e1/conflict_e1_right.nodes");
	}

	public Resource getE2Left() throws IOException {
		return loadFromClassLoader("e2/conflict_e2_left.nodes");
	}

	public Resource getE2Origin() throws IOException {
		return loadFromClassLoader("e2/conflict_e2_origin.nodes");
	}

	public Resource getE2Right() throws IOException {
		return loadFromClassLoader("e2/conflict_e2_right.nodes");
	}

	public Resource getFLeft() throws IOException {
		return loadFromClassLoader("f/conflict_f_left.nodes");
	}

	public Resource getFOrigin() throws IOException {
		return loadFromClassLoader("f/conflict_f_origin.nodes");
	}

	public Resource getFRight() throws IOException {
		return loadFromClassLoader("f/conflict_f_right.nodes");
	}

	public Resource getGLeft() throws IOException {
		return loadFromClassLoader("g/conflict_g_left.nodes");
	}

	public Resource getGOrigin() throws IOException {
		return loadFromClassLoader("g/conflict_g_origin.nodes");
	}

	public Resource getGRight() throws IOException {
		return loadFromClassLoader("g/conflict_g_right.nodes");
	}

	public Resource getH1Left() throws IOException {
		return loadFromClassLoader("h1/conflict_h1_left.nodes");
	}

	public Resource getH1Origin() throws IOException {
		return loadFromClassLoader("h1/conflict_h1_origin.nodes");
	}

	public Resource getH1Right() throws IOException {
		return loadFromClassLoader("h1/conflict_h1_right.nodes");
	}

	public Resource getH2Left() throws IOException {
		return loadFromClassLoader("h2/conflict_h2_left.nodes");
	}

	public Resource getH2Origin() throws IOException {
		return loadFromClassLoader("h2/conflict_h2_origin.nodes");
	}

	public Resource getH2Right() throws IOException {
		return loadFromClassLoader("h2/conflict_h2_right.nodes");
	}

	public Resource getILeft() throws IOException {
		return loadFromClassLoader("i/conflict_i_left.nodes");
	}

	public Resource getIOrigin() throws IOException {
		return loadFromClassLoader("i/conflict_i_origin.nodes");
	}

	public Resource getIRight() throws IOException {
		return loadFromClassLoader("i/conflict_i_right.nodes");
	}

	public Resource getJLeft() throws IOException {
		return loadFromClassLoader("j/conflict_j_left.nodes");
	}

	public Resource getJOrigin() throws IOException {
		return loadFromClassLoader("j/conflict_j_origin.nodes");
	}

	public Resource getJRight() throws IOException {
		return loadFromClassLoader("j/conflict_j_right.nodes");
	}

	public Resource getK1Left() throws IOException {
		return loadFromClassLoader("k1/conflict_k1_left.nodes");
	}

	public Resource getK1Origin() throws IOException {
		return loadFromClassLoader("k1/conflict_k1_origin.nodes");
	}

	public Resource getK1Right() throws IOException {
		return loadFromClassLoader("k1/conflict_k1_right.nodes");
	}

	public Resource getK2Left() throws IOException {
		return loadFromClassLoader("k2/conflict_k2_left.nodes");
	}

	public Resource getK2Origin() throws IOException {
		return loadFromClassLoader("k2/conflict_k2_origin.nodes");
	}

	public Resource getK2Right() throws IOException {
		return loadFromClassLoader("k2/conflict_k2_right.nodes");
	}

	public Resource getK3Left() throws IOException {
		return loadFromClassLoader("k3/conflict_k3_left.nodes");
	}

	public Resource getK3Origin() throws IOException {
		return loadFromClassLoader("k3/conflict_k3_origin.nodes");
	}

	public Resource getK3Right() throws IOException {
		return loadFromClassLoader("k3/conflict_k3_right.nodes");
	}

	public Resource getK4Left() throws IOException {
		return loadFromClassLoader("k4/conflict_k4_left.nodes");
	}

	public Resource getK4Origin() throws IOException {
		return loadFromClassLoader("k4/conflict_k4_origin.nodes");
	}

	public Resource getK4Right() throws IOException {
		return loadFromClassLoader("k4/conflict_k4_right.nodes");
	}

	public Resource getComplexLeft() throws IOException {
		return loadFromClassLoader("complex/conflict_complex_left.nodes");
	}

	public Resource getComplexOrigin() throws IOException {
		return loadFromClassLoader("complex/conflict_complex_origin.nodes");
	}

	public Resource getComplexRight() throws IOException {
		return loadFromClassLoader("complex/conflict_complex_right.nodes");
	}

	public ResourceSet getPseudoConflictCase1Ancestor() throws IOException {
		ResourceSet resourceSet = createResourceSet();
		loadFromClassLoader("pseudoConflictDetection/case1/ancestor/model.uml", resourceSet);
		EcoreUtil.resolveAll(resourceSet);
		return resourceSet;
	}

	public ResourceSet getPseudoConflictCase1RightAndLeftModel() throws IOException {
		ResourceSet resourceSet = createResourceSet();
		loadFromClassLoader("pseudoConflictDetection/case1/model.uml", resourceSet);
		EcoreUtil.resolveAll(resourceSet);
		return resourceSet;
	}

	public Resource getPseudoConflictCase2Ancestor() throws IOException {
		return loadFromClassLoader("pseudoConflictDetection/case2/ancestor/model.uml");
	}

	public Resource getPseudoConflictCase2RightAndLeftModel() throws IOException {
		return loadFromClassLoader("pseudoConflictDetection/case2/model.uml");
	}

	public Resource getPseudoConflictCase3Ancestor() throws IOException {
		return loadFromClassLoader("pseudoConflictDetection/case3/ancestor/model.uml");
	}

	public Resource getPseudoConflictCase3RightAndLeftModel() throws IOException {
		return loadFromClassLoader("pseudoConflictDetection/case3/model.uml");
	}

	public Resource getPseudoConflictCase4Ancestor() throws IOException {
		return loadFromClassLoader("pseudoConflictDetection/case4/ancestor/model.uml");
	}

	public Resource getPseudoConflictCase4RightAndLeftModel() throws IOException {
		return loadFromClassLoader("pseudoConflictDetection/case4/model.uml");
	}

	public ResourceSet getRACDanglingConflictAncestorModel() throws IOException {
		return newResourceSetWith(loadFromClassLoader("rac_dangling/ancestor/main.nodes"));
	}

	public ResourceSet getRACDanglingConflictLeftModel() throws IOException {
		return newResourceSetWith(loadFromClassLoader("rac_dangling/left/main.nodes"));
	}

	public ResourceSet getRACDanglingConflictRightModel() throws IOException {
		return newResourceSetWith(loadFromClassLoader("rac_dangling/right/main.nodes"));
	}

	private ResourceSet newResourceSetWith(Resource... resources) {
		ResourceSet rs = new ResourceSetImpl();
		for (Resource r : resources) {
			rs.getResources().add(r);
		}
		EcoreUtil.resolveAll(rs);
		return rs;
	}

	protected ResourceSet createResourceSet() {
		ResourceSet resourceSet = new ResourceSetImpl();
		resourceSet.getPackageRegistry().put(UMLPackage.eNS_URI, UMLPackage.eINSTANCE);
		resourceSet.getResourceFactoryRegistry().getExtensionToFactoryMap().put(UMLResource.FILE_EXTENSION,
				UMLResource.Factory.INSTANCE);
		return resourceSet;
	}
}

Back to the top