24 lines
831 B
Java
24 lines
831 B
Java
|
package sousmenuRepresentation;
|
||
|
|
||
|
import javax.swing.ImageIcon;
|
||
|
import javax.swing.JMenu;
|
||
|
|
||
|
import action.actInsereInformationMultipleFalse;
|
||
|
import action.actInsereInformationMultipleTrue;
|
||
|
import fenetres.create;
|
||
|
|
||
|
/**
|
||
|
* Insertion de l'information sur tous les nodes de la page.</br>
|
||
|
* @author pabr6
|
||
|
*
|
||
|
*/
|
||
|
public class mnInsereInformationMultiple {
|
||
|
public static JMenu menu() {
|
||
|
JMenu mnInsereInformationMultiple = new JMenu("Insère les informations contenus de tous les nodes enfants");
|
||
|
mnInsereInformationMultiple.setIcon( new ImageIcon(create.class.getResource("/resources/informationmultiplemini.png")));
|
||
|
mnInsereInformationMultiple.add(new actInsereInformationMultipleTrue());
|
||
|
mnInsereInformationMultiple.add(new actInsereInformationMultipleFalse());
|
||
|
return mnInsereInformationMultiple;
|
||
|
}
|
||
|
}
|