package sousmenuRepresentation; import javax.swing.ImageIcon; import javax.swing.JMenu; import action.actInsereInformationFalse; import action.actInsereInformationTrue; import fenetres.create; /** * Insertion de l'information du node.
* @author pabr6 * */ public class mnInsereInformation { public static JMenu menu() { JMenu mnInsereInformation = new JMenu("Insère l'information contenu du node"); mnInsereInformation.setIcon( new ImageIcon(create.class.getResource("/resources/informationmini.png"))); mnInsereInformation.add(new actInsereInformationTrue()); mnInsereInformation.add(new actInsereInformationFalse()); return mnInsereInformation; } }