Clover coverage report - Code Coverage for hivemind release 1.0-beta-2
Coverage timestamp: Sun Aug 1 2004 14:03:45 EDT
file stats: LOC: 78   Methods: 0
NCLOC: 56   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
SimpleDataLanguageParserConstants.java - - - -
coverage
 1   
 /* Generated By: SimpleDataLanguageParser.jj,v 1.4 2004/07/16 23&JavaCC: Do not edit this line. SimpleDataLanguageParserConstants.java */
 2   
 //  Copyright 2004 The Apache Software Foundation
 3   
 //
 4   
 // Licensed under the Apache License, Version 2.0 (the "License");
 5   
 // you may not use this file except in compliance with the License.
 6   
 // You may obtain a copy of the License at
 7   
 //
 8   
 //     http://www.apache.org/licenses/LICENSE-2.0
 9   
 //
 10   
 // Unless required by applicable law or agreed to in writing, software
 11   
 // distributed under the License is distributed on an "AS IS" BASIS,
 12   
 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13   
 // See the License for the specific language governing permissions and
 14   
 // limitations under the License.
 15   
 
 16   
 ///CLOVER:OFF
 17   
 package org.apache.hivemind.sdl.parser;
 18   
 
 19   
 public interface SimpleDataLanguageParserConstants {
 20   
 
 21   
   int EOF = 0;
 22   
   int NUMERIC_LITERAL = 5;
 23   
   int SIMPLE_ID = 6;
 24   
   int COMPLEX_ID = 7;
 25   
   int SEGMENTED_ID = 8;
 26   
   int QUOTED_LITERAL = 9;
 27   
   int EXTENDED_LITERAL = 10;
 28   
   int SYMBOL = 11;
 29   
   int DIGIT = 12;
 30   
   int SIGN = 13;
 31   
   int OPAREN = 14;
 32   
   int CPAREN = 15;
 33   
   int OBRACE = 16;
 34   
   int CBRACE = 17;
 35   
   int EQ = 18;
 36   
   int QUOTE = 19;
 37   
   int DOT = 20;
 38   
   int COLON = 21;
 39   
 
 40   
   int DEFAULT = 0;
 41   
   int EXTRACTING_QUOTED_LITERAL = 1;
 42   
   int SINGLE_LINE_COMMENT = 2;
 43   
   int MULTILINE_COMMENT = 3;
 44   
 
 45   
   String[] tokenImage = {
 46   
     "<EOF>",
 47   
     "\" \"",
 48   
     "\"\\t\"",
 49   
     "\"\\n\"",
 50   
     "\"\\r\"",
 51   
     "<NUMERIC_LITERAL>",
 52   
     "<SIMPLE_ID>",
 53   
     "<COMPLEX_ID>",
 54   
     "<SEGMENTED_ID>",
 55   
     "<QUOTED_LITERAL>",
 56   
     "<EXTENDED_LITERAL>",
 57   
     "<SYMBOL>",
 58   
     "<DIGIT>",
 59   
     "<SIGN>",
 60   
     "\"(\"",
 61   
     "\")\"",
 62   
     "\"{\"",
 63   
     "\"}\"",
 64   
     "\"=\"",
 65   
     "\"\\\"\"",
 66   
     "\".\"",
 67   
     "\":\"",
 68   
     "\"//\"",
 69   
     "\"/*\"",
 70   
     "\"\\\"\"",
 71   
     "<token of kind 25>",
 72   
     "<token of kind 26>",
 73   
     "\"*/\"",
 74   
     "<token of kind 28>",
 75   
   };
 76   
 
 77   
 }
 78