use of com.intellij.lang.jvm.JvmAnnotation in project azure-tools-for-java by Microsoft.
the class FunctionUtils method parseAnnotations.
private static List<Binding> parseAnnotations(final Project project, JvmAnnotation[] annotations) throws AzureExecutionException {
final List<Binding> bindings = new ArrayList<>();
for (final JvmAnnotation annotation : annotations) {
final Binding binding = getBinding(project, annotation);
if (binding != null) {
Log.debug("Adding binding: " + binding.toString());
bindings.add(binding);
}
}
return bindings;
}
Aggregations