{
e.printStackTrace();
}
- toolTipText = (toolTipText == null ? null : JvSwingUtils.wrapTooltip(
- true, toolTipText));
+ toolTipText = (toolTipText == null ? null
+ : (toolTipText.length() > 500 ? JvSwingUtils.wrapTooltip(
+ true, "\"" + toolTipText.subSequence(0, 500)
+ + "...\"") : JvSwingUtils.wrapTooltip(true,
+ toolTipText)));
+
return toolTipText;
}
};
{
e.printStackTrace();
}
- toolTipText = (toolTipText == null ? null : JvSwingUtils.wrapTooltip(
- true, toolTipText));
+ toolTipText = (toolTipText == null ? null
+ : (toolTipText.length() > 500 ? JvSwingUtils.wrapTooltip(
+ true, "\"" + toolTipText.subSequence(0, 500)
+ + "...\"") : JvSwingUtils.wrapTooltip(true,
+ toolTipText)));
return toolTipText;
}
};