Skip to content

Commit 3a8b5b5

Browse files
authored
Merge pull request nbourdi#1 from nbourdi/main
Main
2 parents 7473f61 + 58f5df3 commit 3a8b5b5

File tree

107 files changed

+8746
-5478
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

107 files changed

+8746
-5478
lines changed

.classpath

-30
This file was deleted.

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/.settings/
2+
/.idea/
3+
plugins.plantUML.eml
4+
plugins.plantUML.iml
5+
.classpath
6+
.project
7+
classes

.project

-17
This file was deleted.

.settings/org.eclipse.core.resources.prefs

-2
This file was deleted.

.settings/org.eclipse.jdt.core.prefs

-12
This file was deleted.

README.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# A Visual Paradigm plugin for PlantUML import and export
2+
3+
## Supported Diagram Types
4+
5+
The plugin currently supports conversion from/to:
6+
7+
- Class Diagram
8+
- Use Case Diagram
9+
- Sequence Diagram
10+
- Component Diagram
11+
- Deployment Diagram
12+
- State (Machine) diagram
13+
- Activity Diagram (new syntax)
14+
15+
## Installation Guide
16+
17+
To install the plugin into Visual Paradigm:
18+
19+
- Download the `.zip` release
20+
- Launch Visual Paradigm and go to the **Help** tab
21+
- Click **Install Plugin**
22+
23+
- Select **Install from a zip of plugin** and click **Next**
24+
- Choose the downloaded `.zip` folder
25+
- Restart Visual Paradigm
26+
27+
Alternatively, you can manually copy the folder into the `/plugins` directory indicated by the **Install Plugin** dialog and restart the application.

classes/.gitignore

-1
This file was deleted.
-535 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-997 Bytes
Binary file not shown.

lib/plantuml.jar

21.1 MB
Binary file not shown.

plugin.xml

+15-3
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
id="plugins.plantUML"
33
name="PlantUML Support"
44
description="Import from / Export to PlantUML"
5-
provider="Natalia Bourdi"
6-
class="plugins.plantUML.PlantUML">
5+
provider="NataliaSoftlabNtua"
6+
class="plugins.plantUML.PlantUML"
7+
version="1.0.0">
78

89
<actionSets>
910
<actionSet id="plugins.plantUML.actionset">
@@ -14,7 +15,7 @@
1415
tooltip="PlantUML..."
1516
style="normal"
1617
icon="icons/puml-icon.png"
17-
ribbonPath="Project/Import/Visio">
18+
ribbonPath="Project/Import/XML">
1819
<actionController
1920
class="plugins.plantUML.actions.PlantUMLImportController"/>
2021
</action>
@@ -29,6 +30,17 @@
2930
<actionController
3031
class="plugins.plantUML.actions.PlantUMLExportController"/>
3132
</action>
33+
<action
34+
id="ExportActiveAction"
35+
actionType="generalAction"
36+
label="Active Diagram as PlantUML..."
37+
tooltip="Active Diagram as PlantUML..."
38+
style="normal"
39+
icon="icons/puml-icon.png"
40+
ribbonPath="Project/Export/XML">
41+
<actionController
42+
class="plugins.plantUML.actions.PlantUMLExportActiveController"/>
43+
</action>
3244
</actionSet>
3345
</actionSets>
3446
</plugin>

puml_out_dev_1.txt

-57
This file was deleted.

puml_out_dev_2.txt

-81
This file was deleted.

puml_out_dev_3.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)