1 11 package org.eclipse.pde.internal.ui.editor.text; 12 13 import org.eclipse.jface.text.DefaultInformationControl; 14 import org.eclipse.swt.widgets.Shell; 15 16 public class PDEDefaultInformationControl extends DefaultInformationControl { 17 18 private boolean fDisposed = false; 19 20 public PDEDefaultInformationControl(Shell parent, int style, IInformationPresenter presenter, String statusFieldText) { 21 super(parent, style, presenter, statusFieldText); 22 } 23 24 27 public void dispose() { 28 fDisposed = true; 29 super.dispose(); 30 } 31 32 public boolean isDisposed() { 33 return fDisposed; 34 } 35 36 } 37 | Popular Tags |