/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */packagetictactoecodingame;/** * * @author franck.tempet */publicclassJetonextendsPiece{publicJeton(Joueur_joueur){super(_joueur);}publicStringtoString(){if((getJoueur().getIdJoueur())==1){return"X";}else{return"O";}}