lispdeffile.java

来自「计算机代数系统」· Java 代码 · 共 33 行

JAVA
33
字号
package net.sf.yacas;/** LispDefFile represents one file that can be loaded just-in-time. */class LispDefFile{    public LispDefFile(String aFile)    {      iFileName = aFile;      iIsLoaded = false;    }    public LispDefFile(LispDefFile aOther)    {      iFileName = aOther.iFileName;      iIsLoaded = aOther.iIsLoaded;    }    public void SetLoaded()    {      iIsLoaded = true;    }    public boolean IsLoaded()    {      return iIsLoaded;    }    public String FileName()    {      return iFileName;    }    String iFileName;    boolean   iIsLoaded;};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?