private static String[] EMPTY_STRING_ARRAY = ArrayUtil.EMPTY_STRING_ARRAY;
@NotNull
public static String[] getAttributeValues(String tagName, String attributeName, Project project) {
CfmlAttributeDescription attribute = getAttribute(tagName, attributeName, project);
if (attribute != null) {
String[] values = attribute.getValues();
return values != null ? values : EMPTY_STRING_ARRAY;
}
return EMPTY_STRING_ARRAY;
}