String decorateText(String text, Object element) {
try {
//Internal decorator might be null so be prepared
ILabelDecorator currentDecorator = internalGetDecorator();
if (currentDecorator != null) {
return currentDecorator.decorateText(text, element);
}
} catch (CoreException exception) {
handleCoreException(exception);
}
return null;