* @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;
}