return af.toString();
}
@Nullable
public static CfmlAttributeDescription getAttribute(String tagName, String attributeName, Project project) {
CfmlTagDescription tagDescription = CfmlLangInfo.getInstance(anyProject(project)).getTagAttributes().get(tagName);
if (tagDescription == null) return null;
final Collection<CfmlAttributeDescription> attributesCollection = tagDescription.getAttributes();
for (CfmlAttributeDescription af : attributesCollection) {
if (af.acceptName(attributeName)) {
return af;
}
}