return tokenizersWithNoGetters;
}
private Set<JClassType> getWithTokenizerEntries() {
WithTokenizers annotation = interfaceType.getAnnotation(WithTokenizers.class);
if (annotation == null) {
return Collections.emptySet();
}
LinkedHashSet<JClassType> rtn = new LinkedHashSet<JClassType>();
for (Class<? extends PlaceTokenizer<?>> tokenizerClass : annotation.value()) {
JClassType tokenizerType = generatorContext.getTypeOracle().findType(
tokenizerClass.getCanonicalName());
if (tokenizerType == null) {
logger.log(TreeLogger.ERROR, String.format(
"Error processing @%s, cannot find type %s",