a3d40de283
--HG-- branch : gsoc2012-achievements
22 lines
No EOL
334 B
PHP
22 lines
No EOL
334 B
PHP
<?php
|
|
trait Node {
|
|
protected $id;
|
|
protected $parent;
|
|
|
|
final function getID() {
|
|
return $this->id;
|
|
}
|
|
|
|
final function getParent() {
|
|
return $this->parent;
|
|
}
|
|
|
|
final protected function setID($id) {
|
|
$this->id = $id;
|
|
}
|
|
|
|
final protected function setParent($p) {
|
|
$this->parent = $p;
|
|
}
|
|
}
|
|
?>
|