/******************************************************************************* * Copyright (c) 2015 IBM Corporation and others. * * This program and the accompanying materials * are made available under the terms of the Eclipse Public License 2.0 * which accompanies this distribution, and is available at * https://www.eclipse.org/legal/epl-2.0/ * * SPDX-License-Identifier: EPL-2.0 * * Contributors: * IBM Corporation - initial API and implementation *******************************************************************************/ /* Generated By:JavaCC: Do not edit this line. HTMLParserConstants.java */ package org.apache.lucene.demo.html; public interface HTMLParserConstants { int EOF = 0; int ScriptStart = 1; int TagName = 2; int DeclName = 3; int Comment1 = 4; int Comment2 = 5; int Word = 6; int LET = 7; int NUM = 8; int HEX = 9; int Space = 10; int SP = 11; int Entity = 12; int Punct = 13; int ScriptText = 14; int ScriptEnd = 15; int ArgName = 16; int ArgEquals = 17; int TagEnd = 18; int ArgValue = 19; int ArgQuote1 = 20; int ArgQuote2 = 21; int Quote1Text = 23; int CloseQuote1 = 24; int Quote2Text = 25; int CloseQuote2 = 26; int CommentText1 = 27; int CommentEnd1 = 28; int CommentText2 = 29; int CommentEnd2 = 30; int DEFAULT = 0; int WithinScript = 1; int WithinTag = 2; int AfterEquals = 3; int WithinQuote1 = 4; int WithinQuote2 = 5; int WithinComment1 = 6; int WithinComment2 = 7; String[] tokenImage = { "", //$NON-NLS-1$ "\"", //$NON-NLS-1$ "", //$NON-NLS-1$ "\"\"", //$NON-NLS-1$ "", //$NON-NLS-1$ "\">\"", //$NON-NLS-1$ }; }