super(finder);
}
public RemoveMethodMetaData create(Method method)
{
Remove remove = finder.getAnnotation(method, Remove.class);
if(remove == null)
return null;
RemoveMethodMetaData metaData = new RemoveMethodMetaData();
NamedMethodMetaData beanMethod = new NamedMethodMetaData();
beanMethod.setMethodName(method.getName());
metaData.setBeanMethod(beanMethod);
metaData.setRetainIfException(remove.retainIfException());
MethodParametersMetaData methodParams = ProcessorUtils.getMethodParameters(method);
beanMethod.setMethodParams(methodParams);
return metaData;