//////////////////////////////////////////////////////////////////////////////// // Copyright (c) 2007 IBM Corporation. // All rights reserved. This program and the accompanying materials // are made available under the terms of the Eclipse Public License v1.0 // which accompanies this distribution, and is available at // http://www.eclipse.org/legal/epl-v10.html // //Author: Robert Fuhrer (rfuhrer@watson.ibm.com) //////////////////////////////////////////////////////////////////////////////// package org.eclipse.imp.preferences; public interface PreferenceValueParsersym { public final static int Char_a = 1, Char_b = 2, Char_c = 3, Char_d = 4, Char_e = 5, Char_f = 6, Char_g = 7, Char_h = 8, Char_i = 9, Char_j = 10, Char_k = 11, Char_l = 12, Char_m = 13, Char_n = 14, Char_o = 15, Char_p = 16, Char_q = 17, Char_r = 18, Char_s = 19, Char_t = 20, Char_u = 21, Char_v = 22, Char_w = 23, Char_x = 24, Char_y = 25, Char_z = 26, Char__ = 65, Char_A = 27, Char_B = 28, Char_C = 29, Char_D = 30, Char_E = 31, Char_F = 32, Char_G = 33, Char_H = 34, Char_I = 35, Char_J = 36, Char_K = 37, Char_L = 38, Char_M = 39, Char_N = 40, Char_O = 41, Char_P = 42, Char_Q = 43, Char_R = 44, Char_S = 45, Char_T = 46, Char_U = 47, Char_V = 48, Char_W = 49, Char_X = 50, Char_Y = 51, Char_Z = 52, Char_0 = 53, Char_1 = 54, Char_2 = 55, Char_3 = 56, Char_4 = 57, Char_5 = 58, Char_6 = 59, Char_7 = 60, Char_8 = 61, Char_9 = 62, Char_DoubleQuote = 66, Char_SingleQuote = 67, Char_Percent = 68, Char_VerticalBar = 69, Char_Exclamation = 70, Char_AtSign = 71, Char_BackQuote = 72, Char_Tilde = 73, Char_Sharp = 74, Char_DollarSign = 75, Char_Ampersand = 76, Char_Caret = 77, Char_Colon = 63, Char_SemiColon = 78, Char_BackSlash = 79, Char_LeftBrace = 64, Char_RightBrace = 95, Char_LeftBracket = 80, Char_RightBracket = 81, Char_QuestionMark = 82, Char_Comma = 83, Char_Dot = 84, Char_LessThan = 85, Char_GreaterThan = 86, Char_Plus = 87, Char_Minus = 88, Char_Slash = 89, Char_Star = 90, Char_LeftParen = 91, Char_RightParen = 92, Char_Equal = 93, Char_Space = 94, Char_CtlCharNotWS = 97, Char_HT = 98, Char_LF = 99, Char_FF = 100, Char_CR = 101, Char_AfterASCII = 102, Char_EOF = 96; public final static String orderedTerminalSymbols[] = { "", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "Colon", "LeftBrace", "_", "DoubleQuote", "SingleQuote", "Percent", "VerticalBar", "Exclamation", "AtSign", "BackQuote", "Tilde", "Sharp", "DollarSign", "Ampersand", "Caret", "SemiColon", "BackSlash", "LeftBracket", "RightBracket", "QuestionMark", "Comma", "Dot", "LessThan", "GreaterThan", "Plus", "Minus", "Slash", "Star", "LeftParen", "RightParen", "Equal", "Space", "RightBrace", "EOF", "CtlCharNotWS", "HT", "LF", "FF", "CR", "AfterASCII" }; public final static int numTokenKinds = orderedTerminalSymbols.length; public final static boolean isValidForParser = true; }