source: trunk/src/org/expeditee/taskmanagement/SaveStateChangedEventListener.java@ 309

Last change on this file since 309 was 140, checked in by bjn8, 16 years ago

Drag and Drop now supported.
Asynchronous saving and loading now supported

File size: 589 bytes
Line 
1package org.expeditee.taskmanagement;
2
3import java.util.EventListener;
4
5
6/**
7 *
8 * An EventListener for save events.
9 *
10 * @author Brook Novak
11 *
12 */
13public interface SaveStateChangedEventListener extends EventListener {
14
15 /**
16 * Raised whenever a saveable entity has started or is about to start saving
17 *
18 * @param event The event information.
19 */
20 public void saveStarted(SaveStateChangedEvent event);
21
22 /**
23 * Raised whenever a saveable entity has finished saving.
24 *
25 * @param event The event information.
26 */
27 public void saveCompleted(SaveStateChangedEvent event);
28
29}
Note: See TracBrowser for help on using the repository browser.