X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/PHPKeyword.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/PHPKeyword.java index f12544a..c710e18 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/PHPKeyword.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpeclipse/phpeditor/php/PHPKeyword.java @@ -2,28 +2,28 @@ package net.sourceforge.phpeclipse.phpeditor.php; /** * @author Choochter - * + * * To change this generated comment edit the template variable "typecomment": - * Window>Preferences>Java>ObfuscatorIgnores. - * To enable and disable the creation of type comments go to - * Window>Preferences>Java>Code Generation. + * Window>Preferences>Java>ObfuscatorIgnores. To enable and disable the creation + * of type comments go to Window>Preferences>Java>Code Generation. */ -public class PHPKeyword extends PHPElement{ - private int tokenval; - public void settokenval(String tokenval) { this.tokenval = Integer.parseInt(tokenval);} - public void settokenval(int tokenval) { this.tokenval = tokenval;} - public int gettokenval() { return this.tokenval; } - - public PHPKeyword(String Name, String Description, String tokenval){ +public class PHPKeyword extends PHPElement { + // private int tokenval; + // public void settokenval(String tokenval) { this.tokenval = + // Integer.parseInt(tokenval);} + // public void settokenval(int tokenval) { this.tokenval = tokenval;} + // public int gettokenval() { return this.tokenval; } + + public PHPKeyword(String Name, String Description) { super(Name, Description); - if ((tokenval == null) || (tokenval.equals(""))) - { - //if there is not a tokenval, then not implemented. - settokenval(-1); - } - else { - settokenval(tokenval); - } - //settokenval(tokenval); + // if ((tokenval == null) || (tokenval.equals(""))) + // { + // //if there is not a tokenval, then not implemented. + // settokenval(-1); + // } + // else { + // settokenval(tokenval); + // } + // settokenval(tokenval); } }