1 11 package org.eclipse.jdt.ui.text.folding; 12 13 import org.eclipse.swt.widgets.Composite; 14 import org.eclipse.swt.widgets.Control; 15 16 17 27 public interface IJavaFoldingPreferenceBlock { 28 29 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 } 65 | Popular Tags |