Package org.eclipse.ui.texteditor.spelling

Examples of org.eclipse.ui.texteditor.spelling.ISpellingPreferenceBlock.dispose()


  public void dispose() {
    for (Iterator it= fProviderPreferences.values().iterator(); it.hasNext();) {
      final ISpellingPreferenceBlock block= (ISpellingPreferenceBlock) it.next();
      ISafeRunnable runnable= new ISafeRunnable() {
        public void run() throws Exception {
          block.dispose();
        }
        public void handleException(Throwable x) {
        }
      };
      SafeRunner.run(runnable);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.