1 | @Override↵ | | 1 | @Override↵
|
2 | public ResourceLocator getPluginResourceLocator()↵ | | 2 | public ResourceLocator getPluginResourceLocator()↵
|
3 | {↵ | | 3 | {↵
|
4 | return plugin;↵ | | 4 | return plugin;↵
|
5 | }↵ | | 5 | }↵
|
|
6 | /**↵ | | 6 | /**↵
|
7 | * Returns the singleton instance of the Eclipse plugin.↵ | | 7 | * Returns the singleton instance of the Eclipse plugin.↵
|
8 | * <!-- begin-user-doc -->↵ | | |
|
9 | * <!-- end-user-doc -->↵ | | |
|
10 | * @return the singleton instance.↵ | | 8 | * @return the singleton instance.↵
|
11 | * @generated↵ | | |
|
12 | */↵ | | 9 | */↵
|
13 | public static Implementation getPlugin()↵ | | 10 | public static Implementation getPlugin()↵
|
14 | {↵ | | 11 | {↵
|
15 | return plugin;↵ | | 12 | return plugin;↵
|
16 | }↵ | | 13 | }↵
|
|
17 | /**↵ | | 14 | /**↵
|
18 | * The actual implementation of the Eclipse <b>Plugin</b>.↵ | | 15 | * The actual implementation of the Eclipse <b>Plugin</b>.↵
|
19 | * <!-- begin-user-doc -->↵ | | |
|
20 | * <!-- end-user-doc -->↵ | | |
|
21 | * @generated↵ | | |
|
22 | */↵ | | 16 | */↵
|
23 | public static class Implementation extends EclipseUIPlugin↵ | | 17 | public static class Implementation extends EclipsePlugin ↵
|
24 | {↵ | | 18 | {↵
|
25 | /**↵ | | 19 | /**↵
|
26 | * Creates an instance.↵ | | 20 | * Creates an instance.↵
|
27 | * <!-- begin-user-doc -->↵ | | |
|
28 | * <!-- end-user-doc -->↵ | | |
|
29 | * @generated↵ | | |
|
30 | */↵ | | 21 | */↵
|
31 | public Implementation()↵ | | 22 | public Implementation()↵
|
32 | {↵ | | 23 | {↵
|
33 | super();↵ | | 24 | super();↵
|
34 | ↵ | | |
|
35 | // Remember the static instance.↵ | | 25 | // Remember the static instance.↵
|
36 | //↵ | | 26 | //↵
|
37 | plugin = this; | | 27 | plugin = this;
|