Examples of VhdlOutlineElement


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

          // ULTRANO
          //results+=element.getLongName()+"\n";
          results+=element.getFullSourceCode();
        }
      } else {
        VhdlOutlineElement component1 = (VhdlOutlineElement) component;
        String componentName = component1.getTypePart1();
        OutlineElement componentDef = searchComponent(doc,
            componentName);
        String signalType = searchSignalType(componentDef, signalName);
        results += signalType;
      }
View Full Code Here

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

   * @param Type element's type
   * @return
   */
  protected String convertToString(OutlineElement element){
    if (element instanceof VhdlOutlineElement) {
      VhdlOutlineElement vhdlElement = (VhdlOutlineElement) element;
      return vhdlElement.getShortName();
    }
    //if not a vhdl element, something must be very wrong
    return "??";     
  }
View Full Code Here

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

   * @param type Type string
   * @return Image name to be used for this tye
   */
  protected String getImageNameForType(OutlineElement element){
    if (element instanceof VhdlOutlineElement) {
      VhdlOutlineElement vhdlElement = (VhdlOutlineElement) element;
      return vhdlElement.GetImageName();
    }
    //if not a vhdl element, something must be very wrong
    return OBJ_IMAGE;
  }
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.