Package org.fife.ui.autocomplete.ParameterizedCompletion

Examples of org.fife.ui.autocomplete.ParameterizedCompletion.Parameter


    int attrCount = getAttributeCount();
    if (attrCount>0) {
      sb.append("<b>Attributes:</b><br>");
      sb.append("<center><table width='90%'><tr><td>");
      for (int i=0; i<attrCount; i++) {
        Parameter attr = getAttribute(i);
        sb.append("&nbsp;&nbsp;&nbsp;<b>");
        sb.append(attr.getName()!=null ? attr.getName() :
              attr.getType());
        sb.append("</b>&nbsp;");
        String desc = attr.getDescription();
        if (desc!=null) {
          sb.append(desc);
        }
        sb.append("<br>");
      }
View Full Code Here

TOP

Related Classes of org.fife.ui.autocomplete.ParameterizedCompletion.Parameter

Copyright © 2018 www.massapicom. 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.