1 package net.sourceforge.phpeclipse.phpeditor.php;
6 * To change this generated comment edit the template variable "typecomment":
7 * Window>Preferences>Java>ObfuscatorIgnores.
8 * To enable and disable the creation of type comments go to
9 * Window>Preferences>Java>Code Generation.
11 public class PHPFunction extends PHPElement {
12 private String fDescription;
14 public void setDescription(String description) {
15 this.fDescription = description;
17 public String getDescription() {
18 return this.fDescription;
21 public String getHoverText() {
22 return super.getHoverText()+"<br>"+getDescription();
25 public PHPFunction(String Name, String usage, String description) {
27 setDescription(description);