blob: 6830ea4d3e0870ccaa41e7472c27e6829331e2ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php
class A
{
private $_ID='';
private $_Libelle='';
private $_B='';
private $_E='';
private $_F='';
public function getID(){ return $this->_ID; }
public function setID($value){ $this->_ID = $value; }
public function getLibelle(){ return $this->_Libelle; }
public function setLibelle($value){ $this->_Libelle = $value; }
public function getB(){ return $this->_B; }
public function setB($value){ $this->_B = $value; }
public function getE(){ return $this->_E; }
public function setE($value){ $this->_E = $value; }
public function getF(){ return $this->_F; }
public function setF($value){ $this->_F = $value; }
}
?>
|