| AnnotationListener.java |
1 /*
2 * Copyright (c) 1998-2004, The University of Sheffield.
3 *
4 * This file is part of GATE (see http://gate.ac.uk/), and is free
5 * software, licenced under the GNU Library General Public License,
6 * Version 2, June 1991 (in the distribution as file licence.html,
7 * and also available at http://gate.ac.uk/gate/licence.html).
8 *
9 * Kalina Bontcheva 21/10/2001
10 *
11 * $Id: AnnotationListener.java,v 1.2 2004/07/21 17:10:06 akshay Exp $
12 */
13 package gate.event;
14
15 import java.util.EventListener;
16
17 /**
18 * A listener for events fired by an {@link gate.AnnotationSet}
19 * ({@link gate.event.AnnotationSetEvent})
20 */
21 public interface AnnotationListener extends EventListener {
22
23 /**Called when an {@link gate.Annotation} has been updated*/
24 public void annotationUpdated(AnnotationEvent e);
25
26 }