TODO : merge
This commit is contained in:
@@ -2,7 +2,6 @@ package metier;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
import javax.annotation.processing.Generated;
|
||||
|
||||
import jakarta.persistence.GeneratedValue;
|
||||
import jakarta.persistence.GenerationType;
|
||||
@@ -19,4 +18,21 @@ public abstract class Reponse {
|
||||
public Reponse(){
|
||||
}
|
||||
|
||||
|
||||
public void setId(int id){
|
||||
this.id=id;
|
||||
}
|
||||
|
||||
public int getId(){
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public void setReponses(ArrayList<String> reponses){
|
||||
this.reponses=reponses;
|
||||
}
|
||||
|
||||
public ArrayList<String> getReponses(){
|
||||
return this.reponses;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user