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 <service>.<listener> and also with <service>#<listener>. 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
This commit is contained in:
Charlie Groves
2008-07-30 18:16:12 +00:00
parent f0c529bb19
commit 2cdac9dfcb
@@ -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