1 11 package org.eclipse.ui.texteditor.spelling; 12 13 import org.eclipse.swt.widgets.Composite; 14 import org.eclipse.swt.widgets.Control; 15 16 17 28 public interface ISpellingPreferenceBlock { 29 30 36 Control createControl(Composite parent); 37 38 45 void initialize(IPreferenceStatusMonitor statusMonitor); 46 47 52 void setEnabled(boolean enabled); 53 54 72 boolean canPerformOk(); 73 74 79 void performOk(); 80 81 86 void performDefaults(); 87 88 93 void performRevert(); 94 95 99 void dispose(); 100 101 } 102 | Popular Tags |