Skip to content

Package: TaskEditPlugin

TaskEditPlugin

nameinstructionbranchcomplexitylinemethod
TaskEditPlugin()
M: 5 C: 0
0%
M: 0 C: 0
100%
M: 1 C: 0
0%
M: 3 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 Munich - initial API and implementation
13: */
14: package org.eclipse.emf.ecp.makeithappen.model.task.provider;
15:
16: import org.eclipse.emf.common.EMFPlugin;
17:
18: import org.eclipse.emf.common.util.ResourceLocator;
19:
20: /**
21: * This is the central singleton for the Task edit plugin.
22: * <!-- begin-user-doc -->
23: * <!-- end-user-doc -->
24: *
25: * @generated
26: */
27: public final class TaskEditPlugin extends EMFPlugin {
28:         /**
29:          * Keep track of the singleton.
30:          * <!-- begin-user-doc -->
31:          * <!-- end-user-doc -->
32:          *
33:          * @generated
34:          */
35:         public static final TaskEditPlugin INSTANCE = new TaskEditPlugin();
36:
37:         /**
38:          * Keep track of the singleton.
39:          * <!-- begin-user-doc -->
40:          * <!-- end-user-doc -->
41:          *
42:          * @generated
43:          */
44:         private static Implementation plugin;
45:
46:         /**
47:          * Create the instance.
48:          * <!-- begin-user-doc -->
49:          * <!-- end-user-doc -->
50:          *
51:          * @generated
52:          */
53:         public TaskEditPlugin() {
54:                 super(new ResourceLocator[] {
55:                 });
56:         }
57:
58:         /**
59:          * Returns the singleton instance of the Eclipse plugin.
60:          * <!-- begin-user-doc -->
61:          * <!-- end-user-doc -->
62:          *
63:          * @return the singleton instance.
64:          * @generated
65:          */
66:         @Override
67:         public ResourceLocator getPluginResourceLocator() {
68:                 return plugin;
69:         }
70:
71:         /**
72:          * Returns the singleton instance of the Eclipse plugin.
73:          * <!-- begin-user-doc -->
74:          * <!-- end-user-doc -->
75:          *
76:          * @return the singleton instance.
77:          * @generated
78:          */
79:         public static Implementation getPlugin() {
80:                 return plugin;
81:         }
82:
83:         /**
84:          * The actual implementation of the Eclipse <b>Plugin</b>.
85:          * <!-- begin-user-doc -->
86:          * <!-- end-user-doc -->
87:          *
88:          * @generated
89:          */
90:         public static class Implementation extends EclipsePlugin {
91:                 /**
92:                  * Creates an instance.
93:                  * <!-- begin-user-doc -->
94:                  * <!-- end-user-doc -->
95:                  *
96:                  * @generated
97:                  */
98:                 public Implementation() {
99:                         super();
100:
101:                         // Remember the static instance.
102:                         //
103:                         plugin = this;
104:                 }
105:         }
106:
107: }