A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / php / PHPFunction.java
index 76bd20a..2949a27 100644 (file)
@@ -2,28 +2,28 @@ package net.sourceforge.phpeclipse.phpeditor.php;
 
 /**
  * @author Choochter
- *
+ * 
  * To change this generated comment edit the template variable "typecomment":
- * Window>Preferences>Java>ObfuscatorIgnores.
- * To enable and disable the creation of type comments go to
- * Window>Preferences>Java>Code Generation.
+ * Window>Preferences>Java>ObfuscatorIgnores. To enable and disable the creation
+ * of type comments go to Window>Preferences>Java>Code Generation.
  */
 public class PHPFunction extends PHPElement {
-  private String fDescription;
-  
-  public void setDescription(String description) {
-    this.fDescription = description;
-  }
-  public String getDescription() {
-    return this.fDescription;
-  }
+       private String fDescription;
 
-  public String getHoverText() {
-    return super.getHoverText()+"<br>"+getDescription();
-  }
-  
-  public PHPFunction(String Name, String usage, String description) {
-    super(Name, usage);
-    setDescription(description);
-  }
+       public void setDescription(String description) {
+               this.fDescription = description;
+       }
+
+       public String getDescription() {
+               return this.fDescription;
+       }
+
+       public String getHoverText() {
+               return super.getHoverText() + "<br>" + getDescription();
+       }
+
+       public PHPFunction(String Name, String usage, String description) {
+               super(Name, usage);
+               setDescription(description);
+       }
 }