⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 token.java

📁 MSP IM Source code 2008 update
💻 JAVA
字号:
package se.sics.mspsim.extutil.highlight;// Public domain, no restrictions, Ian Holyer, University of Bristol./** * A token represents a smallest meaningful fragment of text, such as a word, * recognised by a scanner. */public class Token {  /**   * The symbol contains all the properties shared with similar tokens.   */  public Symbol symbol;  /**   * The token's position is given by an index into the document text.   */  public int position;  /**   * Create a token with a given symbol and position.   */  public Token(Symbol symbol, int position) {    this.symbol = symbol;    this.position = position;  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -