Examples of CfmlAttributeDescription


Examples of com.intellij.coldFusion.model.info.CfmlAttributeDescription

           "<div>For more information visit <a href = \"http://livedocs.adobe.com/coldfusion/8/htmldocs/Tags-pt0_01.html\">" +
           "\"http://livedocs.adobe.com/coldfusion/8/htmldocs/Tags-pt0_01.html\"</div>";
  }

  public static String getAttributeDescription(String tagName, String attributeName, Project project) {
    CfmlAttributeDescription af = getAttribute(tagName, attributeName, project);
    if (af == null) {
      return "";
    }
    return af.toString();
  }
View Full Code Here

Examples of com.intellij.coldFusion.model.info.CfmlAttributeDescription

  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;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.