private void logWarning(String message, Object source, Saveable model) {
// create a new exception
AssertionFailedException assertionFailedException = new AssertionFailedException("unknown saveable: " + model //$NON-NLS-1$
+ " from part: " + source); //$NON-NLS-1$
// record the current stack trace to help with debugging
assertionFailedException.fillInStackTrace();
WorkbenchPlugin.log(StatusUtil.newStatus(IStatus.WARNING, message,
assertionFailedException));
}
/**