Subversion Repositories Applications.gtt

Compare Revisions

Ignore whitespace Rev 67 → Rev 68

/trunk/bibliotheque/metier/ProjetCategorie.class.php
53,7 → 53,8
 
/*** Attributs : */
private $id_categorie;
private $libelle;
private $libelle;
private $abreviation;
 
/*** Aggregations : */
 
92,6 → 93,17
{
$this->libelle = $l;
}
 
// Abreviation
public function getAbreviation()
{
return $this->abreviation;
}
public function setAbreviation( $a )
{
$this->abreviation = $a;
}
 
 
/*** Méthodes : */