Commit bee9c773 authored by Lucas NAURY's avatar Lucas NAURY

Ajout d'un ID automatique aux annonces

parent 22f3550c
Pipeline #2720 canceled with stages
package com.example.tpleboncoin.models; package com.example.tpleboncoin.models;
public class Annonce { public class Annonce {
static int nbAnnonces = 0;
private int id;
private String titre; private String titre;
private String adresse; private String adresse;
private int image; private int image;
//Constructeur // Constructeur
public Annonce(String titre, String adresse, int image) { public Annonce(String titre, String adresse, int image) {
this.titre = titre; this.titre = titre;
this.adresse = adresse; this.adresse = adresse;
this.image = image; this.image = image;
// Génération d'un id automatique
this.id = Annonce.nbAnnonces;
Annonce.nbAnnonces++;
} }
// Getter and Setter // Getter et Setter
public String getTitre() { public String getTitre() {
return titre; return titre;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment