01 /*
02 * Copyright (c) 1995-2010, The University of Sheffield. See the file
03 * COPYRIGHT.txt in the software or at http://gate.ac.uk/gate/COPYRIGHT.txt
04 *
05 * This file is part of GATE (see http://gate.ac.uk/), and is free
06 * software, licenced under the GNU Library General Public License,
07 * Version 2, June 1991 (in the distribution as file licence.html,
08 * and also available at http://gate.ac.uk/gate/licence.html).
09 *
10 * HepTag was originally written by Mark Hepple, this version contains
11 * modifications by Valentin Tablan and Niraj Aswani.
12 *
13 * $Id: Rule_UNRESTRICTED.java 12006 2009-12-01 17:24:28Z thomas_heitz $
14 */
15
16 package hepple.postag.rules;
17
18 import hepple.postag.*;
19
20
21 /**
22 * Title: HepTag
23 * Description: Mark Hepple's POS tagger
24 * Copyright: Copyright (c) 2001
25 * Company: University of Sheffield
26 * @author Mark Hepple
27 * @version 1.0
28 */
29
30 public class Rule_UNRESTRICTED extends Rule {
31
32 public Rule_UNRESTRICTED() {
33 }
34
35 public boolean checkContext(POSTagger tagger) {
36 return true;
37 }
38 }
|