From 649217db5c05dbb466371870a2761f9c32b086f0 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Fri, 20 Feb 2015 19:15:11 +0100 Subject: process @see tags in javadoc --- test/data/format/javaSeeTag.html | 27 +++++++++++++++++++++++++++ test/data/format/javaSeeTag.java | 8 ++++++++ 2 files changed, 35 insertions(+) create mode 100644 test/data/format/javaSeeTag.html create mode 100644 test/data/format/javaSeeTag.java (limited to 'test/data') diff --git a/test/data/format/javaSeeTag.html b/test/data/format/javaSeeTag.html new file mode 100644 index 00000000..392b1d2e --- /dev/null +++ b/test/data/format/javaSeeTag.html @@ -0,0 +1,27 @@ + + +test / test.Foo + + +test / test / Foo
+
+

Foo

+open class Foo : Any
+

+See Also
+#bar
+
+
+

Functions

+ + + + + + + +
+bar +public open fun bar(): Unit
+ + diff --git a/test/data/format/javaSeeTag.java b/test/data/format/javaSeeTag.java new file mode 100644 index 00000000..e0b95f11 --- /dev/null +++ b/test/data/format/javaSeeTag.java @@ -0,0 +1,8 @@ +package test; + +/** + * @see #bar + */ +class Foo { + public void bar() {} +} \ No newline at end of file -- cgit