package sousmenuArbre; import javax.swing.JMenu; import action.actCollapseAll; import action.actCollapseNode; import action.actDownNode; import action.actExpandAll; import action.actExpandNode; import action.actUpNode; /** * Menu Arbre.
* @author pabr6 * */ public class mnArbre { public static JMenu menu() { JMenu mnManageTree = new JMenu("Arbre"); mnManageTree.add(new actUpNode()); mnManageTree.add(new actDownNode()); mnManageTree.addSeparator(); mnManageTree.add(new actExpandAll()); mnManageTree.add(new actExpandNode()); mnManageTree.addSeparator(); mnManageTree.add(new actCollapseAll()); mnManageTree.add(new actCollapseNode()); return mnManageTree; } }