1 26 package org.objectweb.util.explorer.interpreter.lib.swt; 27 28 import org.eclipse.swt.SWT; 29 import org.eclipse.swt.widgets.Menu; 30 import org.objectweb.util.explorer.core.common.api.Description; 31 import org.objectweb.util.explorer.swt.lib.DynamicTree; 32 33 41 public class MenuBarInterpreter 42 extends AbstractMenuInterpreter 43 { 44 45 51 57 63 69 72 public Menu getMenu() { 73 return new Menu(DynamicTree.shell_, SWT.DROP_DOWN); 74 } 75 76 79 public Object interprete(Description description, Object params) { 80 throw new RuntimeException ("Not Implemented Yet!"); 82 } 83 } | Popular Tags |