DEV/DEV3.4/TP5/stub/exo4/Travailleur.java

32 lines
475 B
Java
Raw Permalink Normal View History

2023-12-15 12:28:32 +01:00
/** feuille du motif composite */
public class Travailleur extends Person {
/** constructeur
*
* @param n fun factor
*
*/
public Travailleur(int n){
super(n);
}
/**
*
* @return fête sans le travailleur
*/
public int bestPartyWithoutMe(){
// return null;
}
/**
* @return fête avec le travailleur
*/
public int bestParty(){
// return null;
}
}