1 26 27 package org.objectweb.util.explorer.core.menu.lib; 28 29 import org.objectweb.util.explorer.api.Entry; 30 import org.objectweb.util.explorer.api.MenuItemTreeView; 31 import org.objectweb.util.explorer.api.Tree; 32 import org.objectweb.util.explorer.core.common.lib.DefaultTreeView; 33 import org.objectweb.util.explorer.core.menu.api.MenuItemTreeViewConfiguration; 34 35 41 public class DefaultMenuItemTreeView 42 extends DefaultTreeView 43 implements MenuItemTreeView, MenuItemTreeViewConfiguration 44 { 45 46 52 protected Object actionEvent_ = null; 53 54 60 public DefaultMenuItemTreeView(Tree tree, Entry current, Entry parent) { 61 super(tree, current, parent); 62 } 63 64 70 73 public Object getEvent() { 74 return actionEvent_; 75 } 76 77 83 87 public void setEvent(Object event){ 88 actionEvent_ = event; 89 } 90 91 } 92 | Popular Tags |