Please allow to hide clases by stereotype using the "hide" keyword

0 votes
asked Mar 3, 2016 in Closed feature request by anonymous

Please allow to hide classes by stereotype using the "hide" keyword.

Example:

@startuml
hide <<tag>> 
class bob <<tag>>{
}
class joe{
}
@enduml

This would hide the class bob.

1 Answer

0 votes
answered Mar 4, 2016 by plantuml (294,960 points)
selected Jul 8, 2018 by Anthony-Gaudino
 
Best answer

With last beta https://dl.dropboxusercontent.com/u/13064071/plantuml.jar

You can now have:

@startuml
hide <<tag>> 
class bob <<tag>>{
}
class joe{
}
@enduml
 

The result might not be exactly what you are expecting : the class is really "hidden" (there are some space when it should normally be printed).

Tell us what you think about it.

commented Mar 4, 2016 by anonymous
Thank you.
It works.
commented Apr 8, 2019 by anonymous
It doesn't work :(
commented Apr 8, 2019 by plantuml (294,960 points)
Thanks for the feedback.
It should be fixed in last beta http://beta.plantuml.net/plantuml.jar
Tell us if you find other issues!
...