01 package gate.creole.morph;
02
03 /**
04 * <p>Title: </p>
05 * <p>Description: </p>
06 * <p>Copyright: Copyright (c) 2003</p>
07 * <p>Company: </p>
08 * @author not attributable
09 * @version 1.0
10 */
11
12 public class Codes {
13
14 public static final int ERROR_CODE = -4;
15 public static final int STRING_SET_CODE = 0;
16 public static final int CHARACTER_RANGE_CODE = 1;
17 public static final int CHARACTER_SET_CODE = 2;
18
19 public Codes() {
20 }
21
22
23 }
|