01: // CommitHandler.java
02: // $Id: CommitHandler.java,v 1.3 1998/01/22 14:22:51 bmahe 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 CommitHandler {
09: abstract void notifyEntry(String filename, int status);
10: }
|