blob: 5a6ff8aa72b997f671fad8f33c7de5acdf789a72 [file] [log] [blame]
<?php
class Bug {
private $id;
private $shortDesc;
public function __construct( $id, $shortDesc ) {
$this->id = $id;
$this->shortDesc = $shortDesc;
}
public function getId() {
return $this->id;
}
public function getShortDesc() {
return $this->shortDesc;
}
public function render() {
$result = "<a href='http://bugs.eclipse.org/bugs/show_bug.cgi?id=" . $this.getId() . "'>Bug " . $this.getId() . "</a>: " . $this->getShortDesc();
}
}
?>