57744226c7
Amélioration sur la vérification. Notamment sur les copiés et les collés.
24 lines
699 B
Java
24 lines
699 B
Java
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.</br>
|
|
* @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;
|
|
}
|
|
}
|