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