Using PlantUML Editor, I'd expect 'hide class' to show a blank picture?
@startuml
class Dummy1 {
+myMethods()
}
class Dummy2 {
+hiddenMethod()
}
class Dummy3 <<Serializable>> {
String name
}
hide class
@enduml
I'm generating a large amount of puml and I'd like to hide everything (e.g. hide class / hide enum) and then only "turn on" (via 'show') what I want to see.
Am I wrong in my understanding of 'hide class'?