NodeKind.java
01 /*
02  *  NodeKind.java
03  *  Copyright (c) 1998-2008, The University of Sheffield.
04  *
05  *  This code is from the GATE project (http://gate.ac.uk/) and is free
06  *  software licenced under the GNU General Public License version 3. It is
07  *  distributed without any warranty. For more details see COPYING.txt in the
08  *  top level directory (or at http://gatewiki.sf.net/COPYING.txt).
09  */
10 
11 package gate.yam.translate;
12 
13 /**
14  * The various types of node found during pretty printing.
15  */
16 public enum NodeKind {
17   TITLE, 
18   NULL,
19   SEP,
20   UNIT_CONTENTS,
21   UNIT_SECTION,
22   UNIT_PARA,
23   UNIT_LIST,
24   UNIT_INCLUDE,
25   UNIT_ANCHOR,
26   UNIT_VERBATIM,
27   UNIT_TABLE,
28   WORD
29 // NodeKind