From 2302b5f0e9ade1b723b7a598d65f5449f97b261d Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Tue, 20 Aug 2002 19:34:06 +0000 Subject: [PATCH] Template modifications to support RCS Id string preservation. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1657 542714f4-19e9-0310-aa3c-eee0fc999fb1 --- lib/decoder.tmpl | 6 +++++- lib/dispatcher.tmpl | 6 +++++- lib/marshaller.tmpl | 6 +++++- lib/sender.tmpl | 6 +++++- 4 files changed, 20 insertions(+), 4 deletions(-) diff --git a/lib/decoder.tmpl b/lib/decoder.tmpl index b94366313..44bf8923d 100644 --- a/lib/decoder.tmpl +++ b/lib/decoder.tmpl @@ -1,5 +1,5 @@ // -// $Id: decoder.tmpl,v 1.2 2002/08/14 19:07:48 mdb Exp $ +// [% idstr %] package [% package %]; @@ -9,6 +9,10 @@ import [% import %]; /** * Dispatches calls to a {@link [% name %]Receiver} instance. + * + *

Generated from + * $Id: decoder.tmpl,v 1.3 2002/08/20 19:34:06 mdb Exp $ + * */ public class [% name %]Decoder extends InvocationDecoder { diff --git a/lib/dispatcher.tmpl b/lib/dispatcher.tmpl index 6c8220c79..5cd923ba5 100644 --- a/lib/dispatcher.tmpl +++ b/lib/dispatcher.tmpl @@ -1,5 +1,5 @@ // -// $Id: dispatcher.tmpl,v 1.2 2002/08/14 19:07:48 mdb Exp $ +// [% idstr %] package [% package %]; @@ -9,6 +9,10 @@ import [% import %]; /** * Dispatches requests to the {@link [% name %]Provider}. + * + *

Generated from + * $Id: dispatcher.tmpl,v 1.3 2002/08/20 19:34:06 mdb Exp $ + * */ public class [% name %]Dispatcher extends InvocationDispatcher { diff --git a/lib/marshaller.tmpl b/lib/marshaller.tmpl index f1ba51d8a..0d6b65c36 100644 --- a/lib/marshaller.tmpl +++ b/lib/marshaller.tmpl @@ -1,5 +1,5 @@ // -// $Id: marshaller.tmpl,v 1.2 2002/08/14 19:07:48 mdb Exp $ +// [% idstr %] package [% package %]; @@ -13,6 +13,10 @@ import [% import %]; * on the server. Also provides an implementation of the response listener * interfaces that marshall the response arguments and deliver them back * to the requesting client. + * + *

Generated from + * $Id: marshaller.tmpl,v 1.3 2002/08/20 19:34:06 mdb Exp $ + * */ public class [% name %]Marshaller extends InvocationMarshaller implements [% name %]Service diff --git a/lib/sender.tmpl b/lib/sender.tmpl index c6df2182b..e5c4850e2 100644 --- a/lib/sender.tmpl +++ b/lib/sender.tmpl @@ -1,5 +1,5 @@ // -// $Id: sender.tmpl,v 1.2 2002/08/14 19:07:48 mdb Exp $ +// [% idstr %] package [% package %]; @@ -10,6 +10,10 @@ import [% import %]; /** * Used to issue notifications to a {@link [% name %]Receiver} instance on a * client. + * + *

Generated from + * $Id: sender.tmpl,v 1.3 2002/08/20 19:34:06 mdb Exp $ + * */ public class [% name %]Sender extends InvocationSender {