root / tmp / org.txm.cooccurrence.chartsengine / plugin.xml @ 1228
History | View | Annotate | Download (1.6 kB)
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
---|---|
2 |
<?eclipse version="3.4"?>
|
3 |
<plugin>
|
4 |
<extension
|
5 |
point="org.eclipse.ui.commands"> |
6 |
<command
|
7 |
defaultHandler="org.txm.cooccurrence.handlers.ComputeCooccurrenceGraph" |
8 |
id="org.txm.cooccurrence.handlers.ComputeCooccurrenceGraph" |
9 |
name="Compute Cooccurrence Graph" |
10 |
returnTypeId="org.txm.cooccurrence.functions.CooccurrenceGraph"> |
11 |
</command>
|
12 |
</extension>
|
13 |
|
14 |
<extension
|
15 |
point="org.txm.chartsengine.chartcreator"> |
16 |
<ChartCreator
|
17 |
class="org.txm.cooccurrence.chartsengine.CooccurrenceGSChartCreator" |
18 |
fileNamePrefix="cooc"> |
19 |
</ChartCreator>
|
20 |
</extension>
|
21 |
<extension
|
22 |
point="org.eclipse.ui.menus"> |
23 |
<menuContribution
|
24 |
allPopups="false" |
25 |
locationURI="popup:org.txm.rcp.views.corpora.CorporaView"> |
26 |
<command
|
27 |
commandId="org.txm.cooccurrence.handlers.ComputeCooccurrenceGraph" |
28 |
style="push"> |
29 |
<visibleWhen
|
30 |
checkEnabled="false"> |
31 |
<or>
|
32 |
<reference
|
33 |
definitionId="OneCooccurrenceSelected"> |
34 |
</reference>
|
35 |
</or>
|
36 |
</visibleWhen>
|
37 |
</command>
|
38 |
</menuContribution>
|
39 |
</extension>
|
40 |
<extension
|
41 |
point="org.eclipse.ui.editors"> |
42 |
<editor
|
43 |
class="org.txm.cooccurrence.editors.CooccurrenceGraphEditor" |
44 |
default="false" |
45 |
id="org.txm.cooccurrence.functions.CooccurrenceGraph" |
46 |
name="Cooccurrence Graph Editor"> |
47 |
</editor>
|
48 |
</extension>
|
49 |
|
50 |
|
51 |
</plugin>
|