forked from toedter/e4-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
40 lines (40 loc) · 1.36 KB
/
plugin.xml
File metadata and controls
40 lines (40 loc) · 1.36 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
id="product"
point="org.eclipse.core.runtime.products">
<product
application="org.eclipse.e4.ui.workbench.swt.E4Application"
name="e4 Contacts">
<property
name="appName"
value="e4 Contacts">
</property>
<property
name="applicationXMI"
value="org.eclipse.e4.tutorial.contacts/Application.e4xmi">
</property>
<property
name="cssTheme"
value="org.eclipse.e4.tutorial.contacts.themes.blue">
</property>
<property
name="rendererFactoryUri"
value="bundleclass://org.eclipse.e4.tutorial.contacts.renderer/org.eclipse.e4.tutorial.contacts.renderer.RendererFactory">
</property>
<property
name="lifeCycleURI"
value="bundleclass://org.eclipse.e4.tutorial.contacts.login/org.eclipse.e4.tutorial.contacts.login.Login">
</property>
</product>
</extension>
<extension
point="org.eclipse.e4.ui.css.swt.theme">
<theme
basestylesheeturi="css/blue.css"
id="org.eclipse.e4.tutorial.contacts.themes.blue"
label="Blue Theme">
</theme>
</extension>
</plugin>