31 lines
824 B
Java
31 lines
824 B
Java
|
package sousmenuRepresentation;
|
||
|
|
||
|
import javax.swing.ImageIcon;
|
||
|
import javax.swing.JMenu;
|
||
|
|
||
|
import action.actSupprimeTitre;
|
||
|
import action.actTitre1;
|
||
|
import action.actTitre2;
|
||
|
import action.actTitre3;
|
||
|
import action.actTitrePrincipal;
|
||
|
import fenetres.create;
|
||
|
|
||
|
/**
|
||
|
* Menu Titre pour le niveau 1.</br>
|
||
|
* @author pabr6
|
||
|
*
|
||
|
*/
|
||
|
public class mnTitreNiveau1 {
|
||
|
public static JMenu menu() {
|
||
|
JMenu mnTitreNiveau1 = new JMenu("Titre");
|
||
|
mnTitreNiveau1.setIcon( new ImageIcon(create.class.getResource("/resources/titremini.png")));
|
||
|
mnTitreNiveau1.add(new actTitrePrincipal());
|
||
|
mnTitreNiveau1.add(new actTitre1());
|
||
|
mnTitreNiveau1.add(new actTitre2());
|
||
|
mnTitreNiveau1.add(new actTitre3());
|
||
|
mnTitreNiveau1.addSeparator();
|
||
|
mnTitreNiveau1.add(new actSupprimeTitre());
|
||
|
return mnTitreNiveau1;
|
||
|
}
|
||
|
}
|