token.java

来自「cwbbs 云网论坛源码」· Java 代码 · 共 41 行

JAVA
41
字号
package com.cloudwebsoft.framework.template;import com.cloudwebsoft.framework.template.plugin.PluginMgr;import java.util.List;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 + =
减小字号Ctrl + -
显示快捷键?