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

📄 indextag.java

📁 一个简单的数据库
💻 JAVA
字号:
/* * 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -