From fdd2d9a25661b0faba687a168855138dc8ee30fa Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Fri, 20 Feb 2015 18:02:00 +0100 Subject: links to supertypes in Java --- test/data/format/javaSupertype.html | 13 +++++++++++++ test/data/format/javaSupertype.java | 9 +++++++++ 2 files changed, 22 insertions(+) create mode 100644 test/data/format/javaSupertype.html create mode 100644 test/data/format/javaSupertype.java (limited to 'test/data') diff --git a/test/data/format/javaSupertype.html b/test/data/format/javaSupertype.html new file mode 100644 index 00000000..bf56936c --- /dev/null +++ b/test/data/format/javaSupertype.html @@ -0,0 +1,13 @@ + + +test / test.C.Bar + + +test / test / C / Bar
+
+

Bar

+public open class Bar : Foo
+
+
+ + diff --git a/test/data/format/javaSupertype.java b/test/data/format/javaSupertype.java new file mode 100644 index 00000000..96caeb1d --- /dev/null +++ b/test/data/format/javaSupertype.java @@ -0,0 +1,9 @@ +package test; + +class C { + public static class Foo { + } + + public static class Bar extends Foo { + } +} -- cgit