GateApplication.java |
1 /* 2 * Copyright (c) 1998-2005, 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 * Mike Dowman 17/9/2004 10 * 11 * $Id: GateApplication.java,v 1.2 2005/01/11 13:51:37 ian Exp $ */ 12 package gate.util.persistence; 13 14 /** 15 * This class is used simply to pair together the URL list and an object 16 * itself so that they can be serialized as a single XML object. 17 */ 18 public class GateApplication { 19 Object urlList; 20 Object application; 21 } 22