1 package net.sourceforge.phpeclipse.phpeditor.php;
6 * To change this generated comment edit the template variable "typecomment":
7 * Window>Preferences>Java>Templates.
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 FunctionUsage;
14 public void setUsage(String Usage) {
15 this.FunctionUsage = Usage;
17 public String getUsage() {
18 return this.FunctionUsage;
21 public PHPFunction(String Name, String Description, String Usage) {
22 super(Name, Description);