Cvs Keyword Substitution in Javadoc
its possible to use cvs keywords within javadoc comments.
when you submit your file, cvs fills those placeholders.
but this is only the case for ascii file submission.
with this, cvs comments entered with eclipse or wincvs are
not hidden in the cvs repository. This is possible for placeholders
like author, revision, log comments etc.
this works too in real code:
to generate javadoc class comments:
* characters are embedded and generated in a correkt way.
after 2 commits its like:
when you submit your file, cvs fills those placeholders.
but this is only the case for ascii file submission.
with this, cvs comments entered with eclipse or wincvs are
not hidden in the cvs repository. This is possible for placeholders
like author, revision, log comments etc.
this works too in real code:
private static final String VERSIONCVS = "$Revision$";
to generate javadoc class comments:
......
* @author BGaths
* @version $Revision$
*
* Log:
*
* $Log$
*
*/
public class Suche extends DetailAction {
.....
* characters are embedded and generated in a correkt way.
after 2 commits its like:
*
* @version $Revision: 1.3 $
*
* Log:
*
* $Log: ListeCwf.java,v $
* Revision 1.3 2005/01/19 14:35:12 BGaths
* table header text geändert
*
* Revision 1.2 2005/01/19 10:00:06 BGaths
* erweiterung der Liste, anzeige der Spalten
* fuer vertr.wuerdigOnix, vertr.w.Verlag u. verwertungsrecht
*
*
*/
public class ListeCwf extends ListeAction {

0 Comments:
Kommentar veröffentlichen
<< Home