Java code to include Author details in CVS

Hi,I have Eclipse 3.0 configured with CVS. I am not able to recall teh Java code which inserts author name, date etc at the time of check in.Please if someone is already working in the same scenario, let me know asap.Thanks in advance.
[263 byte] By [DarkestSky2005a] at [2007-10-2 1:47:42]
# 1
There is no Java code for that. For CVS tags, look at the CVS documentation.
CeciNEstPasUnProgrammeura at 2007-7-15 19:28:51 > top of Java-index,Java Essentials,New To Java...
# 2

You just need to insert CVS tags somewhere in your comments. A good place is at the start of each class, e.g.:

/**

* This is my superb class that does everything including making my laundry ...

*

* @version $Revision: $ ($Date: $)

* @author $Author: $

*/

The CVS tags "$...$" will automatically be extended/updated when you check in the file. For all CVS keywords, see http://ximbiot.com/cvs/wiki/index.php?title=CVS--Concurrent_Versions_System_v1.12.12.1:_Keyword_substitution

MartinHilperta at 2007-7-15 19:28:51 > top of Java-index,Java Essentials,New To Java...
# 3
Thanx a Bunch ! That helped :D
DarkestSky2005a at 2007-7-15 19:28:51 > top of Java-index,Java Essentials,New To Java...