indextag.java
来自「一个简单的数据库」· Java 代码 · 共 56 行
JAVA
56 行
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package indexManager;import database.*;import java.io.Serializable;/** * * @author outlaw */public class IndexTag implements Serializable{ String indName; String attribName; String fullName; boolean isInFile; public IndexTag(TableData tb,String indName,String attribName) { this.indName=indName; this.attribName=attribName; this.fullName=tb.getPath()+tb.getName()+"_index/"+indName+".ind"; this.isInFile=false; } public String getFullName() { return this.fullName; } public void setIndexName(TableData tb,String name) { this.indName=name; this.fullName=tb.getPath()+tb.getName()+"_index/"+indName+".ind"; } public String getIndexName() { return indName; } public String getAttribName() { return attribName; } public void setInFile() { this.isInFile=true; } public void setNotInFile() { this.isInFile=false; } public boolean isInFile() { return this.isInFile; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?