Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

phpstorm, create custom UML diagram

Tags:

phpstorm

uml

PhpStorm has a feature to create UML diagrams based on existing classes

But I need to create and save my own diagrams, that will have objects for not existing classes. For example, I need to create a database diagram and a UML diagram for some classes of new feature.

Can I do it via phpstorm?

like image 807
Victor Mezrin Avatar asked Jun 28 '13 17:06

Victor Mezrin


People also ask

Can IntelliJ generate UML?

IntelliJ IDEA Ultimate allows you to generate UML diagrams. You can use ⌥⇧⌘U (macOS) or Ctrl+Alt+Shift+U (Windows/Linux) to generate a UML diagram for your code which can help you and your team to read and understand the codebase.

How do you create a UML diagram in PlantUML?

Use the PlantUML plugin in Rider to create UML diagrams that can be integrated into your codebase. Start by adding a . puml file. Each new file that PlantUML creates contains example PUML, which is PlantUML's own syntax for creating UML diagrams.

Can PyCharm generate UML?

PyCharm generates a UML diagram for classes and their dependencies.

What is PlantUML used for?

PlantUML is an open-source tool allowing users to create diagrams from a plain text language.


1 Answers

No, going by the Documentation Jetbrains Confluence on UML Diagrams in Phpstorm and this post phpstorm only allows you to create different UML diagram views of your code base, the only model is your code base itself. Thus you cannot have classes just in a diagram.

like image 197
Eashi Avatar answered Sep 29 '22 23:09

Eashi