1 26 27 package org.objectweb.util.browser.api; 28 29 71 public interface MenuItem 72 { 73 74 75 public static final int ENABLED_STATUS = 1; 76 77 78 public static final int DISABLED_STATUS = ENABLED_STATUS + 1; 79 80 81 public static final int NOT_VISIBLE_STATUS = DISABLED_STATUS + 1; 82 83 96 public int 97 getStatus(TreeView treeView); 98 99 106 public void 107 actionPerformed(MenuItemTreeView treeView) 108 throws Exception ; 109 110 } 111 | Popular Tags |