1 | /** |
2 | * <copyright> |
3 | * </copyright> |
4 | * |
5 | * $Id$ |
6 | */ |
7 | package de.uka.ipd.sdq.pipesandfilters.presentation; |
8 | |
9 | import de.uka.ipd.sdq.identifier.provider.IdentifierEditPlugin; |
10 | |
11 | import org.eclipse.emf.common.EMFPlugin; |
12 | |
13 | import org.eclipse.emf.common.ui.EclipseUIPlugin; |
14 | |
15 | import org.eclipse.emf.common.util.ResourceLocator; |
16 | |
17 | /** |
18 | * This is the central singleton for the Pipesandfilters editor plugin. |
19 | * <!-- begin-user-doc --> |
20 | * <!-- end-user-doc --> |
21 | * @generated |
22 | */ |
23 | public final class PipesandfiltersEditorPlugin extends EMFPlugin { |
24 | /** |
25 | * Keep track of the singleton. |
26 | * <!-- begin-user-doc --> |
27 | * <!-- end-user-doc --> |
28 | * @generated |
29 | */ |
30 | public static final PipesandfiltersEditorPlugin INSTANCE = new PipesandfiltersEditorPlugin(); |
31 | |
32 | /** |
33 | * Keep track of the singleton. |
34 | * <!-- begin-user-doc --> |
35 | * <!-- end-user-doc --> |
36 | * @generated |
37 | */ |
38 | private static Implementation plugin; |
39 | |
40 | /** |
41 | * Create the instance. |
42 | * <!-- begin-user-doc --> |
43 | * <!-- end-user-doc --> |
44 | * @generated |
45 | */ |
46 | public PipesandfiltersEditorPlugin() { |
47 | super |
48 | (new ResourceLocator [] { |
49 | IdentifierEditPlugin.INSTANCE, |
50 | }); |
51 | } |
52 | |
53 | /** |
54 | * Returns the singleton instance of the Eclipse plugin. |
55 | * <!-- begin-user-doc --> |
56 | * <!-- end-user-doc --> |
57 | * @return the singleton instance. |
58 | * @generated |
59 | */ |
60 | @Override |
61 | public ResourceLocator getPluginResourceLocator() { |
62 | return plugin; |
63 | } |
64 | |
65 | /** |
66 | * Returns the singleton instance of the Eclipse plugin. |
67 | * <!-- begin-user-doc --> |
68 | * <!-- end-user-doc --> |
69 | * @return the singleton instance. |
70 | * @generated |
71 | */ |
72 | public static Implementation getPlugin() { |
73 | return plugin; |
74 | } |
75 | |
76 | /** |
77 | * The actual implementation of the Eclipse <b>Plugin</b>. |
78 | * <!-- begin-user-doc --> |
79 | * <!-- end-user-doc --> |
80 | * @generated |
81 | */ |
82 | public static class Implementation extends EclipseUIPlugin { |
83 | /** |
84 | * Creates an instance. |
85 | * <!-- begin-user-doc --> |
86 | * <!-- end-user-doc --> |
87 | * @generated |
88 | */ |
89 | public Implementation() { |
90 | super(); |
91 | |
92 | // Remember the static instance. |
93 | // |
94 | plugin = this; |
95 | } |
96 | } |
97 | |
98 | } |