01 /*
02 * MutableBoolean.java - A mutable wrapper for int, so you can return
03 * integer values via a method parameter
04 *
05 * Copyright (c) 1995-2010, The University of Sheffield. See the file
06 * COPYRIGHT.txt in the software or at http://gate.ac.uk/gate/COPYRIGHT.txt
07 *
08 * This file is part of GATE (see http://gate.ac.uk/), and is free
09 * software, licenced under the GNU Library General Public License,
10 * Version 2, June 1991 (in the distribution as file licence.html,
11 * and also available at http://gate.ac.uk/gate/licence.html).
12 *
13 * Hamish Cunningham, 30/09/98
14 *
15 * $Id: MutableBoolean.java 12006 2009-12-01 17:24:28Z thomas_heitz $
16 */
17
18
19 package gate.jape;
20
21
22 /**
23 * A mutable wrapper for bool, so you can return
24 * bool values via a method parameter. If public data members bother you
25 * I suggest you get a hobby, or have more sex or something.
26 */
27 public class MutableBoolean
28 {
29 /** Debug flag */
30 private static final boolean DEBUG = false;
31
32 public boolean value = false;
33
34 } // class MutableBoolean
|