f12544a17506f70d9a411fcc19e52b50714edeb5
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpeclipse / phpeditor / php / PHPKeyword.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>ObfuscatorIgnores.
8  * To enable and disable the creation of type comments go to
9  * Window>Preferences>Java>Code Generation.
10  */
11 public class PHPKeyword extends PHPElement{
12         private int tokenval;
13         public void settokenval(String tokenval) { this.tokenval = Integer.parseInt(tokenval);}
14         public void settokenval(int tokenval) { this.tokenval = tokenval;}
15         public int gettokenval() { return this.tokenval; }
16         
17         public PHPKeyword(String Name, String Description, String tokenval){
18                 super(Name, Description);
19                 if ((tokenval == null) || (tokenval.equals("")))
20                                 {
21                                         //if there is not a tokenval, then not implemented.
22                                         settokenval(-1);
23                                 }
24                                 else {
25                                         settokenval(tokenval); 
26                                 }               
27                 //settokenval(tokenval);
28         }
29 }