01: // StatusHandler.java
02: // $Id: StatusHandler.java,v 1.2 2003/06/06 14:21:11 ylafon Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1997.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.cvs;
07:
08: abstract class StatusHandler implements CVS {
09:
10: // for parser, notify that a new cvs entry is there
11: // filename, revision and sticky options (for now)
12: abstract void notifyEntry(String filename, String revision,
13: String st_opt);
14:
15: }
|