Skip to content
Snippets Groups Projects
Commit b94ca031 authored by Thomas Mewily's avatar Thomas Mewily
Browse files

EleveEntity, GommetteEntity, ProfEntity

parent 22846b1e
No related branches found
No related tags found
No related merge requests found
package com.uca.entity;
import java.sql.Timestamp;
public class GommetteEntity
{
private int id;
public int getId() { return id; }
public void setId(int value) { id = value; }
private String nom;
public String getNom() { return nom; }
public void setNom(String value) { nom = value; }
public enum Couleur { Verte, Rouge, Blanc, ArcEnCiel }
private Couleur couleur;
public Couleur getCouleur() { return couleur; }
public void setCouleur(Couleur value) { couleur = value; }
private String description;
public String getDescription() { return description; }
public void setDescription(String value) { description = value; }
public GommetteEntity(){
//Ignored !
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment