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