Skip to content
Snippets Groups Projects
Select Git revision
  • b7c7f27f420c87a856558f63b3fe211115bc8148
  • main default
  • cookie
3 results

GommetteEntity.java

Blame
  • 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 !
        }
    }