Steps fieldAnnotation = annotationFrom(aField);
return (fieldAnnotation != null);
}
private static Steps annotationFrom(final Field aField) {
Steps annotationOnField = null;
if (isFieldAnnotated(aField)) {
annotationOnField = aField.getAnnotation(Steps.class);
}
return annotationOnField;
}