📄 token.java
字号:
package com.wutka.dtd;
/** Token returned by the lexical scanner
*
* @author Mark Wutka
* @version $Revision: 1.16 $ $Date: 2002/07/19 01:20:11 $ by $Author: wutka $
*/
class Token
{
public TokenType type;
public String value;
public Token(TokenType aType)
{
type = aType;
value = null;
}
public Token(TokenType aType, String aValue)
{
type = aType;
value = aValue;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -