/**
   * @see
   *     org.eclipse.wst.sse.ui.internal.reconcile.DirtyRegionProcessor#install(org.eclipse.jface.text.ITextViewer)
   */
  public void install(ITextViewer textViewer) {
    super.install(textViewer);

    // determine if validation is enabled
    this.fValidationEnabled =
        SSEUIPlugin.getInstance()
            .getPreferenceStore()
            .getBoolean(CommonEditorPreferenceNames.EVALUATE_TEMPORARY_PROBLEMS);
  }
  public ScrolledPageContent(Composite parent, int style) {
    super(parent, style);

    setExpandHorizontal(true);
    setExpandVertical(true);

    fToolkit = SSEUIPlugin.getInstance().getDialogsFormToolkit();

    Composite body = new Composite(this, SWT.NONE);
    body.setFont(parent.getFont());
    setContent(body);
  }
 protected void storeValues() {
   SSEUIPlugin.getDefault().savePluginPreferences();
 }