misc changes
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / php / PHPFunction.java
index 2e45bdb..fe1e11e 100644 (file)
@@ -8,13 +8,18 @@ package net.sourceforge.phpeclipse.phpeditor.php;
  * To enable and disable the creation of type comments go to
  * Window>Preferences>Java>Code Generation.
  */
-public class PHPFunction extends PHPElement{
-       private String FunctionUsage;
-       public void setUsage(String Usage) {this.FunctionUsage = Usage;}
-       public String getUsage() { return this.FunctionUsage; }
-       
-       public PHPFunction(String Name, String Description, String Usage){
-       super(Name, Description);
-       setUsage(Usage);        
-       }
+public class PHPFunction extends PHPElement {
+  private String FunctionUsage;
+  
+  public void setUsage(String Usage) {
+    this.FunctionUsage = Usage;
+  }
+  public String getUsage() {
+    return this.FunctionUsage;
+  }
+
+  public PHPFunction(String Name, String Description, String Usage) {
+    super(Name, Description);
+    setUsage(Usage);
+  }
 }