com.primix.tapestry.parse
Class TokenType

java.lang.Object
  |
  +--com.primix.tapestry.util.Enum
        |
        +--com.primix.tapestry.parse.TokenType
All Implemented Interfaces:
java.io.Serializable

public class TokenType
extends Enum

An Enum of the different possible token types.

Version:
$Id: TokenType.java,v 1.3 2001/05/01 15:48:39 hship Exp $
Author:
Howard Ship
See Also:
TemplateToken, Serialized Form

Field Summary
static TokenType CLOSE
          The closing tag of a JWC element: </jwc>
static TokenType OPEN
          The opening tag of a JWC element: <jwc id="name">
static TokenType TEXT
          Raw HTML text.
 
Methods inherited from class com.primix.tapestry.util.Enum
getEnumerationId, getSingleton, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

TEXT

public static final TokenType TEXT
Raw HTML text.

OPEN

public static final TokenType OPEN
The opening tag of a JWC element: <jwc id="name">

CLOSE

public static final TokenType CLOSE
The closing tag of a JWC element: </jwc>