mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-11 00:00:58 +00:00
Merge pull request #1057 from bobjacobsen/bj-add-protocol-struct
Include clause overlooked in PR1028
This commit is contained in:
commit
17a517eaa5
@ -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.equalsIgnoreCase("exception")) {
|
} else if (arg1.equalsIgnoreCase("exception")) {
|
||||||
gender = EntityGenderUtils.byEntityType(LeafType.EXCEPTION);
|
gender = EntityGenderUtils.byEntityType(LeafType.EXCEPTION);
|
||||||
} else if (arg1.startsWith("<<")) {
|
} else if (arg1.startsWith("<<")) {
|
||||||
|
Loading…
Reference in New Issue
Block a user