Can't have $Id$ in the template because it will be replaced when the

generated file is checked into CVS by the Id info for the generated file,
thus thwarting our efforts to track which version of the template from
which the generated file was generated.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1665 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-09-06 01:18:25 +00:00
parent e0030c8dfb
commit f84e832581
4 changed files with 3 additions and 17 deletions
-4
View File
@@ -9,10 +9,6 @@ import [% import %];
/**
* 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
{
+2 -4
View File
@@ -9,10 +9,6 @@ import [% import %];
/**
* 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
{
@@ -50,4 +46,6 @@ public class [% name %]Dispatcher extends InvocationDispatcher
super.dispatchRequest(source, methodId, args);
}
}
// Generated on [% genstamp %].
}
+1 -5
View File
@@ -13,10 +13,6 @@ 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.
*
* <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
implements [% name %]Service
@@ -75,5 +71,5 @@ public class [% name %]Marshaller extends InvocationMarshaller
}
[% END -%]
// Class file generated on [% genstamp %].
// Generated on [% genstamp %].
}
-4
View File
@@ -10,10 +10,6 @@ import [% import %];
/**
* Used to issue notifications to a {@link [% name %]Receiver} instance on a
* 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
{