TP-programmation-orientee-o.../TP10/menu/commande/CommandeNOP.java

19 lines
283 B
Java
Raw Normal View History

2023-06-20 19:02:09 +00:00
package menu.commande;
import menu.Commande;
/** Commande... qui ne fait rien !
* @author Xavier Crégut
* @version $Revision: 1.1 $
*/
final public class CommandeNOP implements Commande {
public void executer() {
}
public boolean estExecutable() {
return true;
}
}