Coverage Report - org.apache.commons.configuration.plist.PropertyListParserConstants
 
Classes in this File Line Coverage Branch Coverage Complexity
PropertyListParserConstants
N/A
N/A
0
 
 1  
 /* Generated By:JavaCC: Do not edit this line. PropertyListParserConstants.java */
 2  
 package org.apache.commons.configuration.plist;
 3  
 
 4  
 interface PropertyListParserConstants
 5  
 {
 6  
     int EOF = 0;
 7  
     int ARRAY_BEGIN = 5;
 8  
     int ARRAY_END = 6;
 9  
     int ARRAY_SEPARATOR = 7;
 10  
     int DICT_BEGIN = 8;
 11  
     int DICT_END = 9;
 12  
     int DICT_SEPARATOR = 10;
 13  
     int EQUAL = 11;
 14  
     int DATA_START = 12;
 15  
     int DATA_END = 13;
 16  
     int QUOTE = 14;
 17  
     int LETTER = 15;
 18  
     int WHITE = 16;
 19  
     int HEXA = 17;
 20  
     int DATA = 18;
 21  
     int STRING = 19;
 22  
     int QUOTED_STRING = 20;
 23  
     int ESCAPED_QUOTE = 21;
 24  
 
 25  
     int DEFAULT = 0;
 26  
 
 27  
     String[] tokenImage = {
 28  
         "<EOF>",
 29  
         "\" \"",
 30  
         "\"\\t\"",
 31  
         "\"\\n\"",
 32  
         "\"\\r\"",
 33  
         "\"(\"",
 34  
         "\")\"",
 35  
         "\",\"",
 36  
         "\"{\"",
 37  
         "\"}\"",
 38  
         "\";\"",
 39  
         "\"=\"",
 40  
         "\"<\"",
 41  
         "\">\"",
 42  
         "\"\\\"\"",
 43  
         "<LETTER>",
 44  
         "<WHITE>",
 45  
         "<HEXA>",
 46  
         "<DATA>",
 47  
         "<STRING>",
 48  
         "<QUOTED_STRING>",
 49  
         "\"\\\\\\\"\"",
 50  
     };
 51  
 
 52  
 }