1 11 12 package org.eclipse.jdt.internal.ui.preferences; 13 14 import org.eclipse.swt.widgets.Composite; 15 import org.eclipse.swt.widgets.Control; 16 17 18 28 public interface IPreferenceConfigurationBlock { 29 30 36 Control createControl(Composite parent); 37 38 42 void initialize(); 43 44 49 void performOk(); 50 51 56 void performDefaults(); 57 58 62 void dispose(); 63 } 64 | Popular Tags |