/** @see org.eclipse.epf.common.ui.AbstractPlugin#start(org.osgi.framework.BundleContext) */
  public void start(BundleContext context) throws Exception {
    super.start(context);

    // Initialize the Authoring UI service.
    AuthoringUIService.getInstance().start();
    Logger.SeeLogFileForMoreDetails =
        AuthoringUIResources.editors_MethodElementEditor_saveErrorReason1;
  }
  @Override
  protected void init(BundleContext context) throws Exception {
    super.init(context);

    LibraryViewPrefPage.initDefaults(getDefault().getPreferenceStore());
  }
 /** @see org.eclipse.epf.common.ui.AbstractPlugin#stop(org.osgi.framework.BundleContext) */
 public void stop(BundleContext context) throws Exception {
   super.stop(context);
   plugin = null;
 }