1 26 27 package org.objectweb.util.explorer.api; 28 29 42 public interface MenuItem 43 { 44 45 46 public static final int ENABLED_STATUS = 1; 47 48 49 public static final int DISABLED_STATUS = ENABLED_STATUS + 1; 50 51 52 public static final int NOT_VISIBLE_STATUS = DISABLED_STATUS + 1; 53 54 67 public int 68 getStatus(TreeView treeView); 69 70 77 public void 78 actionPerformed(MenuItemTreeView treeView) 79 throws Exception ; 80 81 } 82 | Popular Tags |