View Javadoc

1   /*
2    * Created on 13-nov-2004
3    */
4   package org.hardcode.juf;
5   
6   /***
7    * @author Fernando González Cortés
8    */
9   interface ListenerSupport {
10  
11  	public void addProgressListener(ProgressListener listener);
12  	public void notifyProgress(int progress);
13  
14  	public void notifyFileProgress(int progress);
15  
16  }