KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > fr > jayasoft > ivy > util > CopyProgressListener


1 /*
2  * This file is subject to the license found in LICENCE.TXT in the root directory of the project.
3  *
4  * #SNAPSHOT#
5  */

6 package fr.jayasoft.ivy.util;
7
8 /**
9  * Listen to copy progression
10  */

11 public interface CopyProgressListener {
12     void start(CopyProgressEvent evt);
13     void progress(CopyProgressEvent evt);
14     void end(CopyProgressEvent evt);
15 }
16
Popular Tags