109110111112113114115116117118
} public void changementLigne() throws ExceptionJeu { //partie perdue if (partie.getLigne() == partie.getNbreLigne()-1) { throw new ExceptionJeu(ExceptionJeu.typeErreur.PERDANT); } partie.changementLigne(); }
216217218219220221222223224225
// } if (boule == partie.getNbreColonne()) { throw new ExceptionJeu(ExceptionJeu.typeErreur.GAGNANT); } return boule; }
260261262263264265266267268269270
} private void setSkin (String skin) throws ExceptionJeu { if (getColonne()>0) { throw new ExceptionJeu(ExceptionJeu.typeErreur.SKIN); } ConfigEnvironnement.getInstance().setTheme(skin); // JeuGraphique.setSkin(skin); }
143144145146147148149150151152153
} public void getJeu(int nbr, int detect) throws ExceptionJeu { if (partie.getNbreCouleur()<nbr) { throw new ExceptionJeu(ExceptionJeu.typeErreur.NBR_ELEVE); } System.out.println("NBR " + nbr + "col " + detect); partie.getJeu(nbr,detect);