From 2cdac9dfcb4bcc4bdb81a9b8f8a08489a4ba3676 Mon Sep 17 00:00:00 2001 From: Charlie Groves Date: Wed, 30 Jul 2008 18:16:12 +0000 Subject: [PATCH] Need to include the service class when linking to a listener defined in it. This makes Eclipse happy. Javadoc emits warnings in the current form without the service class, in the new form with . and also with #. I just want to please javadoc, but I don't know how. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5278 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- src/java/com/threerings/presents/tools/marshaller.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/threerings/presents/tools/marshaller.tmpl b/src/java/com/threerings/presents/tools/marshaller.tmpl index befabc4c1..c1f57d496 100644 --- a/src/java/com/threerings/presents/tools/marshaller.tmpl +++ b/src/java/com/threerings/presents/tools/marshaller.tmpl @@ -16,7 +16,7 @@ public class ${name}Marshaller extends InvocationMarshaller { #foreach ($l in $listeners) /** - * Marshalls results to implementations of {@link ${l.name}Listener}. + * Marshalls results to implementations of {@link ${name}Service.${l.name}Listener}. */ public static class ${l.name}Marshaller extends ListenerMarshaller implements ${l.name}Listener