1 26 package org.objectweb.util.explorer.swt.api; 27 28 import org.eclipse.swt.widgets.Display; 29 import org.eclipse.swt.widgets.Menu; 30 import org.eclipse.swt.widgets.Shell; 31 import org.eclipse.swt.widgets.Tree; 32 33 41 public interface Explorer { 42 43 44 public static String EXPLORER = "explorer"; 45 46 48 52 public Tree getTree(); 53 54 58 public void setDisplay(Display display); 59 60 64 public void setShell(Shell shell); 65 66 70 public void setMenuBar(Menu menu); 71 72 } 73 | Popular Tags |