📄 token.java
字号:
package com.cloudwebsoft.framework.template;
import com.cloudwebsoft.framework.template.plugin.PluginMgr;
import java.util.List;
/**
* <p>Title: </p>
*
* <p>Description: </p>
*
* <p>Copyright: Copyright (c) 2005</p>
*
* <p>Company: </p>
*
* @author not attributable
* @version 1.0
*/
public class Token {
public static final int NONE = 0;
public static final int VAR = 1; // 变量
public static final int BEGIN = 2;
public static final int FIELD = 3;
public static final int END = 4;
public static final int hasVar = 10;
public Token() {
}
public void setName(String name) {
this.name = name;
}
public void setType(int type) {
this.type = type;
}
public String getName() {
return name;
}
public int getType() {
return type;
}
public String name;
public int type = NONE;
public List posPairs = null;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -