com.aptana.ide.editor.html.parsing
Class HTMLTagInfo

java.lang.Object
  extended by com.aptana.ide.editor.html.parsing.HTMLTagInfo

public class HTMLTagInfo
extends java.lang.Object

Author:
Kevin Lindsey

Field Summary
static int EMPTY
          Content of tag must be empty
static int END_FORBIDDEN
          The close tag is forbidden
static int END_MASK
          Mask used to isolate the end tag info
static int END_OPTIONAL
          The close tag is optional
static int END_REQUIRED
          The close tag is required
static int UNKNOWN
          tag info not defined
 
Constructor Summary
HTMLTagInfo()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

UNKNOWN

public static final int UNKNOWN
tag info not defined

See Also:
Constant Field Values

END_REQUIRED

public static final int END_REQUIRED
The close tag is required

See Also:
Constant Field Values

END_OPTIONAL

public static final int END_OPTIONAL
The close tag is optional

See Also:
Constant Field Values

END_FORBIDDEN

public static final int END_FORBIDDEN
The close tag is forbidden

See Also:
Constant Field Values

END_MASK

public static final int END_MASK
Mask used to isolate the end tag info

See Also:
Constant Field Values

EMPTY

public static final int EMPTY
Content of tag must be empty

See Also:
Constant Field Values
Constructor Detail

HTMLTagInfo

public HTMLTagInfo()