]> git.argeo.org Git - gpl/argeo-slc.git/blob - eclipse/plugins/org.argeo.slc.client.rcp/plugin.xml
+ refactor to separate runtime and module project under eclipse plugin.
[gpl/argeo-slc.git] / eclipse / plugins / org.argeo.slc.client.rcp / plugin.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <?eclipse version="3.4"?>
3 <plugin>
4
5 <extension
6 id="org.argeo.slc.client.rcp.application"
7 point="org.eclipse.core.runtime.applications">
8 <application>
9 <run
10 class="org.argeo.slc.client.rcp.SlcClientRcpApplication">
11 </run>
12 </application>
13 </extension>
14 <extension
15 point="org.eclipse.ui.perspectives">
16 <perspective
17 name="Slc Execution"
18 class="org.argeo.slc.client.ui.perspectives.SlcExecution"
19 id="org.argeo.slc.client.ui.perspectives.slcExecution"
20 icon="icons/slc_execution_perspective.gif">
21 </perspective>
22 </extension>
23 <extension
24 point="org.eclipse.ui.menus">
25 <menuContribution
26 locationURI="menu:org.eclipse.ui.main.menu">
27 <menu
28 id="fileMenu"
29 label="File">
30 <command
31 commandId="org.argeo.slc.client.rcp.commands.Exit"
32 label="Exit"
33 style="push"
34 tooltip="Exits the application">
35 </command>
36 </menu>
37 </menuContribution>
38 </extension>
39 <extension
40 point="org.eclipse.ui.commands">
41 <command
42 defaultHandler="org.argeo.slc.client.rcp.commands.ExitHandler"
43 id="org.argeo.slc.client.rcp.commands.Exit"
44 name="Exit">
45 </command>
46 </extension>
47 <extension
48 id="product"
49 point="org.eclipse.core.runtime.products">
50 <product
51 application="org.argeo.slc.client.rcp.application"
52 name="SLC">
53 <property
54 name="windowImages"
55 value="icons/argeo-icon-256.png">
56 </property>
57 <property
58 name="appName"
59 value="SLC">
60 </property>
61 <property
62 name="preferenceCustomization"
63 value="plugin_customization.ini">
64 </property>
65 </product>
66 </extension>
67 <!-- <extension
68 id="product"
69 point="org.eclipse.core.runtime.products">
70 <product
71 application="org.argeo.slc.client.rcp.application"
72 name="SLC">
73 <property
74 name="windowImages"
75 value="icons/argeo-icon-256.png">
76 </property>
77 <property
78 name="appName"
79 value="SLC">
80 </property>
81 </product>
82 </extension> -->
83
84 </plugin>