]> git.argeo.org Git - gpl/argeo-slc.git/blob - eclipse/plugins/org.argeo.slc.client.rcp/plugin.xml
add some comments to help understanding the approach
[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 <extension
5 id="org.argeo.slc.client.rcp.product"
6 point="org.eclipse.core.runtime.products">
7 <product
8 application="org.argeo.slc.client.rcp.application"
9 name="SLC">
10 <property
11 name="windowImages"
12 value="icons/argeo-icon-256.png">
13 </property>
14 <property
15 name="appName"
16 value="SLC">
17 </property>
18 <property
19 name="preferenceCustomization"
20 value="plugin_customization.ini">
21 </property>
22 </product>
23 </extension>
24 <extension
25 id="org.argeo.slc.client.rcp.application"
26 point="org.eclipse.core.runtime.applications">
27 <application>
28 <run
29 class="org.argeo.slc.client.rcp.SlcClientRcpApplication">
30 </run>
31 </application>
32 </extension>
33 <extension
34 point="org.eclipse.ui.perspectives">
35 <perspective
36 name="Slc Execution"
37 class="org.argeo.slc.client.ui.perspectives.SlcExecution"
38 id="org.argeo.slc.client.ui.perspectives.slcExecution"
39 icon="icons/slc_execution_perspective.gif">
40 </perspective>
41 </extension>
42 <extension
43 point="org.eclipse.ui.menus">
44 <menuContribution
45 locationURI="menu:org.eclipse.ui.main.menu">
46 <menu
47 id="fileMenu"
48 label="File">
49 <command
50 id="exitCommand"
51 commandId="org.argeo.slc.client.rcp.commands.Exit"
52 label="Exit"
53 style="push"
54 tooltip="Exits the application">
55 </command>
56 </menu>
57 </menuContribution>
58 </extension>
59 <extension
60 point="org.eclipse.ui.commands">
61 <command
62 defaultHandler="org.argeo.slc.client.rcp.commands.ExitHandler"
63 id="org.argeo.slc.client.rcp.commands.Exit"
64 name="Exit">
65 </command>
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 <!-- <extension
85 id="product"
86 point="org.eclipse.core.runtime.products">
87 <product
88 application="org.argeo.slc.client.rcp.application"
89 name="SLC">
90 <property
91 name="windowImages"
92 value="icons/argeo-icon-256.png">
93 </property>
94 <property
95 name="appName"
96 value="SLC">
97 </property>
98 </product>
99 </extension> -->
100
101 </plugin>