mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-13 08:56:29 +00:00
include missing clause
This commit is contained in:
parent
2b337ac940
commit
1f2b3980e6
@ -131,6 +131,10 @@ public class CommandHideShowByGender extends SingleLineCommand2<UmlDiagram> {
|
|||||||
gender = EntityGenderUtils.byEntityType(LeafType.ABSTRACT_CLASS);
|
gender = EntityGenderUtils.byEntityType(LeafType.ABSTRACT_CLASS);
|
||||||
} else if (arg1.equalsIgnoreCase("annotation")) {
|
} else if (arg1.equalsIgnoreCase("annotation")) {
|
||||||
gender = EntityGenderUtils.byEntityType(LeafType.ANNOTATION);
|
gender = EntityGenderUtils.byEntityType(LeafType.ANNOTATION);
|
||||||
|
} else if (arg1.equalsIgnoreCase("protocol")) {
|
||||||
|
gender = EntityGenderUtils.byEntityType(LeafType.PROTOCOL);
|
||||||
|
} else if (arg1.equalsIgnoreCase("struct")) {
|
||||||
|
gender = EntityGenderUtils.byEntityType(LeafType.STRUCT);
|
||||||
} else if (arg1.startsWith("<<")) {
|
} else if (arg1.startsWith("<<")) {
|
||||||
gender = EntityGenderUtils.byStereotype(arg1);
|
gender = EntityGenderUtils.byStereotype(arg1);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user