fix #774 infinite loop in net.sourceforge.phpeclipse.builder.IdentifierIndexManager...
[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. To enable and disable the creation
8  * of type comments go to Window>Preferences>Java>Code Generation.
9  */
10 public class PHPKeyword extends PHPElement {
11         // private int tokenval;
12         // public void settokenval(String tokenval) { this.tokenval =
13         // 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) {
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 }