.PLANTUML 文件扩展名
PlantUML File
| 开发者 | 不适用 |
| 受欢迎程度 |
2.6 | 14 票 |
什么是 PLANTUML 文件?
File created by PlantUML, a UML diagram creator used within programs like Sublime Text Editor or programming language like HTML; same as the .PU file; contains code referenced by PlantUML to create diagram images that can be generated as .PNG or .SVG files; creates sequence, use case, class, activity, component, state, and object diagrams.
更多信息
An example of the syntax used by the PLANTUML file for an object diagram:
@startuml
object Chair
object Table
Chair --|> Table : furniture
@enduml
This example would create a diagram of two objects named Chair and Table with a line and arrow pointing from the chair to the table. Also, the word furniture would appear as a label in the middle of the line that connects the two objects. The @startuml line begins the comment and the @enduml line ends the comment.
注: PlantUML is downloaded as a .JAR file, consult the PlantUML link below for how to run the tool.