?? token.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 + -