/* Generated By:JavaCC: Do not edit this line. DeploymentParserConstants.java */ /** * This class is part of project that implements Aspectual Components * * Author: Predrag Petkovic, predrag@ccs.neu.edu * Northeastern University * * This parser take as an entry file (or input stream) that contains * Deployment Map of an aspectual component and returns internal representation * of it. */ package edu.neu.ccs.aspects.map; public interface DeploymentParserConstants { int EOF = 0; int SINGLE_LINE_COMMENT = 9; int FORMAL_COMMENT = 10; int MULTI_LINE_COMMENT = 11; int COMPONENT = 13; int APPLICATIONS = 14; int CHARACTER_LITERAL = 15; int STRING_LITERAL = 16; int IDENTIFIER = 17; int LETTER = 18; int DIGIT = 19; int LBRACE = 20; int RBRACE = 21; int COMMA = 22; int SEMICOLOMN = 23; int DOT = 24; int ASSIGN = 25; int STAR = 26; int DEFAULT = 0; int IN_SINGLE_LINE_COMMENT = 1; int IN_FORMAL_COMMENT = 2; int IN_MULTI_LINE_COMMENT = 3; String[] tokenImage = { "", "\" \"", "\"\\t\"", "\"\\n\"", "\"\\r\"", "\"\\f\"", "\"//\"", "", "\"/*\"", "", "\"*/\"", "\"*/\"", "", "\"component\"", "\"applications\"", "", "", "", "", "", "\"{\"", "\"}\"", "\",\"", "\";\"", "\".\"", "\"->\"", "\"*\"", }; }