antsnest.datastructure
Class Constants

java.lang.Object
  extended by antsnest.datastructure.Constants

public class Constants
extends Object

A set of constants to identify types of node

Author:
Chris Clohosy

Field Summary
static int CDATA
          A CDATA node
static int COMMENT
          A comment node
static int ELEMENT
          A type or task node
static int NO_NODE
          No node at all
static int PROJECT
          A project node
static int PROPERTY
          A property node
static int TARGET
          A target node
static int TEXT
          A text node
 
Constructor Summary
Constants()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

COMMENT

public static final int COMMENT
A comment node

See Also:
Constant Field Values

PROPERTY

public static final int PROPERTY
A property node

See Also:
Constant Field Values

ELEMENT

public static final int ELEMENT
A type or task node

See Also:
Constant Field Values

TARGET

public static final int TARGET
A target node

See Also:
Constant Field Values

PROJECT

public static final int PROJECT
A project node

See Also:
Constant Field Values

TEXT

public static final int TEXT
A text node

See Also:
Constant Field Values

CDATA

public static final int CDATA
A CDATA node

See Also:
Constant Field Values

NO_NODE

public static final int NO_NODE
No node at all

See Also:
Constant Field Values
Constructor Detail

Constants

public Constants()