FileDocCategorySizeDatePackage
HTMLParserConstants.javaAPI DocExample1401Sun Aug 10 08:46:36 BST 2003org.apache.lucene.demo.html

HTMLParserConstants.java

/* Generated By:JavaCC: Do not edit this line. HTMLParserConstants.java */
package org.apache.lucene.demo.html;

public interface HTMLParserConstants {

  int EOF = 0;
  int TagName = 1;
  int DeclName = 2;
  int Comment1 = 3;
  int Comment2 = 4;
  int Word = 5;
  int LET = 6;
  int NUM = 7;
  int Entity = 8;
  int Space = 9;
  int SP = 10;
  int Punct = 11;
  int ArgName = 12;
  int ArgEquals = 13;
  int TagEnd = 14;
  int ArgValue = 15;
  int ArgQuote1 = 16;
  int ArgQuote2 = 17;
  int Quote1Text = 19;
  int CloseQuote1 = 20;
  int Quote2Text = 21;
  int CloseQuote2 = 22;
  int CommentText1 = 23;
  int CommentEnd1 = 24;
  int CommentText2 = 25;
  int CommentEnd2 = 26;

  int DEFAULT = 0;
  int WithinTag = 1;
  int AfterEquals = 2;
  int WithinQuote1 = 3;
  int WithinQuote2 = 4;
  int WithinComment1 = 5;
  int WithinComment2 = 6;

  String[] tokenImage = {
    "<EOF>",
    "<TagName>",
    "<DeclName>",
    "\"<!--\"",
    "\"<!\"",
    "<Word>",
    "<LET>",
    "<NUM>",
    "<Entity>",
    "<Space>",
    "<SP>",
    "<Punct>",
    "<ArgName>",
    "\"=\"",
    "<TagEnd>",
    "<ArgValue>",
    "\"\\\'\"",
    "\"\\\"\"",
    "<token of kind 18>",
    "<Quote1Text>",
    "<CloseQuote1>",
    "<Quote2Text>",
    "<CloseQuote2>",
    "<CommentText1>",
    "\"-->\"",
    "<CommentText2>",
    "\">\"",
  };

}