}
private void findTitle(JClassType proxyInterface)
throws UnableToCompleteException {
presenterTitleMethod = presenterInspector.findPresenterTitleMethod();
Title titleAnnotation = proxyInterface.getAnnotation(Title.class);
if (titleAnnotation != null) {
title = titleAnnotation.value();
}
if (presenterTitleMethod != null && title != null) {
logger.log(TreeLogger.ERROR, String.format(
"The proxy for '%s' is annotated with @' +%s and its presenter has a method annotated with @%s. " +
"Only once can be used.", presenterInspector.getPresenterClassName(),