|
RhsAction |
|
1 /* 2 * RhsAction.java 3 * 4 * Copyright (c) 1998-2001, The University of Sheffield. 5 * 6 * This file is part of GATE (see http://gate.ac.uk/), and is free 7 * software, licenced under the GNU Library General Public License, 8 * Version 2, June 1991 (in the distribution as file licence.html, 9 * and also available at http://gate.ac.uk/gate/licence.html). 10 * 11 * Hamish, 30/7/98 12 * 13 * $Id: RhsAction.java,v 1.6 2001/04/06 17:09:49 hamish Exp $ 14 */ 15 16 package gate.jape; 17 import gate.*; 18 import java.util.Map; 19 import java.io.*; 20 21 /** An interface that defines what the action classes created 22 * for RightHandSides look like. 23 */ 24 public interface RhsAction extends Serializable { 25 26 public void doit(Document doc, AnnotationSet annotations, Map bindings) 27 throws JapeException; 28 29 } // RhsAction 30
|
RhsAction |
|