forked from nbourdi/PlantUML-VP-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
46 lines (45 loc) · 1.33 KB
/
plugin.xml
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
<plugin
id="plugins.plantUML"
name="PlantUML Support"
description="Import from / Export to PlantUML"
provider="NataliaSoftlabNtua"
class="plugins.plantUML.PlantUML"
version="1.0.0">
<actionSets>
<actionSet id="plugins.plantUML.actionset">
<action
id="ImportAction"
actionType="generalAction"
label="PlantUML..."
tooltip="PlantUML..."
style="normal"
icon="icons/puml-icon.png"
ribbonPath="Project/Import/XML">
<actionController
class="plugins.plantUML.actions.PlantUMLImportController"/>
</action>
<action
id="ExportAction"
actionType="generalAction"
label="PlantUML..."
tooltip="PlantUML..."
style="normal"
icon="icons/puml-icon.png"
ribbonPath="Project/Export/XML">
<actionController
class="plugins.plantUML.actions.PlantUMLExportController"/>
</action>
<action
id="ExportActiveAction"
actionType="generalAction"
label="Active Diagram as PlantUML..."
tooltip="Active Diagram as PlantUML..."
style="normal"
icon="icons/puml-icon.png"
ribbonPath="Project/Export/XML">
<actionController
class="plugins.plantUML.actions.PlantUMLExportActiveController"/>
</action>
</actionSet>
</actionSets>
</plugin>