Examples of VhdlSubprogram


Examples of net.sourceforge.veditor.parser.vhdl.VhdlOutlineElementFactory.VhdlSubprogram

    }
    return results;
  }
 
  private String getStringShort(){
    VhdlSubprogram sub = (VhdlSubprogram) m_Element;

    StringBuffer buff = new StringBuffer(sub.getShortName());
    String replaceString;
    VhdlSubprogram.Parameter[] params = sub.getParameters();
    int lastComma = 0;

    if (params.length > 0) {
      buff.append("(");
      for (VhdlSubprogram.Parameter param : params) {       
View Full Code Here

Examples of net.sourceforge.veditor.parser.vhdl.VhdlOutlineElementFactory.VhdlSubprogram

    replaceString = buff.toString();
    return replaceString;
  }
 
  private String getStringTall() {
    VhdlSubprogram sub = (VhdlSubprogram) m_Element;

    StringBuffer buff = new StringBuffer(sub.getShortName());
    String replaceString;
    VhdlSubprogram.Parameter[] params = sub.getParameters();
    int lastComma = 0;

    if (params.length > 0) {
      buff.append("(\n");
      for (VhdlSubprogram.Parameter param : params) {
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.