Subversion Repositories Applications.gtt

Rev

Rev 67 | Rev 71 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 67 Rev 68
Line 51... Line 51...
51
	const GPC_ID_MAX = 'PROJETCATEGORIE_ID_MAX';
51
	const GPC_ID_MAX = 'PROJETCATEGORIE_ID_MAX';
52
	const GPC_LIBELLE = 'PROJETCATEGORIE_LIBELLE';
52
	const GPC_LIBELLE = 'PROJETCATEGORIE_LIBELLE';
Line 53... Line 53...
53
 
53
 
54
	/*** Attributs : */
54
	/*** Attributs : */
55
	private $id_categorie;
55
	private $id_categorie;
-
 
56
	private $libelle;
Line 56... Line 57...
56
	private $libelle;
57
	private $abreviation;
Line 57... Line 58...
57
 
58
 
58
	/*** Aggregations : */
59
	/*** Aggregations : */
Line 90... Line 91...
90
	}
91
	}
91
	public function setLibelle( $l )
92
	public function setLibelle( $l )
92
	{
93
	{
93
		$this->libelle = $l;
94
		$this->libelle = $l;
94
	}
95
	}
-
 
96
 
-
 
97
	// Abreviation
-
 
98
	public function getAbreviation()
-
 
99
	{
-
 
100
		return $this->abreviation;
-
 
101
	}
-
 
102
	public function setAbreviation( $a )
-
 
103
	{
-
 
104
		$this->abreviation = $a;
-
 
105
	}
-
 
106
 
Line 95... Line 107...
95
 
107
 
Line 96... Line 108...
96
	/*** Méthodes : */
108
	/*** Méthodes : */
97
 
109