import javax.swing.JOptionPane;


public class Reponse {

	private String reponse;

	public Reponse(String reponse, int type){
		this.reponse = reponse;
	}
	
	public Reponse(){
		this.reponse = "d";
	}
	
	
	public String getReponse() {
		return reponse;
	}
	
	public void setReponse(String reponse) {
		this.reponse = reponse;
	}
	
		
	
	//--------------------------------------
	
	
	public void creerReponse(Question q){
				
		String reponse = JOptionPane.showInputDialog(null, "Entrez un choix de réponse", "Réponse", JOptionPane.QUESTION_MESSAGE);
		
		q.getRepTab().add(reponse); //on ajoute la réponse-texte dans le tableau de réponse
		
		this.setReponse(reponse);
	}


	



	
}
