From 12911801f09e186ffe4b5815f488154c51a62417 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Schmelzer?= Date: Sun, 10 Mar 2019 22:06:31 +0100 Subject: [PATCH] enhance indentation class diagram test: abstract class and interface --- test/plantuml-indentation-class-test.el | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/test/plantuml-indentation-class-test.el b/test/plantuml-indentation-class-test.el index c148aff..e4f7327 100644 --- a/test/plantuml-indentation-class-test.el +++ b/test/plantuml-indentation-class-test.el @@ -89,6 +89,14 @@ These code examples are taken from www.plantuml.com" int size() } + abtract class AbstractC { + int size() + } + + interface InterfaceC { + int size() + } + package \"Classic Collections\" #DDDDDD { Object <|-- ArrayList } @@ -229,6 +237,14 @@ class Foo { int size() } +abtract class AbstractC { + int size() +} + +interface InterfaceC { + int size() +} + package \"Classic Collections\" #DDDDDD { Object <|-- ArrayList }