root/org.axdt.axdoc/src/org/axdt/axdoc/AXDocPlugin.java @ 9a9ef10dfc3b0467e14e06261fda3654c5aced64

Revision 9a9ef10dfc3b0467e14e06261fda3654c5aced64, 1.5 KB (checked in by Martin Schnabel <mb0@…>, 16 months ago)

initial commit.
axdoc emf model with tests and asdoc parser.
(asdoc parsing is not 100% functional yet)

  • Property mode set to 100644
Line 
1package org.axdt.axdoc;
2
3import org.eclipse.emf.common.EMFPlugin;
4import org.eclipse.emf.common.util.ResourceLocator;
5
6/**
7 * @author mb0
8 * @generated
9 */
10public 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}
Note: See TracBrowser for help on using the browser.