Skip to content

Package: UniversityEditPlugin

UniversityEditPlugin

nameinstructionbranchcomplexitylinemethod
UniversityEditPlugin()
M: 5 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%
getPlugin()
M: 2 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%
getPluginResourceLocator()
M: 2 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 1 C: 0
0%
M: 1 C: 0
0%
static {...}
M: 5 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 2 C: 0
0%
M: 1 C: 0
0%

Coverage

1: /**
2: * Copyright (c) 2011-2014 EclipseSource Muenchen GmbH and others.
3: *
4: * All rights reserved. This program and the accompanying materials
5: * are made available under the terms of the Eclipse Public License 2.0
6: * which accompanies this distribution, and is available at
7: * https://www.eclipse.org/legal/epl-2.0/
8: *
9: * SPDX-License-Identifier: EPL-2.0
10: *
11: * Contributors:
12: * EclipseSource - Generated code
13: */
14: package org.eclipse.emf.ecp.test.university.provider;
15:
16: import org.eclipse.emf.common.EMFPlugin;
17: import org.eclipse.emf.common.util.ResourceLocator;
18:
19: /**
20: * This is the central singleton for the University edit plugin.
21: * <!-- begin-user-doc -->
22: * <!-- end-user-doc -->
23: *
24: * @generated
25: */
26: public final class UniversityEditPlugin extends EMFPlugin {
27:         /**
28:          * Keep track of the singleton.
29:          * <!-- begin-user-doc -->
30:          * <!-- end-user-doc -->
31:          *
32:          * @generated
33:          */
34:         public static final UniversityEditPlugin INSTANCE = new UniversityEditPlugin();
35:
36:         /**
37:          * Keep track of the singleton.
38:          * <!-- begin-user-doc -->
39:          * <!-- end-user-doc -->
40:          *
41:          * @generated
42:          */
43:         private static Implementation plugin;
44:
45:         /**
46:          * Create the instance.
47:          * <!-- begin-user-doc -->
48:          * <!-- end-user-doc -->
49:          *
50:          * @generated
51:          */
52:         public UniversityEditPlugin() {
53:                 super(new ResourceLocator[] {});
54:         }
55:
56:         /**
57:          * Returns the singleton instance of the Eclipse plugin.
58:          * <!-- begin-user-doc -->
59:          * <!-- end-user-doc -->
60:          *
61:          * @return the singleton instance.
62:          * @generated
63:          */
64:         @Override
65:         public ResourceLocator getPluginResourceLocator() {
66:                 return plugin;
67:         }
68:
69:         /**
70:          * Returns the singleton instance of the Eclipse plugin.
71:          * <!-- begin-user-doc -->
72:          * <!-- end-user-doc -->
73:          *
74:          * @return the singleton instance.
75:          * @generated
76:          */
77:         public static Implementation getPlugin() {
78:                 return plugin;
79:         }
80:
81:         /**
82:          * The actual implementation of the Eclipse <b>Plugin</b>.
83:          * <!-- begin-user-doc -->
84:          * <!-- end-user-doc -->
85:          *
86:          * @generated
87:          */
88:         public static class Implementation extends EclipsePlugin {
89:                 /**
90:                  * Creates an instance.
91:                  * <!-- begin-user-doc -->
92:                  * <!-- end-user-doc -->
93:                  *
94:                  * @generated
95:                  */
96:                 public Implementation() {
97:                         super();
98:
99:                         // Remember the static instance.
100:                         //
101:                         plugin = this;
102:                 }
103:         }
104:
105: }