I want to write an annotation with members in PlantUML. Specifically, I want to describe this Java code in PlantUML:
public @interface Foo {
String bar();
String baz();
}
I tried to write it in PlantUML, but it causes syntax error:
@startuml
annotation Foo {
String bar()
String baz()
}
@enduml
http://www.plantuml.com/plantuml/uml/SoWkIImgAStDuKhCoyilIIp9pCzJSClFLwZcKW22u9AYpBnqXQJ48WrDL84ge40jbqDgNWfGCm00
Can PlantUML support annotations with members? Thanks!
I want to write an annotation with members in PlantUML. Specifically, I want to describe this Java code in PlantUML:
I tried to write it in PlantUML, but it causes syntax error:
http://www.plantuml.com/plantuml/uml/SoWkIImgAStDuKhCoyilIIp9pCzJSClFLwZcKW22u9AYpBnqXQJ48WrDL84ge40jbqDgNWfGCm00
Can PlantUML support annotations with members? Thanks!