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
This commit is contained in:
Michael Bayne
2002-08-20 19:34:06 +00:00
parent 661e54eaa8
commit 2302b5f0e9
4 changed files with 20 additions and 4 deletions
+5 -1
View File
@@ -1,5 +1,5 @@
// //
// $Id: decoder.tmpl,v 1.2 2002/08/14 19:07:48 mdb Exp $ // [% idstr %]
package [% package %]; package [% package %];
@@ -9,6 +9,10 @@ import [% import %];
/** /**
* Dispatches calls to a {@link [% name %]Receiver} instance. * Dispatches calls to a {@link [% name %]Receiver} instance.
*
* <p> Generated from <code>
* $Id: decoder.tmpl,v 1.3 2002/08/20 19:34:06 mdb Exp $
* </code>
*/ */
public class [% name %]Decoder extends InvocationDecoder public class [% name %]Decoder extends InvocationDecoder
{ {
+5 -1
View File
@@ -1,5 +1,5 @@
// //
// $Id: dispatcher.tmpl,v 1.2 2002/08/14 19:07:48 mdb Exp $ // [% idstr %]
package [% package %]; package [% package %];
@@ -9,6 +9,10 @@ import [% import %];
/** /**
* Dispatches requests to the {@link [% name %]Provider}. * Dispatches requests to the {@link [% name %]Provider}.
*
* <p> Generated from <code>
* $Id: dispatcher.tmpl,v 1.3 2002/08/20 19:34:06 mdb Exp $
* </code>
*/ */
public class [% name %]Dispatcher extends InvocationDispatcher public class [% name %]Dispatcher extends InvocationDispatcher
{ {
+5 -1
View File
@@ -1,5 +1,5 @@
// //
// $Id: marshaller.tmpl,v 1.2 2002/08/14 19:07:48 mdb Exp $ // [% idstr %]
package [% package %]; package [% package %];
@@ -13,6 +13,10 @@ import [% import %];
* on the server. Also provides an implementation of the response listener * on the server. Also provides an implementation of the response listener
* interfaces that marshall the response arguments and deliver them back * interfaces that marshall the response arguments and deliver them back
* to the requesting client. * to the requesting client.
*
* <p> Generated from <code>
* $Id: marshaller.tmpl,v 1.3 2002/08/20 19:34:06 mdb Exp $
* </code>
*/ */
public class [% name %]Marshaller extends InvocationMarshaller public class [% name %]Marshaller extends InvocationMarshaller
implements [% name %]Service implements [% name %]Service
+5 -1
View File
@@ -1,5 +1,5 @@
// //
// $Id: sender.tmpl,v 1.2 2002/08/14 19:07:48 mdb Exp $ // [% idstr %]
package [% package %]; package [% package %];
@@ -10,6 +10,10 @@ import [% import %];
/** /**
* Used to issue notifications to a {@link [% name %]Receiver} instance on a * Used to issue notifications to a {@link [% name %]Receiver} instance on a
* client. * client.
*
* <p> Generated from <code>
* $Id: sender.tmpl,v 1.3 2002/08/20 19:34:06 mdb Exp $
* </code>
*/ */
public class [% name %]Sender extends InvocationSender public class [% name %]Sender extends InvocationSender
{ {