blob: 05d0b8b1cc3a92e1b27f9229b3d065fe376133cb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/*
* Copyright (c) 2006 Borland Software Corporation
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Artem Tikhomirov (Borland) - initial API and implementation
*/
«IMPORT "http://www.eclipse.org/emf/2002/Ecore"»
«IMPORT "templates"»
«DEFINE Init(String packageName, String pluginActivatorClassName, String pluginID) FOR Object-»
package «packageName»;
/**
* @generated
*/
public class «pluginActivatorClassName» extends org.eclipse.core.runtime.Plugin {
/**
* @generated
*/
public static final String ID = "«pluginID»"; //\u0024NON-NLS-1\u0024 XXX FIXME DollarSign support
/**
* @generated
*/
private static «pluginActivatorClassName» ourInstance;
/**
* @generated
*/
public «pluginActivatorClassName»() {
}
/**
* @generated
*/
public void start(org.osgi.framework.BundleContext context) throws Exception {
super.start(context);
ourInstance = this;
}
/**
* @generated
*/
public void stop(org.osgi.framework.BundleContext context) throws Exception {
ourInstance = null;
super.stop(context);
}
/**
* @generated
*/
public static «pluginActivatorClassName» getDefault() {
return ourInstance;
}
«EXPAND MapMode::Activator-»
}
«ENDDEFINE»
|