The following document contains the results of PMD's CPD 6.0.1.
| File | Line |
|---|---|
| de/tu_clausthal/in/mec/modeling/testLexer.java | 31 |
| de/tu_clausthal/in/mec/modeling/testParser.java | 25 |
};
private static final String[] _LITERAL_NAMES = {
null, "'a'"
};
private static final String[] _SYMBOLIC_NAMES = {
};
public static final Vocabulary VOCABULARY = new VocabularyImpl(_LITERAL_NAMES, _SYMBOLIC_NAMES);
/**
* @deprecated Use {@link #VOCABULARY} instead.
*/
@Deprecated
public static final String[] tokenNames;
static {
tokenNames = new String[_SYMBOLIC_NAMES.length];
for (int i = 0; i < tokenNames.length; i++) {
tokenNames[i] = VOCABULARY.getLiteralName(i);
if (tokenNames[i] == null) {
tokenNames[i] = VOCABULARY.getSymbolicName(i);
}
if (tokenNames[i] == null) {
tokenNames[i] = "<INVALID>";
}
}
}
@Override
@Deprecated
public String[] getTokenNames() {
return tokenNames;
}
@Override
public Vocabulary getVocabulary() {
return VOCABULARY;
} | |