* @param partId
* @param input
*/
public boolean showContentPart(String partId, String input) {
// Get the IntroStandbyContentPart that maps to the given partId.
IntroStandbyContentPart standbyPartContent = ExtensionPointManager
.getInst().getSharedConfigExtensionsManager()
.getStandbyPart(partId);
if (standbyPartContent != null) {
String standbyContentClassName = standbyPartContent.getClassName();
String pluginId = standbyPartContent.getPluginId();
Object standbyContentObject = ModelLoaderUtil.createClassInstance(
pluginId, standbyContentClassName);
if (standbyContentObject instanceof IStandbyContentPart) {
IStandbyContentPart contentPart = (IStandbyContentPart) standbyContentObject;