2023-02-05 16:09:48 +01:00
|
|
|
package sousmenuEvaluation;
|
|
|
|
|
|
|
|
import javax.swing.ImageIcon;
|
|
|
|
import javax.swing.JMenu;
|
|
|
|
|
2023-02-05 17:46:02 +01:00
|
|
|
import action.actEvalPiedPageActive;
|
|
|
|
import action.actEvalPiedPageActiveNon;
|
2023-02-05 16:09:48 +01:00
|
|
|
import fenetres.create;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Menu pied de page active.</br>
|
|
|
|
* @author pabr6
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public class mnEvalPiedPageActive{
|
|
|
|
|
|
|
|
public static JMenu menu() {
|
|
|
|
JMenu mnEvalPiedPageActive = new JMenu("Pied page activé");
|
|
|
|
mnEvalPiedPageActive.setIcon(new ImageIcon(create.class.getResource("/resources/piedpageouimini.png")));
|
|
|
|
mnEvalPiedPageActive.add(new actEvalPiedPageActive());
|
|
|
|
mnEvalPiedPageActive.add(new actEvalPiedPageActiveNon());
|
|
|
|
return mnEvalPiedPageActive;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|