From d149a496d6d59502196cd4613be35e20edb0199c Mon Sep 17 00:00:00 2001 From: "timeless%mozdev.org" Date: Sun, 10 Sep 2006 09:50:13 +0000 Subject: [PATCH] Initial test of JavaDoc git-svn-id: svn://10.0.0.236/trunk@209630 18797224-902f-48f8-a5cc-f745e15eee43 --- .../lxr/tests/syntax-highlighting/jdoc.java | 38 +++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 mozilla/webtools/lxr/tests/syntax-highlighting/jdoc.java diff --git a/mozilla/webtools/lxr/tests/syntax-highlighting/jdoc.java b/mozilla/webtools/lxr/tests/syntax-highlighting/jdoc.java new file mode 100644 index 00000000000..ed978297779 --- /dev/null +++ b/mozilla/webtools/lxr/tests/syntax-highlighting/jdoc.java @@ -0,0 +1,38 @@ +/* ***** BEGIN LICENSE BLOCK ***** + * ***** END LICENSE BLOCK ***** */ + +package org.bugzilla.landfill.mxr; + +import java.io.*; + + +/** + *

+ * This interface is similar to nsISupports. + *

+ * + * @see Mozilla#initEmbedding + * @see Mozilla#initXPCOM + * @see + * nsISupports + */ +public interface IMXRTestSupports { + + /** + * Blah + * + * @param interface_id the interface + * @param out_result this is the result + * + * The following is gibberish for testing mxr's cross reference + * + */ + void QueryInterface(nsid interface_id, [out,QIResult] out_result); +} + +