01: /*
02: * Project: BeautyJ - Customizable Java Source Code Transformer
03: * Class: de.gulden.util.javasource.ProgressTracker
04: * Version: 1.0
05: *
06: * Date: 2002-10-27
07: *
08: * Note: Contains auto-generated Javadoc comments created by BeautyJ.
09: *
10: * This is licensed under the GNU General Public License (GPL)
11: * and comes with NO WARRANTY. See file license.txt for details.
12: *
13: * Author: Jens Gulden
14: * Email: beautyj@jensgulden.de
15: */
16:
17: package de.gulden.util.javasource;
18:
19: /**
20: * A class that implements this can monitor the progress of beautification.
21: * The ProgressTracker gets informed about each new estimation of
22: * the overall items to do and the current number of items already done.
23: *
24: * @author Jens Gulden
25: * @version 1.0
26: */
27: public interface ProgressTracker {
28:
29: // ------------------------------------------------------------------------
30: // --- methods ---
31: // ------------------------------------------------------------------------
32: public void todo(int i);
33:
34: public void done(int i);
35:
36: } // end ProgressTracker
|