Skip to main content
summaryrefslogtreecommitdiffstats
blob: b6c674b254b588b1eba0d4581c8fb2417e4ac3a0 (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
package org.eclipse.emf.compare.uml2.tests.dependency.data;

import java.io.IOException;

import org.eclipse.emf.compare.uml2.tests.AbstractUMLInputData;
import org.eclipse.emf.ecore.resource.Resource;

public class DependencyInputData extends AbstractUMLInputData {
	public Resource getA1Left() throws IOException {
		return loadFromClassLoader("a1/left.uml"); //$NON-NLS-1$
	}

	public Resource getA1Right() throws IOException {
		return loadFromClassLoader("a1/right.uml"); //$NON-NLS-1$
	}

	public Resource getA2Left() throws IOException {
		return loadFromClassLoader("a2/left.uml"); //$NON-NLS-1$
	}

	public Resource getA2Right() throws IOException {
		return loadFromClassLoader("a2/right.uml"); //$NON-NLS-1$
	}

	public Resource getA3Left() throws IOException {
		return loadFromClassLoader("a3/left.uml"); //$NON-NLS-1$
	}

	public Resource getA3Right() throws IOException {
		return loadFromClassLoader("a3/right.uml"); //$NON-NLS-1$
	}

	public Resource getA4Left() throws IOException {
		return loadFromClassLoader("a4/left.uml"); //$NON-NLS-1$
	}

	public Resource getA4Right() throws IOException {
		return loadFromClassLoader("a4/right.uml"); //$NON-NLS-1$
	}

	public Resource getA5Left() throws IOException {
		return loadFromClassLoader("a5/left.uml"); //$NON-NLS-1$
	}

	public Resource getA5Right() throws IOException {
		return loadFromClassLoader("a5/right.uml"); //$NON-NLS-1$
	}

	public Resource getA6Left() throws IOException {
		return loadFromClassLoader("a6/left.uml"); //$NON-NLS-1$
	}

	public Resource getA6Right() throws IOException {
		return loadFromClassLoader("a6/right.uml"); //$NON-NLS-1$
	}

	public Resource getA7Right() throws IOException {
		return loadFromClassLoader("a7/right.uml"); //$NON-NLS-1$
	}

	public Resource getA7Left() throws IOException {
		return loadFromClassLoader("a7/left.uml"); //$NON-NLS-1$
	}

	public Resource getA8Right() throws IOException {
		return loadFromClassLoader("a8/right.uml"); //$NON-NLS-1$
	}

	public Resource getA8Left() throws IOException {
		return loadFromClassLoader("a8/left.uml"); //$NON-NLS-1$
	}
}

Back to the top