1 /*2 * CVSGrab3 * 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 repository15 *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. 200319 */20 public class ViewCvs0_8Interface extends ViewCvsInterface {21 22 /**23 * Constructor for ViewCvs0_8Interface24 */25 public ViewCvs0_8Interface(CVSGrab grabber) {26 super(grabber);27 }28 29 protected String getVersionMarker() {30 return "ViewCVS 0.8";31 }32 33 }34