2023-02-05 17:46:02 +01:00
|
|
|
package sousmenuRepresentation;
|
|
|
|
|
|
|
|
import javax.swing.ImageIcon;
|
|
|
|
import javax.swing.JMenu;
|
|
|
|
|
2024-05-25 11:01:18 +02:00
|
|
|
import com.analyseWriter.fenetres.create;
|
|
|
|
|
2023-02-05 17:46:02 +01:00
|
|
|
import action.actInsereInformationMultipleFalse;
|
|
|
|
import action.actInsereInformationMultipleTrue;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
}
|
|
|
|
}
|