Config editor through XML file
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / php / PHPFunction.java
1 package net.sourceforge.phpeclipse.phpeditor.php;
2
3 /**
4  * @author Choochter
5  *
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.
10  */
11 public class PHPFunction extends PHPElement{
12         private String FunctionUsage;
13         public void setUsage(String Usage) {this.FunctionUsage = Usage;}
14         public String getUsage() { return this.FunctionUsage; }
15         
16         public PHPFunction(String Name, String Description, String Usage){
17         super(Name, Description);
18         setUsage(Usage);        
19         }
20 }