X-Git-Url: http://secure.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/PHPFunction.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/PHPFunction.java new file mode 100644 index 0000000..2e45bdb --- /dev/null +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/PHPFunction.java @@ -0,0 +1,20 @@ +package net.sourceforge.phpeclipse.phpeditor.php; + +/** + * @author Choochter + * + * To change this generated comment edit the template variable "typecomment": + * Window>Preferences>Java>Templates. + * 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); + } +}