• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

editor

 
author and deputy
Posts: 3150
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Is there any editor which could update the below information upon saving/quiting,The information is
/*
* @author Balaji Loganathan
* @author <a href="mailto:balaji@balaji.com">Balaji D L</a>
* @version $Id: SampleServlet.java,v 1.5 2001/12/10 12:02:44 geirm Exp $
*/
how you people maintain this information while creating/editing your java files ?
At present i'm using textpad.
Regards
Balaji
[ July 29, 2002: Message edited by: Balaji Loganathan ]
 
Ranch Hand
Posts: 183
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'm guessing you'd like the editor to update the version. The version string you are using here is one recognised by RCS (Revision Control System) and CVS (Concurrent Versioning System) which are both examples of Software Configuration Management tools. The idea with these systems is that you create a repository of files. The repository stores a version history for each file. The 3 most common operations are:
[1] check a file out to modify
[2] check a file in after modifications
[3] export a project to deliver a set of files
The tool is responsible for making sure the $Id$ string in your file is automatically updated on checkout or export to contain the version number related to the file.
Try doing a google search for RCS, CVS, and SCCS for more information of Configuration Management tools...
Hope this helps
[hopeless typos edited]
[ July 29, 2002: Message edited by: Neil Laurance ]
 
Balaji Loganathan
author and deputy
Posts: 3150
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Neil.
Regards
Balaji
 
It's hard to fight evil. The little things, like a nice sandwich, really helps. Right tiny ad?
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic