I need to research about UML Tool PlantUML for presentation. And I use plugins plantUML integration
in Intellij, here is my text to draw diagram
class Bird
interface Flying {
{abstract} flying(): void
}
abstract class Animal {
- name: String
+ getName(): String
}
Bird --|> Animal
Bird ..|> Flying
This is my diagram image
How can I generate Java code from the diagram?