source: main/trunk/greenstone3/src/java/org/greenstone/gsdl3/build/ConstructionListener.java@ 31911

Last change on this file since 31911 was 3661, checked in by kjdon, 21 years ago

base classes for collection construction

  • Property svn:keywords set to Author Date Id Revision
File size: 668 bytes
Line 
1package org.greenstone.gsdl3.build;
2
3import java.util.EventListener;
4
5public interface ConstructionListener
6 extends EventListener {
7
8 /** This event handler used to signify that a task has been started */
9 public void processBegun(ConstructionEvent evt);
10 /** This event handler used to signify that a task has been completed */
11 public void processComplete(ConstructionEvent evt);
12 /** This event handler used to send status updates as the task is progressing */
13 public void processStatus(ConstructionEvent evt);
14 /** This event handler used to send any other messages to the listeners */
15 public void message(ConstructionEvent evt);
16}
Note: See TracBrowser for help on using the repository browser.