1 26 27 package org.objectweb.util.browser.core.popup; 28 29 30 import org.objectweb.util.browser.api.Entry; 31 import org.objectweb.util.browser.api.MenuItemTreeView; 32 import org.objectweb.util.browser.core.api.MenuItemTreeViewConfiguration; 33 import org.objectweb.util.browser.core.common.DefaultTreeView; 34 import org.objectweb.util.browser.core.common.DynamicTree; 35 36 37 import java.awt.event.ActionEvent ; 38 39 45 public class DefaultMenuItemTreeView 46 extends DefaultTreeView 47 implements MenuItemTreeView, MenuItemTreeViewConfiguration { 48 49 55 protected ActionEvent actionEvent_ = null; 56 57 63 68 public DefaultMenuItemTreeView(DynamicTree tree) { 69 super(tree); 70 } 71 72 public DefaultMenuItemTreeView(DynamicTree tree, Entry entry) { 73 super(tree, entry); 74 } 75 76 82 85 public ActionEvent getActionEvent() { 86 return actionEvent_; 87 } 88 89 95 99 public void setActionEvent(ActionEvent e){ 100 actionEvent_ = e; 101 } 102 103 } 104 | Popular Tags |