| Line | |
|---|
| 1 | package org.axdt.axdoc; |
|---|
| 2 | |
|---|
| 3 | import org.eclipse.emf.common.EMFPlugin; |
|---|
| 4 | import org.eclipse.emf.common.util.ResourceLocator; |
|---|
| 5 | |
|---|
| 6 | /** |
|---|
| 7 | * @author mb0 |
|---|
| 8 | * @generated |
|---|
| 9 | */ |
|---|
| 10 | public final class AXDocPlugin extends EMFPlugin { |
|---|
| 11 | |
|---|
| 12 | /** |
|---|
| 13 | * Keep track of the singleton. |
|---|
| 14 | * <!-- begin-user-doc --> |
|---|
| 15 | * <!-- end-user-doc --> |
|---|
| 16 | * @generated |
|---|
| 17 | */ |
|---|
| 18 | public static final AXDocPlugin INSTANCE = new AXDocPlugin(); |
|---|
| 19 | /** |
|---|
| 20 | * Keep track of the singleton. |
|---|
| 21 | * <!-- begin-user-doc --> |
|---|
| 22 | * <!-- end-user-doc --> |
|---|
| 23 | * @generated |
|---|
| 24 | */ |
|---|
| 25 | private static Implementation plugin; |
|---|
| 26 | |
|---|
| 27 | /** |
|---|
| 28 | * @generated |
|---|
| 29 | */ |
|---|
| 30 | public AXDocPlugin() { |
|---|
| 31 | super(new ResourceLocator[] {}); |
|---|
| 32 | } |
|---|
| 33 | |
|---|
| 34 | /** |
|---|
| 35 | * Returns the singleton instance of the Eclipse plugin. |
|---|
| 36 | * <!-- begin-user-doc --> |
|---|
| 37 | * <!-- end-user-doc --> |
|---|
| 38 | * @return the singleton instance. |
|---|
| 39 | * @generated |
|---|
| 40 | */ |
|---|
| 41 | @Override |
|---|
| 42 | public ResourceLocator getPluginResourceLocator() { |
|---|
| 43 | return plugin; |
|---|
| 44 | } |
|---|
| 45 | |
|---|
| 46 | /** |
|---|
| 47 | * Returns the singleton instance of the Eclipse plugin. |
|---|
| 48 | * <!-- begin-user-doc --> |
|---|
| 49 | * <!-- end-user-doc --> |
|---|
| 50 | * @return the singleton instance. |
|---|
| 51 | * @generated |
|---|
| 52 | */ |
|---|
| 53 | public static Implementation getPlugin() { |
|---|
| 54 | return plugin; |
|---|
| 55 | } |
|---|
| 56 | |
|---|
| 57 | /** |
|---|
| 58 | * The actual implementation of the Eclipse <b>Plugin</b>. |
|---|
| 59 | * <!-- begin-user-doc --> |
|---|
| 60 | * <!-- end-user-doc --> |
|---|
| 61 | * @generated |
|---|
| 62 | */ |
|---|
| 63 | public static class Implementation extends EclipsePlugin { |
|---|
| 64 | /** |
|---|
| 65 | * Creates an instance. |
|---|
| 66 | * <!-- begin-user-doc --> |
|---|
| 67 | * <!-- end-user-doc --> |
|---|
| 68 | * @generated |
|---|
| 69 | */ |
|---|
| 70 | public Implementation() { |
|---|
| 71 | super(); |
|---|
| 72 | |
|---|
| 73 | // Remember the static instance. |
|---|
| 74 | // |
|---|
| 75 | plugin = this; |
|---|
| 76 | } |
|---|
| 77 | } |
|---|
| 78 | |
|---|
| 79 | } |
|---|