throw new UnableToCompleteException();
}
desc.eventFullName = eventType.getQualifiedSourceName();
// Make sure the eventType has a static getType method
JMethod getTypeMethod = eventType.findMethod("getType", new JType[0]);
if (getTypeMethod == null || !getTypeMethod.isStatic()
|| getTypeMethod.getParameters().length != 0) {
logger.log(TreeLogger.ERROR, "In presenter " + presenterClassName
+ ", method " + desc.functionName + " annotated with @"
+ ProxyEvent.class.getSimpleName() + ". The event class "