KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sourceforge > cvsgrab > web > ViewCvs0_8Interface


1 /*
2  * CVSGrab
3  * Author: Ludovic Claude (ludovicc@users.sourceforge.net)
4  * Distributable under BSD license.
5  * See terms of license at gnu.org.
6  */

7 package net.sourceforge.cvsgrab.web;
8
9 import net.sourceforge.cvsgrab.CVSGrab;
10
11
12
13 /**
14  * Support for ViewCvs 0.8 interfaces to a cvs repository
15  *
16  * @author <a HREF="mailto:ludovicc@users.sourceforge.net">Ludovic Claude</a>
17  * @version $Revision: 1.10 $ $Date: 2005/06/22 23:38:14 $
18  * @created on 11 oct. 2003
19  */

20 public class ViewCvs0_8Interface extends ViewCvsInterface {
21
22     /**
23      * Constructor for ViewCvs0_8Interface
24      */

25     public ViewCvs0_8Interface(CVSGrab grabber) {
26         super(grabber);
27     }
28
29     protected String JavaDoc getVersionMarker() {
30         return "ViewCVS 0.8";
31     }
32
33 }
34
Popular Tags