[Jarspy-commits] CVS: JarSpy/src/com/ociweb/jarspy JarProcessingListener.java,NONE,1.1
Status: Beta
Brought to you by:
brown_j
|
From: Jeff B. <br...@us...> - 2002-07-19 00:24:42
|
Update of /cvsroot/jarspy/JarSpy/src/com/ociweb/jarspy
In directory usw-pr-cvs1:/tmp/cvs-serv14043/com/ociweb/jarspy
Added Files:
JarProcessingListener.java
Log Message:
added progress feedback screen
--- NEW FILE: JarProcessingListener.java ---
// JarSpy
// Copyright (c) 2001, 2002 Jeff S. Brown
// This file is part of JarSpy.
//
// JarSpy is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// JarSpy is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with JarSpy; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
package com.ociweb.jarspy;
/**
* JarProcessingListener objects are notified of progress as a
* JarInspector is processing the contents of an archive
*
* @verson $Id: JarProcessingListener.java,v 1.1 2002/07/19 00:24:37 brown_j Exp $
*/
public interface JarProcessingListener {
public void updateJarProcessingProgress(String entry, int pct);
public void finishedProcessingJar();
}
|