Select Git revision
GommetteEntity.java
GommetteEntity.java 698 B
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; }
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 !
}
}