1 7 8 9 package com.sun.jmx.snmp.IPAcl; 10 11 interface ParserConstants { 12 13 int EOF = 0; 14 int ACCESS = 7; 15 int ACL = 8; 16 int ASSIGN = 9; 17 int COMMUNITIES = 10; 18 int ENTERPRISE = 11; 19 int HOSTS = 12; 20 int LBRACE = 13; 21 int MANAGERS = 14; 22 int RANGE = 15; 23 int RBRACE = 16; 24 int RO = 17; 25 int RW = 18; 26 int TRAP = 19; 27 int INFORM = 20; 28 int TRAPCOMMUNITY = 21; 29 int INFORMCOMMUNITY = 22; 30 int TRAPNUM = 23; 31 int INTEGER_LITERAL = 24; 32 int DECIMAL_LITERAL = 25; 33 int HEX_LITERAL = 26; 34 int OCTAL_LITERAL = 27; 35 int V6_ADDRESS = 28; 36 int H = 29; 37 int D = 30; 38 int IDENTIFIER = 31; 39 int LETTER = 32; 40 int SEPARATOR = 33; 41 int DIGIT = 34; 42 int CSTRING = 35; 43 int COMMA = 36; 44 int DOT = 37; 45 int MARK = 38; 46 int MASK = 39; 47 48 int DEFAULT = 0; 49 50 String [] tokenImage = { 51 "<EOF>", 52 "\" \"", 53 "\"\\t\"", 54 "\"\\n\"", 55 "\"\\r\"", 56 "<token of kind 5>", 57 "<token of kind 6>", 58 "\"access\"", 59 "\"acl\"", 60 "\"=\"", 61 "\"communities\"", 62 "\"enterprise\"", 63 "\"hosts\"", 64 "\"{\"", 65 "\"managers\"", 66 "\"-\"", 67 "\"}\"", 68 "\"read-only\"", 69 "\"read-write\"", 70 "\"trap\"", 71 "\"inform\"", 72 "\"trap-community\"", 73 "\"inform-community\"", 74 "\"trap-num\"", 75 "<INTEGER_LITERAL>", 76 "<DECIMAL_LITERAL>", 77 "<HEX_LITERAL>", 78 "<OCTAL_LITERAL>", 79 "<V6_ADDRESS>", 80 "<H>", 81 "<D>", 82 "<IDENTIFIER>", 83 "<LETTER>", 84 "<SEPARATOR>", 85 "<DIGIT>", 86 "<CSTRING>", 87 "\",\"", 88 "\".\"", 89 "\"!\"", 90 "\"/\"", 91 }; 92 93 } 94 | Popular Tags |