// Check parsers for tool tips first.
String text = null;
URL imageBase = null;
if (parserManager!=null) {
ToolTipInfo info = parserManager.getToolTipText(e);
if (info!=null) { // Should always be true
text = info.getToolTipText(); // May be null
imageBase = info.getImageBase(); // May be null
}
}
if (text==null) {
text = super.getToolTipText(e);
}