*
* @return the unmodified content description from the part (or the empty string if none)
*/
protected final String getRawContentDescription() {
if (part instanceof IWorkbenchPart2) {
IWorkbenchPart2 part2 = (IWorkbenchPart2) part;
return part2.getContentDescription();
}
return ""; //$NON-NLS-1$
}