}
private Map<String, String> getAnnotationMetaData(JMethod method,
MutableLong bound) throws UnableToCompleteException {
IterationTimeLimit limit = method.getAnnotation(IterationTimeLimit.class);
// noinspection SimplifiableIfStatement
if (limit == null) {
bound.value = getDefaultTimeout();
} else {
bound.value = limit.value();
}
Map<String, String> paramMetaData = new HashMap<String, String>();
JParameter[] params = method.getParameters();